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 {
version = "4.10-rc7";
modDirVersion = "4.10.0-rc7";
2016-12-27 00:35:10 +01:00
extraMeta.branch = "4.10";
src = fetchurl {
2015-02-27 23:04:20 +01:00
url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
sha256 = "01jq4bxb8jcnawhsklc9aa2ba9sg7k5g97jp0slpbi8xw71dripl";
};
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 {}))