2023-03-12 17:58:19 +01:00
|
|
|
{ lib, stdenv, buildPackages, fetchurl, flex, cracklib, db4, gettext, audit, libxcrypt
|
2021-01-03 15:50:37 +01:00
|
|
|
, nixosTests
|
|
|
|
}:
|
2005-10-24 18:07:50 +02:00
|
|
|
|
2011-11-04 22:53:47 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "linux-pam";
|
2021-09-14 18:05:01 +02:00
|
|
|
version = "1.5.2";
|
2009-02-18 12:40:32 +01:00
|
|
|
|
2005-10-24 18:07:50 +02:00
|
|
|
src = fetchurl {
|
2020-12-19 03:22:10 +01:00
|
|
|
url = "https://github.com/linux-pam/linux-pam/releases/download/v${version}/Linux-PAM-${version}.tar.xz";
|
2021-09-14 18:05:01 +02:00
|
|
|
sha256 = "sha256-5OxxMakdpEUSV0Jo9JPG2MoQXIcJFpG46bVspoXU+U0=";
|
2005-10-24 18:07:50 +02:00
|
|
|
};
|
2009-02-18 12:40:32 +01:00
|
|
|
|
2022-01-27 10:10:23 +01:00
|
|
|
patches = [ ./suid-wrapper-path.patch ];
|
|
|
|
|
2015-04-26 22:06:53 +02:00
|
|
|
outputs = [ "out" "doc" "man" /* "modules" */ ];
|
2013-06-11 13:26:46 +02:00
|
|
|
|
2018-02-06 15:55:52 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2021-01-17 15:35:34 +01:00
|
|
|
nativeBuildInputs = [ flex ]
|
|
|
|
++ lib.optional stdenv.buildPlatform.isDarwin gettext;
|
2012-09-21 16:20:26 +02:00
|
|
|
|
2023-03-12 17:58:19 +01:00
|
|
|
buildInputs = [ cracklib db4 libxcrypt ]
|
|
|
|
++ lib.optional stdenv.buildPlatform.isLinux audit;
|
2009-02-18 12:40:32 +01:00
|
|
|
|
2013-06-11 13:26:46 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-15 15:45:37 +01:00
|
|
|
preConfigure = lib.optionalString (stdenv.hostPlatform.libc == "musl") ''
|
2018-01-03 23:49:45 +01: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 12:40:32 +01:00
|
|
|
'';
|
2010-08-14 01:09:53 +02:00
|
|
|
|
2019-12-30 22:25:16 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--includedir=${placeholder "out"}/include/security"
|
|
|
|
"--enable-sconfigdir=/etc/security"
|
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [
|
|
|
|
"SCONFIGDIR=${placeholder "out"}/etc/security"
|
|
|
|
];
|
|
|
|
|
2018-04-25 05:20:18 +02:00
|
|
|
doCheck = false; # fails
|
|
|
|
|
2021-01-03 15:50:37 +01:00
|
|
|
passthru.tests = {
|
2023-05-09 17:13:45 +02:00
|
|
|
inherit (nixosTests) pam-oath-login pam-u2f shadow sssd-ldap;
|
2021-01-03 15:50:37 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.linux-pam.org/";
|
2010-08-14 01:09:53 +02:00
|
|
|
description = "Pluggable Authentication Modules, a flexible mechanism for authenticating user";
|
2018-04-16 14:11:01 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.bsd3;
|
2010-08-14 01:09:53 +02:00
|
|
|
};
|
2005-10-24 18:07:50 +02:00
|
|
|
}
|