Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

44 lines
1019 B
Nix

{
lib,
stdenv,
fetchgit,
cmake,
linux-pam,
replaceVars,
enablePython ? false,
python ? null,
}:
assert enablePython -> python != null;
stdenv.mkDerivation rec {
pname = "libpam-wrapper";
version = "1.1.5";
src = fetchgit {
url = "git://git.samba.org/pam_wrapper.git";
rev = "pam_wrapper-${version}";
hash = "sha256-AtfkiCUvCxUfll6lOlbMyy5AhS5R2BGF1+ecC1VuwzM=";
};
patches = [
(replaceVars ./python.patch {
siteDir = lib.optionalString enablePython python.sitePackages;
includeDir = lib.optionalString enablePython "include/${python.libPrefix}";
})
];
nativeBuildInputs = [ cmake ] ++ lib.optionals enablePython [ python ];
# We must use linux-pam, using openpam will result in broken fprintd.
buildInputs = [ linux-pam ];
meta = with lib; {
description = "Wrapper for testing PAM modules";
homepage = "https://cwrap.org/pam_wrapper.html";
license = licenses.gpl3Plus;
maintainers = [ ];
platforms = platforms.linux;
};
}