Files
nixpkgs/pkgs/by-name/pa/paxctl/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

39 lines
779 B
Nix

{
fetchurl,
lib,
stdenv,
elf-header,
}:
stdenv.mkDerivation rec {
pname = "paxctl";
version = "0.9";
src = fetchurl {
url = "https://pax.grsecurity.net/${pname}-${version}.tar.gz";
sha256 = "0biw882fp1lmgs6kpxznp1v6758r7dg9x8iv5a06k0b82bcdsc53";
};
buildInputs = [ elf-header ];
preBuild = ''
sed -i Makefile \
-e 's|--owner 0 --group 0||g' \
-e '/CC:=gcc/d'
'';
makeFlags = [
"DESTDIR=$(out)"
"MANDIR=share/man/man1"
];
meta = with lib; {
description = "Tool for controlling PaX flags on a per binary basis";
mainProgram = "paxctl";
homepage = "https://pax.grsecurity.net";
license = licenses.gpl2Only;
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice ];
};
}