2010-06-02 19:31:20 +02:00
|
|
|
{ stdenv, fetchurl, flex, cracklib, libxcrypt }:
|
2005-10-24 18:07:50 +02:00
|
|
|
|
2011-11-04 22:53:47 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-06-02 19:31:20 +02:00
|
|
|
name = "linux-pam-1.1.1";
|
2009-02-18 12:40:32 +01:00
|
|
|
|
2005-10-24 18:07:50 +02:00
|
|
|
src = fetchurl {
|
2013-01-15 18:48:54 +01:00
|
|
|
url = http://www.linux-pam.org/library/Linux-PAM-1.1.1.tar.bz2;
|
2010-06-02 19:31:20 +02:00
|
|
|
sha256 = "015r3xdkjpqwcv4lvxavq0nybdpxhfjycqpzbx8agqd5sywkx3b0";
|
2005-10-24 18:07:50 +02:00
|
|
|
};
|
2009-02-18 12:40:32 +01:00
|
|
|
|
2011-04-25 17:41:32 +02:00
|
|
|
buildNativeInputs = [ flex ];
|
|
|
|
buildInputs = [ cracklib ]
|
2010-08-11 22:16:09 +02:00
|
|
|
++ stdenv.lib.optional
|
2012-04-19 17:15:39 +02:00
|
|
|
(!stdenv.isArm && stdenv.system != "mips64el-linux")
|
2010-08-11 22:16:09 +02:00
|
|
|
libxcrypt;
|
2009-02-18 12:40:32 +01:00
|
|
|
|
2011-04-25 17:41:32 +02:00
|
|
|
crossAttrs = {
|
2012-04-16 01:41:25 +02:00
|
|
|
# Skip libxcrypt cross-building, as it fails for mips and arm
|
2011-04-25 17:41:32 +02:00
|
|
|
propagatedBuildInputs = [ flex.hostDrv cracklib.hostDrv ];
|
2011-11-04 22:53:47 +01:00
|
|
|
preConfigure = preConfigure + ''
|
2011-11-04 22:11:43 +01:00
|
|
|
ar x ${flex.hostDrv}/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
|
|
|
|
'';
|
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
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
}
|