mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
add cracklib
svn path=/nixpkgs/trunk/; revision=4127
This commit is contained in:
parent
a449170e85
commit
d4057ee594
9
pkgs/development/libraries/cracklib/default.nix
Normal file
9
pkgs/development/libraries/cracklib/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user