uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
51
pkgs/os-specific/linux/gradm/default.nix
Normal file
51
pkgs/os-specific/linux/gradm/default.nix
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue