nixpkgs/pkgs/tools/security/mkpasswd/default.nix

22 lines
550 B
Nix
Raw Normal View History

{ lib, stdenv, whois, perl }:
2014-05-21 10:46:39 +00:00
stdenv.mkDerivation {
name = "mkpasswd-${whois.version}";
src = whois.src;
2018-11-27 16:04:40 +00:00
nativeBuildInputs = [ perl ];
preConfigure = whois.preConfigure;
buildPhase = "make mkpasswd";
installPhase = "make install-mkpasswd";
meta = with lib; {
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;
maintainers = with maintainers; [ cstrahan fpletz ];
2014-05-21 10:46:39 +00:00
platforms = platforms.linux;
};
}