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