2021-02-09 03:26:15 +00:00
|
|
|
{ lib, stdenv, buildPackages, fetchurl, flex, cracklib, db4, gettext
|
2021-01-03 14:50:37 +00:00
|
|
|
, nixosTests
|
2021-02-28 16:48:56 +00:00
|
|
|
, withLibxcrypt ? false, libxcrypt
|
2021-01-03 14:50:37 +00:00
|
|
|
}:
|
2005-10-24 17:07:50 +01:00
|
|
|
|
2011-11-04 21:53:47 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "linux-pam";
|
2020-12-19 02:22:10 +00:00
|
|
|
version = "1.5.1";
|
2009-02-18 11:40:32 +00:00
|
|
|
|
2005-10-24 17:07:50 +01:00
|
|
|
src = fetchurl {
|
2020-12-19 02:22:10 +00:00
|
|
|
url = "https://github.com/linux-pam/linux-pam/releases/download/v${version}/Linux-PAM-${version}.tar.xz";
|
|
|
|
sha256 = "sha256-IB1AcwsRNbGzzeoJ8sKKxjTXMYHM0Bcs7d7jZJxXkvw=";
|
2005-10-24 17:07:50 +01:00
|
|
|
};
|
2009-02-18 11:40:32 +00:00
|
|
|
|
2015-04-26 21:06:53 +01:00
|
|
|
outputs = [ "out" "doc" "man" /* "modules" */ ];
|
2013-06-11 12:26:46 +01:00
|
|
|
|
2018-02-06 14:55:52 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2021-01-17 14:35:34 +00:00
|
|
|
nativeBuildInputs = [ flex ]
|
|
|
|
++ lib.optional stdenv.buildPlatform.isDarwin gettext;
|
2012-09-21 15:20:26 +01:00
|
|
|
|
2021-02-28 16:48:56 +00:00
|
|
|
buildInputs = [ cracklib db4 ]
|
|
|
|
++ lib.optional withLibxcrypt libxcrypt;
|
2009-02-18 11:40:32 +00:00
|
|
|
|
2013-06-11 12:26:46 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2010-08-13 15:06:41 +01: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 21:06:53 +01:00
|
|
|
''; /*
|
2013-06-11 12:26:46 +01:00
|
|
|
rm -rf $out/etc
|
|
|
|
mkdir -p $modules/lib
|
|
|
|
mv $out/lib/security $modules/lib/
|
2015-04-26 21:06:53 +01: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 15:06:41 +01:00
|
|
|
|
2021-01-15 14:45:37 +00:00
|
|
|
preConfigure = lib.optionalString (stdenv.hostPlatform.libc == "musl") ''
|
2018-01-03 22:49:45 +00:00
|
|
|
# export ac_cv_search_crypt=no
|
|
|
|
# (taken from Alpine linux, apparently insecure but also doesn't build O:))
|
|
|
|
# disable insecure modules
|
|
|
|
# sed -e 's/pam_rhosts//g' -i modules/Makefile.am
|
|
|
|
sed -e 's/pam_rhosts//g' -i modules/Makefile.in
|
2009-02-18 11:40:32 +00:00
|
|
|
'';
|
2010-08-14 00:09:53 +01:00
|
|
|
|
2019-12-30 21:25:16 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--includedir=${placeholder "out"}/include/security"
|
|
|
|
"--enable-sconfigdir=/etc/security"
|
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [
|
|
|
|
"SCONFIGDIR=${placeholder "out"}/etc/security"
|
|
|
|
];
|
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails
|
|
|
|
|
2021-01-03 14:50:37 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) pam-oath-login pam-u2f shadow;
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.linux-pam.org/";
|
2010-08-14 00:09:53 +01:00
|
|
|
description = "Pluggable Authentication Modules, a flexible mechanism for authenticating user";
|
2018-04-16 13:11:01 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.bsd3;
|
2010-08-14 00:09:53 +01:00
|
|
|
};
|
2005-10-24 17:07:50 +01:00
|
|
|
}
|