1{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
2
3import ./generic.nix (args // rec {
4 version = "4.13-rc7";
5 modDirVersion = "4.13.0-rc7";
6 extraMeta.branch = "4.13";
7
8 src = fetchurl {
9 url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
10 sha256 = "1xkfxsvdhd0xcfjcr78222sa58i02z2ca9fv804jbyp7w9g628rm";
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 {}))