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

23 lines
651 B
Nix
Raw Normal View History

{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
2016-03-27 03:08:24 +01:00
version = "4.6-rc1";
modDirVersion = "4.6.0-rc1";
extraMeta.branch = "4.6";
src = fetchurl {
2015-02-27 14:04:20 -08:00
url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
2016-03-27 03:08:24 +01:00
sha256 = "1y73sjd7i48d1c8x52z59imx8g8d00wy67r5666cvwqrq8d407h0";
};
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.canDisableNetfilterConntrackHelpers = true;
features.netfilterRPFilter = true;
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))