add a patch to use the cracklib dictionairy we built (cracklib package)

svn path=/nixpkgs/trunk/; revision=4130
This commit is contained in:
Armijn Hemel
2005-10-25 17:39:55 +00:00
parent 3c079ce798
commit c82afd131d
4 changed files with 44 additions and 3 deletions
+4 -2
View File
@@ -1,10 +1,12 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, cracklib}:
stdenv.mkDerivation {
name = "pam-0.80";
builder = ./builder.sh;
src = fetchurl {
url = http://www.nl.kernel.org/pub/linux/libs/pam/pre/library/Linux-PAM-0.80.tar.bz2;
md5 = "ccff87fe639efdfc22b1ba4a0f08ec57";
};
patches = [./pam-pwd.patch];
patches = [./pam-pwd.patch ./pam-cracklib.patch];
inherit cracklib;
}