at 16.09-beta 22 lines 651 B view raw
1{ stdenv, fetchurl, perl, buildLinux, ... } @ args: 2 3import ./generic.nix (args // rec { 4 version = "4.8-rc4"; 5 modDirVersion = "4.8.0-rc4"; 6 extraMeta.branch = "4.8"; 7 8 src = fetchurl { 9 url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; 10 sha256 = "0is4pzmci1i59fxw9b645c8710zjnx19dfl20m4k06kxdbbs01wg"; 11 }; 12 13 features.iwlwifi = true; 14 features.efiBootStub = true; 15 features.needsCifsUtils = true; 16 features.canDisableNetfilterConntrackHelpers = true; 17 features.netfilterRPFilter = true; 18 19 # Should the testing kernels ever be built on Hydra? 20 extraMeta.hydraPlatforms = []; 21 22} // (args.argsOverride or {}))