depot/third_party/nixpkgs/pkgs/tools/networking/whois/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

50 lines
1.5 KiB
Nix

{ lib, stdenv, fetchFromGitHub, fetchpatch, perl, gettext, pkg-config, libidn2, libiconv }:
stdenv.mkDerivation rec {
version = "5.5.20";
pname = "whois";
src = fetchFromGitHub {
owner = "rfc1036";
repo = "whois";
rev = "v${version}";
hash = "sha256-0vQ6GBBtNA6Phlqhl3NZvEJqoyZ1um7VdkpsIRKhsm4=";
};
patches = [
(fetchpatch {
url = "https://github.com/macports/macports-ports/raw/93de4e9fc1e5e8427bf98f48209e783a5e8fab57/net/whois/files/implicit.patch";
extraPrefix = "";
hash = "sha256-ogVylQz//tpXxPNIWIHkhghvToU1z1D1FfnUBdZLyRY=";
})
];
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 ];
platforms = platforms.unix;
};
}