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

  src = fetchurl {
    url = mirror://sourceforge/pwgen/pwgen-2.05.tar.gz;
    sha256 = "1afxbkdl9b81760pyb972k18dmidrciy3vzcnspp3jg0aa316yn8";
  };
  meta = {
	description = "Small, GPL'ed password generator which creates passwords which can be easily memorized by a human.";
        platforms = stdenv.lib.platforms.all;
  };
}