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