2015-05-24 22:53:10 +00:00
|
|
|
{ stdenv, whois, perl }:
|
2014-05-21 10:46:39 +00:00
|
|
|
|
2015-05-24 22:53:10 +00:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "mkpasswd-${whois.version}";
|
2013-02-27 11:14:09 +00:00
|
|
|
|
2015-05-24 22:53:10 +00:00
|
|
|
src = whois.src;
|
2013-02-27 11:14:09 +00:00
|
|
|
|
2015-05-24 22:53:10 +00:00
|
|
|
buildInputs = [ perl ];
|
2013-02-27 11:14:09 +00:00
|
|
|
|
2015-05-24 22:53:10 +00:00
|
|
|
preConfigure = whois.preConfigure;
|
2013-02-27 11:14:09 +00:00
|
|
|
buildPhase = "make mkpasswd";
|
|
|
|
installPhase = "make install-mkpasswd";
|
|
|
|
|
2014-05-17 02:07:29 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://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 ];
|
2014-05-21 10:46:39 +00:00
|
|
|
platforms = platforms.linux;
|
2013-02-27 11:14:09 +00:00
|
|
|
};
|
|
|
|
}
|