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

25 lines
701 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, paxctl }:
2016-01-23 15:36:08 +01:00
stdenv.mkDerivation rec {
pname = "paxtest";
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/${pname}-${version}.tar.gz";
2016-11-20 22:29:09 +01:00
sha256 = "0zv6vlaszlik98gj9200sv0irvfzrvjn46rnr2v2m37x66288lym";
2016-01-23 15:36:08 +01:00
};
enableParallelBuilding = true;
2016-01-23 15:36:08 +01:00
makefile = "Makefile.psm";
makeFlags = [ "PAXBIN=${paxctl}/bin/paxctl" "BINDIR=$(out)/bin" "RUNDIR=$(out)/lib/paxtest" ];
2019-11-05 02:10:31 +01:00
installFlags = [ "DESTDIR=\"\"" ];
2016-01-23 15:36:08 +01:00
meta = with lib; {
2016-01-23 15:36:08 +01:00
description = "Test various memory protection measures";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ copumpkin joachifm ];
2016-01-23 15:36:08 +01:00
};
}