2017-10-15 17:04:42 +00:00
|
|
|
{ stdenv, buildPackages, fetchurl, flex, cracklib }:
|
2005-10-24 16:07:50 +00:00
|
|
|
|
2011-11-04 21:53:47 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-05-11 05:39:31 +00:00
|
|
|
name = "linux-pam-${version}";
|
2017-11-21 20:04:33 +00:00
|
|
|
version = "1.3.0";
|
2009-02-18 11:40:32 +00:00
|
|
|
|
2005-10-24 16:07:50 +00:00
|
|
|
src = fetchurl {
|
2015-05-11 05:39:31 +00:00
|
|
|
url = "http://www.linux-pam.org/library/Linux-PAM-${version}.tar.bz2";
|
2017-11-21 20:04:33 +00:00
|
|
|
sha256 = "1fyi04d5nsh8ivd0rn2y0z83ylgc0licz7kifbb6xxi2ylgfs6i4";
|
2005-10-24 16:07:50 +00:00
|
|
|
};
|
2009-02-18 11:40:32 +00:00
|
|
|
|
2015-04-26 20:06:53 +00:00
|
|
|
outputs = [ "out" "doc" "man" /* "modules" */ ];
|
2013-06-11 11:26:46 +00:00
|
|
|
|
2017-10-15 17:04:42 +00:00
|
|
|
nativeBuildInputs = [ buildPackages.stdenv.cc flex ];
|
2012-09-21 14:20:26 +00:00
|
|
|
|
2014-08-30 06:27:43 +00:00
|
|
|
buildInputs = [ cracklib ];
|
2009-02-18 11:40:32 +00:00
|
|
|
|
2013-06-11 11:26:46 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-04-25 15:41:32 +00:00
|
|
|
crossAttrs = {
|
2012-12-28 18:08:19 +00:00
|
|
|
propagatedBuildInputs = [ flex.crossDrv cracklib.crossDrv ];
|
2011-11-04 21:53:47 +00:00
|
|
|
preConfigure = preConfigure + ''
|
2017-10-15 17:04:42 +00:00
|
|
|
$crossConfig-ar x ${flex.crossDrv}/lib/libfl.a
|
2011-11-04 21:35:35 +00: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 21:11:43 +00:00
|
|
|
'';
|
2011-11-04 21:35:35 +00:00
|
|
|
postConfigure = ''
|
|
|
|
sed -e "s@ $PWD/libyywrap-target.o@ $PWD/libyywrap-host.o@" -i doc/specs/Makefile
|
2012-09-21 14:20:26 +00:00
|
|
|
'';
|
2011-04-25 15:41:32 +00:00
|
|
|
};
|
|
|
|
|
2010-08-13 14:06:41 +00:00
|
|
|
postInstall = ''
|
|
|
|
mv -v $out/sbin/unix_chkpwd{,.orig}
|
2017-01-29 10:11:01 +00:00
|
|
|
ln -sv /run/wrappers/bin/unix_chkpwd $out/sbin/unix_chkpwd
|
2015-04-26 20:06:53 +00:00
|
|
|
''; /*
|
2013-06-11 11:26:46 +00:00
|
|
|
rm -rf $out/etc
|
|
|
|
mkdir -p $modules/lib
|
|
|
|
mv $out/lib/security $modules/lib/
|
2015-04-26 20:06:53 +00: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 14:06:41 +00:00
|
|
|
|
2009-02-18 11:40:32 +00:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlags="$configureFlags --includedir=$out/include/security"
|
|
|
|
'';
|
2010-08-13 23:09:53 +00: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 16:07:50 +00:00
|
|
|
}
|