2013-01-28 06:56:41 -08:00
|
|
|
{ stdenv, fetchurl, flex, cracklib }:
|
2005-10-24 09:07:50 -07:00
|
|
|
|
2011-11-04 14:53:47 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2015-05-10 22:39:31 -07:00
|
|
|
name = "linux-pam-${version}";
|
2015-07-19 12:21:45 -07:00
|
|
|
version = "1.2.1";
|
2009-02-18 03:40:32 -08:00
|
|
|
|
2005-10-24 09:07:50 -07:00
|
|
|
src = fetchurl {
|
2015-05-10 22:39:31 -07:00
|
|
|
url = "http://www.linux-pam.org/library/Linux-PAM-${version}.tar.bz2";
|
2015-07-19 12:21:45 -07:00
|
|
|
sha256 = "1n9lnf9gjs72kbj1g354v1xhi2j27aqaah15vykh7cnkq08i4arl";
|
2005-10-24 09:07:50 -07:00
|
|
|
};
|
2009-02-18 03:40:32 -08:00
|
|
|
|
2015-04-26 13:06:53 -07:00
|
|
|
outputs = [ "out" "doc" "man" /* "modules" */ ];
|
2013-06-11 04:26:46 -07:00
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ flex ];
|
2012-09-21 07:20:26 -07:00
|
|
|
|
2014-08-29 23:27:43 -07:00
|
|
|
buildInputs = [ cracklib ];
|
2009-02-18 03:40:32 -08:00
|
|
|
|
2013-06-11 04:26:46 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-04-25 08:41:32 -07:00
|
|
|
crossAttrs = {
|
2012-12-28 10:08:19 -08:00
|
|
|
propagatedBuildInputs = [ flex.crossDrv cracklib.crossDrv ];
|
2011-11-04 14:53:47 -07:00
|
|
|
preConfigure = preConfigure + ''
|
2012-12-28 10:08:19 -08:00
|
|
|
ar x ${flex.crossDrv}/lib/libfl.a
|
2011-11-04 14:35:35 -07: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 14:11:43 -07:00
|
|
|
'';
|
2011-11-04 14:35:35 -07:00
|
|
|
postConfigure = ''
|
|
|
|
sed -e "s@ $PWD/libyywrap-target.o@ $PWD/libyywrap-host.o@" -i doc/specs/Makefile
|
2012-09-21 07:20:26 -07:00
|
|
|
'';
|
2011-04-25 08:41:32 -07:00
|
|
|
};
|
|
|
|
|
2010-08-13 07:06:41 -07:00
|
|
|
postInstall = ''
|
|
|
|
mv -v $out/sbin/unix_chkpwd{,.orig}
|
|
|
|
ln -sv /var/setuid-wrappers/unix_chkpwd $out/sbin/unix_chkpwd
|
2015-04-26 13:06:53 -07:00
|
|
|
''; /*
|
2013-06-11 04:26:46 -07:00
|
|
|
rm -rf $out/etc
|
|
|
|
mkdir -p $modules/lib
|
|
|
|
mv $out/lib/security $modules/lib/
|
2015-04-26 13:06:53 -07:00
|
|
|
'';*/
|
|
|
|
# don't move modules, because libpam needs to (be able to) find them,
|
|
|
|
# which is done by dlopening $out/lib/security/pam_foo.so
|
|
|
|
# $out/etc was also missed: pam_env(login:session): Unable to open config file
|
2010-08-13 07:06:41 -07:00
|
|
|
|
2009-02-18 03:40:32 -08:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlags="$configureFlags --includedir=$out/include/security"
|
|
|
|
'';
|
2010-08-13 16:09:53 -07: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 09:07:50 -07:00
|
|
|
}
|