Files
nixpkgs/pkgs/by-name/pa/pam_tmpdir/package.nix
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
1.0 KiB
Nix

{
lib,
stdenv,
fetchurl,
autoreconfHook,
pam,
}:
stdenv.mkDerivation rec {
pname = "pam_tmpdir";
version = "0.09";
src = fetchurl {
url = "http://deb.debian.org/debian/pool/main/p/pam-tmpdir/pam-tmpdir_${version}.tar.gz";
hash = "sha256-MXa1CY6alD83E/Q+MJmsv8NaImWd0pPJKZd/7nbe4J8=";
};
postPatch = ''
substituteInPlace pam_tmpdir.c \
--replace /sbin/pam-tmpdir-helper $out/sbin/pam-tmpdir-helper
# chmod/chown fails on files in /nix/store
sed -i -E -e '/^\s*(chmod|chown)/d' Makefile.{am,in}
# the symlinks in m4 assume FHS
rm -rf m4
'';
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ pam ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://tracker.debian.org/pkg/pam-tmpdir";
description = "PAM module for creating safe per-user temporary directories";
mainProgram = "pam-tmpdir-helper";
license = licenses.gpl2Only;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
};
}