nixpkgs/pkgs/by-name/gr/gradm/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

52 lines
1.2 KiB
Nix

{ lib, stdenv, fetchurl
, bison, flex
, pam
}:
stdenv.mkDerivation rec {
pname = "gradm";
version = "3.1-202102241600";
src = fetchurl {
url = "https://grsecurity.net/stable/${pname}-${version}.tar.gz";
sha256 = "02ni34hpggv00140p9gvh0lqi173zdddd2qhfi96hyr1axd5pl50";
};
nativeBuildInputs = [ bison flex ];
buildInputs = [ pam ];
enableParallelBuilding = true;
makeFlags = [
"DESTDIR=$(out)"
"LEX=${flex}/bin/flex"
"MANDIR=/share/man"
"MKNOD=true"
];
preBuild = ''
substituteInPlace Makefile \
--replace "/usr/bin/" "" \
--replace "/usr/include/security/pam_" "${pam}/include/security/pam_"
substituteInPlace gradm_defs.h \
--replace "/sbin/grlearn" "$out/bin/grlearn" \
--replace "/sbin/gradm" "$out/bin/gradm" \
--replace "/sbin/gradm_pam" "$out/bin/gradm_pam"
echo 'inherit-learn /nix/store' >>learn_config
mkdir -p "$out/etc/udev/rules.d"
'';
postInstall = "rmdir $out/dev";
meta = with lib; {
description = "grsecurity RBAC administration and policy analysis utility";
homepage = "https://grsecurity.net";
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = with maintainers; [ thoughtpolice joachifm ];
};
}