2013-01-28 15:56:41 +01:00
|
|
|
{ stdenv, fetchurl, flex, cracklib }:
|
2005-10-24 18:07:50 +02:00
|
|
|
|
2011-11-04 22:53:47 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-09-21 16:20:26 +02:00
|
|
|
name = "linux-pam-1.1.6";
|
2009-02-18 12:40:32 +01:00
|
|
|
|
2005-10-24 18:07:50 +02:00
|
|
|
src = fetchurl {
|
2012-09-21 16:20:26 +02:00
|
|
|
url = https://fedorahosted.org/releases/l/i/linux-pam/Linux-PAM-1.1.6.tar.bz2;
|
|
|
|
sha256 = "1hlz2kqvbjisvwyicdincq7nz897b9rrafyzccwzqiqg53b8gf5s";
|
2005-10-24 18:07:50 +02:00
|
|
|
};
|
2009-02-18 12:40:32 +01:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ flex ];
|
2012-09-21 16:20:26 +02:00
|
|
|
|
2013-01-28 15:56:41 +01:00
|
|
|
buildInputs = [ cracklib ];
|
2009-02-18 12:40:32 +01:00
|
|
|
|
2011-04-25 17:41:32 +02:00
|
|
|
crossAttrs = {
|
2012-12-28 19:08:19 +01:00
|
|
|
propagatedBuildInputs = [ flex.crossDrv cracklib.crossDrv ];
|
2011-11-04 22:53:47 +01:00
|
|
|
preConfigure = preConfigure + ''
|
2012-12-28 19:08:19 +01:00
|
|
|
ar x ${flex.crossDrv}/lib/libfl.a
|
2011-11-04 22:35:35 +01:00
|
|
|
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
|
2011-11-04 22:11:43 +01:00
|
|
|
'';
|
2011-11-04 22:35:35 +01:00
|
|
|
postConfigure = ''
|
|
|
|
sed -e "s@ $PWD/libyywrap-target.o@ $PWD/libyywrap-host.o@" -i doc/specs/Makefile
|
2012-09-21 16:20:26 +02:00
|
|
|
'';
|
2011-04-25 17:41:32 +02:00
|
|
|
};
|
|
|
|
|
2010-08-13 16:06:41 +02:00
|
|
|
postInstall = ''
|
|
|
|
mv -v $out/sbin/unix_chkpwd{,.orig}
|
|
|
|
ln -sv /var/setuid-wrappers/unix_chkpwd $out/sbin/unix_chkpwd
|
2012-09-21 16:20:26 +02:00
|
|
|
'';
|
2010-08-13 16:06:41 +02:00
|
|
|
|
2009-02-18 12:40:32 +01:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlags="$configureFlags --includedir=$out/include/security"
|
|
|
|
'';
|
2010-08-14 01:09:53 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
2005-10-24 18:07:50 +02:00
|
|
|
}
|