2017-06-28 22:32:25 +02:00
|
|
|
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
|
2014-06-05 13:06:19 +02:00
|
|
|
|
|
|
|
import ./generic.nix (args // rec {
|
2017-07-31 08:41:48 +02:00
|
|
|
version = "4.13-rc3";
|
|
|
|
modDirVersion = "4.13.0-rc3";
|
2017-07-16 01:30:44 +02:00
|
|
|
extraMeta.branch = "4.13";
|
2014-06-05 13:06:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-05-15 04:03:14 +02:00
|
|
|
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
|
2017-07-31 08:41:48 +02:00
|
|
|
sha256 = "07cxqf57hgs3wnbvkqixiwhjrwdf433pjwmh0hv1id0bk8wdrjjl";
|
2014-06-05 13:06:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
features.iwlwifi = true;
|
|
|
|
features.efiBootStub = true;
|
|
|
|
features.needsCifsUtils = true;
|
|
|
|
features.netfilterRPFilter = true;
|
2014-06-18 00:23:32 +02:00
|
|
|
|
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
|
2014-06-05 13:06:19 +02:00
|
|
|
} // (args.argsOverride or {}))
|