depot/third_party/nixpkgs/pkgs/tools/security/mkpasswd/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
552 B
Nix

{ stdenv, whois, perl }:
stdenv.mkDerivation {
name = "mkpasswd-${whois.version}";
src = whois.src;
nativeBuildInputs = [ perl ];
preConfigure = whois.preConfigure;
buildPhase = "make mkpasswd";
installPhase = "make install-mkpasswd";
meta = with stdenv.lib; {
homepage = "https://packages.qa.debian.org/w/whois.html";
description = "Overfeatured front-end to crypt, from the Debian whois package";
license = licenses.gpl2;
maintainers = with maintainers; [ cstrahan fpletz ];
platforms = platforms.linux;
};
}