paxtest: init at 0.9.14

This commit is contained in:
Dan Peebles 2016-01-23 14:36:08 +00:00
parent 33cf0792b1
commit bffc446394
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "paxtest-${version}";
version = "0.9.14";
src = fetchurl {
url = "https://www.grsecurity.net/~spender/${name}.tar.gz";
sha256 = "0j40h3x42k5mr5gc5np4wvr9cdf9szk2f46swf42zny8rlgxiskx";
};
buildPhase = ''
make $makeFlags RUNDIR=$out/bin/ linux
'';
installPhase = ''
mkdir -p $out/bin
find . -executable -exec cp {} $out/bin \;
'';
meta = with stdenv.lib; {
description = "Test various memory protection measures";
license = licenses.gpl2;
platforms = platforms.linux;
maintainer = [ maintainers.copumpkin ];
};
}

View file

@ -10469,6 +10469,8 @@ let
paxctl = callPackage ../os-specific/linux/paxctl { };
paxtest = callPackage ../os-specific/linux/paxtest { };
pax-utils = callPackage ../os-specific/linux/pax-utils { };
pcmciaUtils = callPackage ../os-specific/linux/pcmciautils {