40657fbece
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
13 lines
367 B
Nix
13 lines
367 B
Nix
{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.";
|
|
};
|
|
}
|