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

  src = fetchurl {
    url = mirror://sourceforge/pwgen/pwgen-2.07.tar.gz;
    sha256 = "0mhmw700kkh238fzivcwnwi94bj9f3h36yfh3k3j2v19b0zmjx7b";
  };
  meta = {
    description = "Password generator which creates passwords which can be easily memorized by a human";
    platforms = stdenv.lib.platforms.all;
  };
}