add cracklib

svn path=/nixpkgs/trunk/; revision=4127
This commit is contained in:
Armijn Hemel 2005-10-25 13:54:52 +00:00
parent a449170e85
commit d4057ee594
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "cracklib-2.8.5";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/cracklib/cracklib-2.8.5.tar.gz;
md5 = "68674db41be7569099b7aa287719b248";
};
}

View File

@ -968,6 +968,10 @@ rec {
inherit fetchurl stdenv libxml2 openssl;
};
cracklib = (import ../development/libraries/cracklib) {
inherit fetchurl stdenv;
};
### DEVELOPMENT / LIBRARIES / JAVA
saxon = (import ../development/libraries/java/saxon) {