nixpkgs/pkgs/os-specific/linux/paxctl/default.nix
Franz Pletz aff1f4ab94 Use general hardening flag toggle lists
The following parameters are now available:

  * hardeningDisable
    To disable specific hardening flags
  * hardeningEnable
    To enable specific hardening flags

Only the cc-wrapper supports this right now, but these may be reused by
other wrappers, builders or setup hooks.

cc-wrapper supports the following flags:

  * fortify
  * stackprotector
  * pie (disabled by default)
  * pic
  * strictoverflow
  * format
  * relro
  * bindnow
2016-03-05 18:55:26 +01:00

34 lines
789 B
Nix

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "paxctl-${version}";
version = "0.9";
src = fetchurl {
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"
];
# FIXME needs gcc 4.9 in bootstrap tools
hardeningDisable = [ "stackprotector" ];
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;
maintainers = with maintainers; [ thoughtpolice ];
};
}