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

17 lines
485 B
Nix

{lib, stdenv, fetchurl, autoreconfHook}:
stdenv.mkDerivation rec {
pname = "pwgen";
version = "2.08";
src = fetchurl {
url = "https://github.com/tytso/pwgen/archive/v${version}.tar.gz";
sha256 = "8d6e94f28655e61d6126290e3eafad4d17d7fba0d0d354239522a740a270bb2f";
};
nativeBuildInputs = [ autoreconfHook ];
meta = {
description = "Password generator which creates passwords which can be easily memorized by a human";
platforms = lib.platforms.all;
};
}