2021-10-29 14:46:24 +01:00
|
|
|
{ lib, stdenv, whois, libxcrypt, perl, pkg-config }:
|
2014-05-21 11:46:39 +01:00
|
|
|
|
2015-05-24 23:53:10 +01:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "mkpasswd-${whois.version}";
|
2013-02-27 11:14:09 +00:00
|
|
|
|
2015-05-24 23:53:10 +01:00
|
|
|
src = whois.src;
|
2013-02-27 11:14:09 +00:00
|
|
|
|
2021-10-29 14:45:27 +01:00
|
|
|
nativeBuildInputs = [ perl pkg-config ];
|
2021-10-29 14:46:24 +01:00
|
|
|
buildInputs = [ libxcrypt ];
|
2013-02-27 11:14:09 +00:00
|
|
|
|
2015-05-24 23:53:10 +01:00
|
|
|
preConfigure = whois.preConfigure;
|
2013-02-27 11:14:09 +00:00
|
|
|
buildPhase = "make mkpasswd";
|
|
|
|
installPhase = "make install-mkpasswd";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://packages.qa.debian.org/w/whois.html";
|
2014-05-21 11:46:39 +01:00
|
|
|
description = "Overfeatured front-end to crypt, from the Debian whois package";
|
|
|
|
license = licenses.gpl2;
|
2015-05-24 23:53:10 +01:00
|
|
|
maintainers = with maintainers; [ cstrahan fpletz ];
|
2014-05-21 11:46:39 +01:00
|
|
|
platforms = platforms.linux;
|
2013-02-27 11:14:09 +00:00
|
|
|
};
|
|
|
|
}
|