nixpkgs/pkgs/tools/networking/whois/default.nix

43 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, perl, gettext, pkg-config, libidn2, libiconv }:
stdenv.mkDerivation rec {
2021-03-10 04:40:46 +00:00
version = "5.5.8";
pname = "whois";
src = fetchFromGitHub {
owner = "rfc1036";
repo = "whois";
rev = "v${version}";
2021-03-10 04:40:46 +00:00
sha256 = "sha256-WSAqJMVeHkcqzcgwvFKKBXJiIfKXBQr2mjioG7CgkIo=";
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ perl gettext pkg-config ];
buildInputs = [ libidn2 libiconv ];
preConfigure = ''
for i in Makefile po/Makefile; do
substituteInPlace $i --replace "prefix = /usr" "prefix = $out"
done
'';
makeFlags = [ "HAVE_ICONV=1" ];
buildFlags = [ "whois" ];
installTargets = [ "install-whois" ];
meta = with 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.
'';
homepage = "https://packages.qa.debian.org/w/whois.html";
license = licenses.gpl2;
maintainers = with maintainers; [ fpletz ];
2018-03-15 04:03:00 +00:00
platforms = platforms.unix;
};
}