1{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
2
3import ./generic.nix (args // rec {
4 version = "4.11-rc4";
5 modDirVersion = "4.11.0-rc4";
6 extraMeta.branch = "4.11";
7
8 src = fetchurl {
9 url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
10 sha256 = "0kvp5zkq54ahxp59d33fpzf3jpr5k0jjfbxc1kfqwxvlkgznmd7h";
11 };
12
13 features.iwlwifi = true;
14 features.efiBootStub = true;
15 features.needsCifsUtils = true;
16 features.netfilterRPFilter = true;
17
18 # Should the testing kernels ever be built on Hydra?
19 extraMeta.hydraPlatforms = [];
20
21} // (args.argsOverride or {}))