2017-06-28 20:32:25 +00:00
|
|
|
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
|
2014-06-05 11:06:19 +00:00
|
|
|
|
|
|
|
import ./generic.nix (args // rec {
|
2017-06-20 01:21:15 +00:00
|
|
|
version = "4.12-rc6";
|
|
|
|
modDirVersion = "4.12.0-rc6";
|
2017-05-15 02:03:14 +00:00
|
|
|
extraMeta.branch = "4.12";
|
2014-06-05 11:06:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-05-15 02:03:14 +00:00
|
|
|
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
|
2017-06-20 01:21:15 +00:00
|
|
|
sha256 = "0yqs65kmrksphca8f959g9ca9kpdwbp3ad5v594wvwsdk0q4sqgc";
|
2014-06-05 11:06:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
features.iwlwifi = true;
|
|
|
|
features.efiBootStub = true;
|
|
|
|
features.needsCifsUtils = true;
|
|
|
|
features.netfilterRPFilter = true;
|
2014-06-17 22:23:32 +00:00
|
|
|
|
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
|
2014-06-05 11:06:19 +00:00
|
|
|
} // (args.argsOverride or {}))
|