nixpkgs/pkgs/os-specific/linux/kernel/linux-testing.nix

22 lines
599 B
Nix
Raw Normal View History

{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
2017-01-16 09:40:45 +00:00
version = "4.10-rc4";
modDirVersion = "4.10.0-rc4";
2016-12-26 23:35:10 +00:00
extraMeta.branch = "4.10";
src = fetchurl {
2015-02-27 22:04:20 +00:00
url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
2017-01-16 09:40:45 +00:00
sha256 = "0rsi9iw8ag3lcy4yjrr6ipf7zpm3f206anv5xzkn2mi1r4vfndvp";
};
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.netfilterRPFilter = true;
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))