92f7781f00
kernels: - longterm: 3.4.87 -> 3.4.88 - longterm: 3.10.37 -> 3.10.38 - stable: 3.13.10 -> 3.13.11 - stable: 3.14.1 -> 3.14.2 grsecurity: - test: 3.0-3.14.1-201404241722 -> 3.0-3.14.2-201404270907 NOTE: technically the 3.13 stable kernel is now EOL. However, it will become the long-term grsecurity stable kernel, and will have ongoing support from Canonical. Signed-off-by: Austin Seipp <aseipp@pobox.com>
18 lines
505 B
Nix
18 lines
505 B
Nix
{ stdenv, fetchurl, ... } @ args:
|
|
|
|
import ./generic.nix (args // rec {
|
|
version = "3.13.11";
|
|
extraMeta.branch = "3.13";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
|
|
sha256 = "1nhi5m0nnrb7v2gqpa3181p32k5hm5jwkf647vs80r14750gxlpw";
|
|
};
|
|
|
|
features.iwlwifi = true;
|
|
features.efiBootStub = true;
|
|
features.needsCifsUtils = true;
|
|
features.canDisableNetfilterConntrackHelpers = true;
|
|
features.netfilterRPFilter = true;
|
|
} // (args.argsOverride or {}))
|