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:
parent
18f565e290
commit
4772588553
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue