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

25 lines
699 B
Nix
Raw Normal View History

{ stdenv, fetchurl, paxctl }:
2016-01-23 14:36:08 +00:00
stdenv.mkDerivation rec {
pname = "paxtest";
2016-11-20 21:29:09 +00:00
version = "0.9.15";
2016-01-23 14:36:08 +00:00
src = fetchurl {
url = "https://www.grsecurity.net/~spender/${pname}-${version}.tar.gz";
2016-11-20 21:29:09 +00:00
sha256 = "0zv6vlaszlik98gj9200sv0irvfzrvjn46rnr2v2m37x66288lym";
2016-01-23 14:36:08 +00:00
};
enableParallelBuilding = true;
2016-01-23 14:36:08 +00:00
makefile = "Makefile.psm";
makeFlags = [ "PAXBIN=${paxctl}/bin/paxctl" "BINDIR=$(out)/bin" "RUNDIR=$(out)/lib/paxtest" ];
installFlags = ''DESTDIR=""'';
2016-01-23 14:36:08 +00:00
meta = with stdenv.lib; {
description = "Test various memory protection measures";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ copumpkin joachifm ];
2016-01-23 14:36:08 +00:00
};
}