2018-01-09 14:38:43 +00:00
|
|
|
{ stdenv, fetchFromGitHub, perl, gettext, pkgconfig, libidn2, libiconv }:
|
2015-05-24 23:53:10 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-02-21 17:07:25 +00:00
|
|
|
version = "5.5.6";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "whois";
|
2015-05-24 23:53:10 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rfc1036";
|
|
|
|
repo = "whois";
|
|
|
|
rev = "v${version}";
|
2020-02-21 17:07:25 +00:00
|
|
|
sha256 = "0iqbn2ky9j7qdpv5hycy56knnfhl8nz4l4905rnr0p703lvxxx8d";
|
2015-05-24 23:53:10 +01:00
|
|
|
};
|
|
|
|
|
2018-01-09 14:22:58 +00:00
|
|
|
nativeBuildInputs = [ perl gettext pkgconfig ];
|
2018-01-09 14:38:43 +00:00
|
|
|
buildInputs = [ libidn2 libiconv ];
|
2015-05-24 23:53:10 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
for i in Makefile po/Makefile; do
|
|
|
|
substituteInPlace $i --replace "prefix = /usr" "prefix = $out"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2018-01-09 14:38:43 +00:00
|
|
|
makeFlags = [ "HAVE_ICONV=1" ];
|
|
|
|
buildFlags = [ "whois" ];
|
2015-05-24 23:53:10 +01:00
|
|
|
|
2018-01-09 14:38:43 +00:00
|
|
|
installTargets = [ "install-whois" ];
|
2015-05-24 23:53:10 +01: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.
|
|
|
|
'';
|
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://packages.qa.debian.org/w/whois.html";
|
2015-05-24 23:53:10 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2018-03-15 04:03:00 +00:00
|
|
|
platforms = platforms.unix;
|
2015-05-24 23:53:10 +01:00
|
|
|
};
|
|
|
|
}
|