mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
35 lines
783 B
Nix
35 lines
783 B
Nix
{ fetchurl, 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"
|
|
];
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tool for controlling PaX flags on a per binary basis";
|
|
homepage = "https://pax.grsecurity.net";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
};
|
|
}
|