2015-05-24 15:53:10 -07:00
|
|
|
{ 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
|
|
|
|
2015-05-24 15:53:10 -07:00
|
|
|
buildInputs = [ 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";
|
|
|
|
|
2014-05-16 19:07:29 -07:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 11:42:46 -08: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
|
|
|
};
|
|
|
|
}
|