summary refs log tree commit diff
path: root/pkgs/tools/security/pwgen/default.nix
blob: c84b9472e96f0c0c361e92fc93a31c633b1c339f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{lib, stdenv, fetchurl, autoreconfHook}:
stdenv.mkDerivation {
  name = "pwgen-2.08";

  src = fetchurl {
    url = "https://github.com/tytso/pwgen/archive/v2.08.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;
  };
}