at 18.03-beta 16 lines 499 B view raw
1{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args: 2 3buildLinux (args // rec { 4 version = "4.16-rc4"; 5 modDirVersion = "4.16.0-rc4"; 6 extraMeta.branch = "4.16"; 7 8 src = fetchurl { 9 url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz"; 10 sha256 = "0fxs3i7rdw5mybmim0npmzqpp7i3ppy1f6f72q2w3qdbjmbqm7w6"; 11 }; 12 13 # Should the testing kernels ever be built on Hydra? 14 extraMeta.hydraPlatforms = []; 15 16} // (args.argsOverride or {}))