nixpkgs/pkgs/by-name/pa/paxctl/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

34 lines
779 B
Nix

{ fetchurl, lib, stdenv, elf-header }:
stdenv.mkDerivation rec {
pname = "paxctl";
version = "0.9";
src = fetchurl {
url = "https://pax.grsecurity.net/${pname}-${version}.tar.gz";
sha256 = "0biw882fp1lmgs6kpxznp1v6758r7dg9x8iv5a06k0b82bcdsc53";
};
buildInputs = [ elf-header ];
preBuild = ''
sed -i Makefile \
-e 's|--owner 0 --group 0||g' \
-e '/CC:=gcc/d'
'';
makeFlags = [
"DESTDIR=$(out)"
"MANDIR=share/man/man1"
];
meta = with lib; {
description = "Tool for controlling PaX flags on a per binary basis";
mainProgram = "paxctl";
homepage = "https://pax.grsecurity.net";
license = licenses.gpl2Only;
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice ];
};
}