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

17 lines
499 B
Nix
Raw Normal View History

2017-10-28 12:09:54 -07:00
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args:
buildLinux (args // rec {
2018-03-26 12:14:30 -07:00
version = "4.16-rc7";
modDirVersion = "4.16.0-rc7";
2018-02-15 08:27:46 -08:00
extraMeta.branch = "4.16";
src = fetchurl {
2017-05-14 19:03:14 -07:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2018-03-26 12:14:30 -07:00
sha256 = "13zpfjxd38202afjl6flc9brjw3sp4sfq3wls0v90k1i2b308qfi";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))