2021-10-29 13:46:24 +00:00
|
|
|
{ lib, stdenv, whois, libxcrypt, perl, pkg-config }:
|
2014-05-21 10:46:39 +00:00
|
|
|
|
2015-05-24 22:53:10 +00:00
|
|
|
stdenv.mkDerivation {
|
2021-10-29 16:27:58 +00:00
|
|
|
pname = "mkpasswd";
|
2021-11-11 16:36:54 +00:00
|
|
|
inherit (whois) version src;
|
2013-02-27 11:14:09 +00:00
|
|
|
|
2021-10-29 13:45:27 +00:00
|
|
|
nativeBuildInputs = [ perl pkg-config ];
|
2021-10-29 13:46:24 +00:00
|
|
|
buildInputs = [ libxcrypt ];
|
2013-02-27 11:14:09 +00:00
|
|
|
|
2021-10-29 16:27:58 +00:00
|
|
|
inherit (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 01:11:51 +00:00
|
|
|
homepage = "https://packages.qa.debian.org/w/whois.html";
|
2014-05-21 10:46:39 +00:00
|
|
|
description = "Overfeatured front-end to crypt, from the Debian whois package";
|
|
|
|
license = licenses.gpl2;
|
2015-05-24 22:53:10 +00:00
|
|
|
maintainers = with maintainers; [ cstrahan fpletz ];
|
2022-11-22 15:27:35 +00:00
|
|
|
platforms = platforms.unix;
|
2013-02-27 11:14:09 +00:00
|
|
|
};
|
|
|
|
}
|