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

22 lines
605 B
Nix
Raw Normal View History

2017-06-28 20:32:25 +00:00
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
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";
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";
};
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 {}))