2018-01-09 15:38:43 +01:00
|
|
|
{ stdenv, fetchFromGitHub, perl, gettext, pkgconfig, libidn2, libiconv }:
|
2015-05-25 00:53:10 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-19 19:34:12 +02:00
|
|
|
version = "5.5.1";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "whois";
|
2015-05-25 00:53:10 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rfc1036";
|
|
|
|
repo = "whois";
|
|
|
|
rev = "v${version}";
|
2019-08-19 19:34:12 +02:00
|
|
|
sha256 = "05dbc58dgq5ln28pahififljdb19gqicwlcmnni0vw4ny4r7r9bg";
|
2015-05-25 00:53:10 +02:00
|
|
|
};
|
|
|
|
|
2018-01-09 15:22:58 +01:00
|
|
|
nativeBuildInputs = [ perl gettext pkgconfig ];
|
2018-01-09 15:38:43 +01:00
|
|
|
buildInputs = [ libidn2 libiconv ];
|
2015-05-25 00:53:10 +02:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
for i in Makefile po/Makefile; do
|
|
|
|
substituteInPlace $i --replace "prefix = /usr" "prefix = $out"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2018-01-09 15:38:43 +01:00
|
|
|
makeFlags = [ "HAVE_ICONV=1" ];
|
|
|
|
buildFlags = [ "whois" ];
|
2015-05-25 00:53:10 +02:00
|
|
|
|
2018-01-09 15:38:43 +01:00
|
|
|
installTargets = [ "install-whois" ];
|
2015-05-25 00:53:10 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Intelligent WHOIS client from Debian";
|
|
|
|
longDescription = ''
|
|
|
|
This package provides a commandline client for the WHOIS (RFC 3912)
|
|
|
|
protocol, which queries online servers for information such as contact
|
|
|
|
details for domains and IP address assignments. It can intelligently
|
|
|
|
select the appropriate WHOIS server for most queries.
|
|
|
|
'';
|
|
|
|
|
2017-08-24 18:20:58 +02:00
|
|
|
homepage = https://packages.qa.debian.org/w/whois.html;
|
2015-05-25 00:53:10 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2018-03-15 05:03:00 +01:00
|
|
|
platforms = platforms.unix;
|
2015-05-25 00:53:10 +02:00
|
|
|
};
|
|
|
|
}
|