mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
pam_rundir: init at 1.0.0
This commit is contained in:
parent
986433ddca
commit
0e356a824b
1 changed files with 41 additions and 0 deletions
41
pkgs/by-name/pa/pam_rundir/package.nix
Normal file
41
pkgs/by-name/pa/pam_rundir/package.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue