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
42 lines
811 B
Nix
42 lines
811 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
pam,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "pam_rundir";
|
|
version = "1.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://jjacky.com/pam_rundir/pam_rundir-${version}.tar.gz";
|
|
hash = "sha256-x3m2me0jd3o726h7f2ftOV/pV/PJYTj67kX4eie8wCA=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace-fail /usr/share/man /share/man
|
|
'';
|
|
|
|
buildInputs = [
|
|
pam
|
|
];
|
|
|
|
configureFlags = [
|
|
"--securedir=/lib/security"
|
|
"--with-parentdir=/run/user"
|
|
];
|
|
|
|
installFlags = [
|
|
"DESTDIR=$(out)"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "http://jjacky.com/pam_rundir";
|
|
description = "Provide user runtime directory on Linux systems";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib; [ maintainers.aanderse ];
|
|
};
|
|
}
|