4772588553
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
18 lines
478 B
Nix
18 lines
478 B
Nix
{ stdenv, fetchurl, flex, cracklib, libxcrypt }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "linux-pam-1.1.1";
|
|
|
|
src = fetchurl {
|
|
url = mirror://kernel/linux/libs/pam/library/Linux-PAM-1.1.1.tar.bz2;
|
|
sha256 = "015r3xdkjpqwcv4lvxavq0nybdpxhfjycqpzbx8agqd5sywkx3b0";
|
|
};
|
|
|
|
buildInputs = [ flex cracklib ]
|
|
++ stdenv.lib.optional (stdenv.system != "armv5tel-linux") libxcrypt;
|
|
|
|
preConfigure = ''
|
|
configureFlags="$configureFlags --includedir=$out/include/security"
|
|
'';
|
|
}
|