depot/third_party/nixpkgs/pkgs/tools/security/mkpasswd/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

21 lines
550 B
Nix

{ lib, 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 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;
};
}