nixpkgs/pkgs/os-specific/linux/pam/default.nix

46 lines
1.3 KiB
Nix
Raw Normal View History

2013-01-28 14:56:41 +00:00
{ stdenv, fetchurl, flex, cracklib }:
stdenv.mkDerivation rec {
2015-05-11 05:39:31 +00:00
name = "linux-pam-${version}";
version = "1.2.1";
src = fetchurl {
2015-05-11 05:39:31 +00:00
url = "http://www.linux-pam.org/library/Linux-PAM-${version}.tar.bz2";
sha256 = "1n9lnf9gjs72kbj1g354v1xhi2j27aqaah15vykh7cnkq08i4arl";
};
nativeBuildInputs = [ flex ];
2012-09-21 14:20:26 +00:00
2013-01-28 14:56:41 +00:00
buildInputs = [ cracklib ];
crossAttrs = {
propagatedBuildInputs = [ flex.crossDrv cracklib.crossDrv ];
preConfigure = preConfigure + ''
ar x ${flex.crossDrv}/lib/libfl.a
mv libyywrap.o libyywrap-target.o
ar x ${flex}/lib/libfl.a
mv libyywrap.o libyywrap-host.o
export LDFLAGS="$LDFLAGS $PWD/libyywrap-target.o"
sed -e 's/@CC@/gcc/' -i doc/specs/Makefile.in
'';
postConfigure = ''
sed -e "s@ $PWD/libyywrap-target.o@ $PWD/libyywrap-host.o@" -i doc/specs/Makefile
2012-09-21 14:20:26 +00:00
'';
};
postInstall = ''
mv -v $out/sbin/unix_chkpwd{,.orig}
ln -sv /var/setuid-wrappers/unix_chkpwd $out/sbin/unix_chkpwd
2012-09-21 14:20:26 +00:00
'';
preConfigure = ''
configureFlags="$configureFlags --includedir=$out/include/security"
'';
meta = {
homepage = http://ftp.kernel.org/pub/linux/libs/pam/;
description = "Pluggable Authentication Modules, a flexible mechanism for authenticating user";
platforms = stdenv.lib.platforms.linux;
};
}