nixpkgs/pkgs/os-specific/linux/paxctl/default.nix

31 lines
702 B
Nix
Raw Normal View History

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "paxctl-${version}";
version = "0.9";
src = fetchurl {
2014-05-05 12:53:51 +00:00
url = "http://pax.grsecurity.net/${name}.tar.gz";
sha256 = "0biw882fp1lmgs6kpxznp1v6758r7dg9x8iv5a06k0b82bcdsc53";
};
preBuild = ''
sed "s|--owner 0 --group 0||g" -i Makefile
'';
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.linux;
2015-10-05 09:17:56 +00:00
maintainers = with maintainers; [ thoughtpolice ];
};
}