mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, perl, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "5.2.12";
|
|
name = "whois-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rfc1036";
|
|
repo = "whois";
|
|
rev = "v${version}";
|
|
sha256 = "1cis7zwh0r1hqbl2wa3i2x1446nrhfqfd52b2lknfml64l08rnk5";
|
|
};
|
|
|
|
buildInputs = [ perl gettext ];
|
|
|
|
preConfigure = ''
|
|
for i in Makefile po/Makefile; do
|
|
substituteInPlace $i --replace "prefix = /usr" "prefix = $out"
|
|
done
|
|
'';
|
|
|
|
buildPhase = "make whois";
|
|
|
|
installPhase = "make install-whois";
|
|
|
|
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.
|
|
'';
|
|
|
|
homepage = http://packages.qa.debian.org/w/whois.html;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|