* Add libxcrypt for Blowfish support in pam_unix2.

svn path=/nixpkgs/trunk/; revision=7305
This commit is contained in:
Eelco Dolstra
2006-12-11 02:35:05 +00:00
parent 745acdd93a
commit 5b262e235e
3 changed files with 17 additions and 3 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl, pam}:
{stdenv, fetchurl, pam, libxcrypt}:
stdenv.mkDerivation {
name = "pam_unix2-2.1";
@@ -8,5 +8,5 @@ stdenv.mkDerivation {
md5 = "08d3bc1940897b5dfcbe2f51dd979ad0";
};
buildInputs = [pam];
buildInputs = [pam libxcrypt];
}