mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
dd16dcbba4
First, The patch is outdated, I failed to find it anywhere in the mirror repos. Second, the build fails, and while it may be "fixed" by ad-hoc patching (it appears to simply need some missing includes), this would mean shipping a potentially insecure software package. Given that the only reason to use grsecurity is security, this is both misleading and exposes users to undue risk. Finally, the build has been broken for quite a long time with no complaints, leading me to believe that the number of actual users is quite low.
22 lines
646 B
Nix
22 lines
646 B
Nix
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
|
|
|
|
throw "grsecurity stable is no longer supported; please update your configuration"
|
|
|
|
import ./generic.nix (args // rec {
|
|
version = "3.14.51";
|
|
extraMeta.branch = "3.14";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
|
|
sha256 = "1gqsd69cqijff4c4br4ydmcjl226d0yy6vrmgfvy16xiraavq1mk";
|
|
};
|
|
|
|
kernelPatches = args.kernelPatches;
|
|
|
|
features.iwlwifi = true;
|
|
features.efiBootStub = true;
|
|
features.needsCifsUtils = true;
|
|
features.canDisableNetfilterConntrackHelpers = true;
|
|
features.netfilterRPFilter = true;
|
|
} // (args.argsOverride or {}))
|