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