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