phaer b349e80087 treewide: drop copumpkin from maintainers
Their last commit is from March 28th 2019, about 6 years ago.

This PR is in no way intended to diminish Daniels's accomplishments, and they're welcome to just say so if they'd prefer this PR not to be merged. Also, even if it's merged, of course they're always welcome to return to activity and be added back. The intent of this PR is to give more realistic expectations around the maintainership of these packages, and to invite others to step up for maintainership if they rely on those packages.

If this is merged, they should probably also be removed from the list
of committers for the time being.
2025-03-23 20:07:15 +01:00

37 lines
741 B
Nix

{
lib,
stdenv,
fetchurl,
paxctl,
}:
stdenv.mkDerivation rec {
pname = "paxtest";
version = "0.9.15";
src = fetchurl {
url = "https://www.grsecurity.net/~spender/${pname}-${version}.tar.gz";
sha256 = "0zv6vlaszlik98gj9200sv0irvfzrvjn46rnr2v2m37x66288lym";
};
enableParallelBuilding = true;
makefile = "Makefile.psm";
makeFlags = [
"PAXBIN=${paxctl}/bin/paxctl"
"BINDIR=$(out)/bin"
"RUNDIR=$(out)/lib/paxtest"
];
installFlags = [ "DESTDIR=\"\"" ];
meta = with lib; {
description = "Test various memory protection measures";
mainProgram = "paxtest";
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = with maintainers; [
joachifm
];
};
}