mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
grsecurity: Add myself as a maintainer
This commit is contained in:
parent
911f332279
commit
897bbc3702
1 changed files with 8 additions and 4 deletions
|
@ -6804,19 +6804,23 @@ let
|
||||||
# Note: grsec is not enabled automatically, you need to specify which kernel
|
# Note: grsec is not enabled automatically, you need to specify which kernel
|
||||||
# config options you need (e.g. by overriding extraConfig). See list of options here:
|
# config options you need (e.g. by overriding extraConfig). See list of options here:
|
||||||
# https://en.wikibooks.org/wiki/Grsecurity/Appendix/Grsecurity_and_PaX_Configuration_Options
|
# https://en.wikibooks.org/wiki/Grsecurity/Appendix/Grsecurity_and_PaX_Configuration_Options
|
||||||
linux_3_2_grsecurity = lowPrio (lib.overrideDerivation (linux_3_2.override (args: {
|
linux_3_2_grsecurity = lowPrio (lib.addMetaAttrs {
|
||||||
|
maintainers = with lib.maintainers; [ wizeman ];
|
||||||
|
} (lib.overrideDerivation (linux_3_2.override (args: {
|
||||||
kernelPatches = args.kernelPatches ++ [ kernelPatches.grsecurity_3_0_3_2_55 kernelPatches.grsec_path ];
|
kernelPatches = args.kernelPatches ++ [ kernelPatches.grsecurity_3_0_3_2_55 kernelPatches.grsec_path ];
|
||||||
argsOverride = {
|
argsOverride = {
|
||||||
modDirVersion = "${linux_3_2.modDirVersion}-grsec";
|
modDirVersion = "${linux_3_2.modDirVersion}-grsec";
|
||||||
};
|
};
|
||||||
})) (args: grsecurityOverrider args));
|
})) (args: grsecurityOverrider args)));
|
||||||
|
|
||||||
linux_3_13_grsecurity = lowPrio (lib.overrideDerivation (linux_3_13.override (args: {
|
linux_3_13_grsecurity = lowPrio (lib.addMetaAttrs {
|
||||||
|
maintainers = with lib.maintainers; [ wizeman ];
|
||||||
|
} (lib.overrideDerivation (linux_3_13.override (args: {
|
||||||
kernelPatches = args.kernelPatches ++ [ kernelPatches.grsecurity_3_0_3_13_7 kernelPatches.grsec_path ];
|
kernelPatches = args.kernelPatches ++ [ kernelPatches.grsecurity_3_0_3_13_7 kernelPatches.grsec_path ];
|
||||||
argsOverride = {
|
argsOverride = {
|
||||||
modDirVersion = "${linux_3_13.modDirVersion}-grsec";
|
modDirVersion = "${linux_3_13.modDirVersion}-grsec";
|
||||||
};
|
};
|
||||||
})) (args: grsecurityOverrider args));
|
})) (args: grsecurityOverrider args)));
|
||||||
|
|
||||||
linux_3_2_apparmor = lowPrio (linux_3_2.override {
|
linux_3_2_apparmor = lowPrio (linux_3_2.override {
|
||||||
kernelPatches = [ kernelPatches.apparmor_3_2 ];
|
kernelPatches = [ kernelPatches.apparmor_3_2 ];
|
||||||
|
|
Loading…
Reference in a new issue