summary refs log tree commit diff
path: root/pkgs/tools/security/pwgen
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2007-06-28 09:53:12 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2007-06-28 09:53:12 +0000
commit40657fbece8c96f3049b1f826dee9e5ef230f147 (patch)
treeca1873dad7744c18af22685a543d4ac50c2b7424 /pkgs/tools/security/pwgen
parentd80093f2ff46bf86ea2c2346c0fc2cf722509f95 (diff)
downloadnixpkgs-40657fbece8c96f3049b1f826dee9e5ef230f147.tar
nixpkgs-40657fbece8c96f3049b1f826dee9e5ef230f147.tar.gz
nixpkgs-40657fbece8c96f3049b1f826dee9e5ef230f147.tar.bz2
nixpkgs-40657fbece8c96f3049b1f826dee9e5ef230f147.tar.lz
nixpkgs-40657fbece8c96f3049b1f826dee9e5ef230f147.tar.xz
nixpkgs-40657fbece8c96f3049b1f826dee9e5ef230f147.tar.zst
nixpkgs-40657fbece8c96f3049b1f826dee9e5ef230f147.zip
* ncurses: added symlinks for bynary packages linked against libncurses. Tested
           with ghc. I will add 'unicode' option next check in (for cygwin).
* pidgin:  Got rid of builder.sh, added ncurses to the dependencies, so it builds
           finch.
* xorg:    Added glproto and mesaHeaders to xf86videosis dependencies. Now it
           compiles.
* pwgen:   Added.
* device-mapper: Version bump. Added 'static' option for use in initrd.
* lvm2:          Version bump. Added 'static' option for use in initrd.

svn path=/nixpkgs/trunk/; revision=8923
Diffstat (limited to 'pkgs/tools/security/pwgen')
-rw-r--r--pkgs/tools/security/pwgen/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/tools/security/pwgen/default.nix b/pkgs/tools/security/pwgen/default.nix
new file mode 100644
index 00000000000..72ca4c987c5
--- /dev/null
+++ b/pkgs/tools/security/pwgen/default.nix
@@ -0,0 +1,12 @@
+{stdenv, fetchurl}:
+stdenv.mkDerivation {
+  name = "pwgen-2.05";
+
+  src = fetchurl {
+    url = ftp://ftp.chg.ru/pub/sourceforge/p/pw/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.";
+  };
+}