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

17 lines
459 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{lib, stdenv, fetchurl, autoreconfHook}:
stdenv.mkDerivation {
2017-10-30 21:19:11 +00:00
name = "pwgen-2.08";
src = fetchurl {
url = "https://github.com/tytso/pwgen/archive/v2.08.tar.gz";
2017-10-30 21:19:11 +00:00
sha256 = "8d6e94f28655e61d6126290e3eafad4d17d7fba0d0d354239522a740a270bb2f";
};
2017-10-30 21:19:11 +00:00
nativeBuildInputs = [ autoreconfHook ];
meta = {
description = "Password generator which creates passwords which can be easily memorized by a human";
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.all;
};
}