3
0
Fork 0
forked from mirrors/nixpkgs

Disabling libxcrypt on armv5tel-linux (it does not build trivially). As a consequence,

we will end up having MD5 passwords in passwd. pam_unix will fallback to md5 if the requested
hash algorithm is not available in crypt.

svn path=/nixpkgs/trunk/; revision=22141
This commit is contained in:
Lluís Batlle i Rossell 2010-06-04 12:13:09 +00:00
parent 18f565e290
commit 4772588553

View file

@ -8,7 +8,8 @@ stdenv.mkDerivation {
sha256 = "015r3xdkjpqwcv4lvxavq0nybdpxhfjycqpzbx8agqd5sywkx3b0";
};
buildInputs = [ flex cracklib libxcrypt ];
buildInputs = [ flex cracklib ]
++ stdenv.lib.optional (stdenv.system != "armv5tel-linux") libxcrypt;
preConfigure = ''
configureFlags="$configureFlags --includedir=$out/include/security"