nixpkgs/pkgs/os-specific/linux/pam/default.nix
Lluís Batlle i Rossell 4772588553 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
2010-06-04 12:13:09 +00:00

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"
'';
}