nixpkgs/pkgs/os-specific/linux/kernel/linux-testing.nix
2018-03-26 15:14:34 -04:00

17 lines
499 B
Nix

{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args:
buildLinux (args // rec {
version = "4.16-rc7";
modDirVersion = "4.16.0-rc7";
extraMeta.branch = "4.16";
src = fetchurl {
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
sha256 = "13zpfjxd38202afjl6flc9brjw3sp4sfq3wls0v90k1i2b308qfi";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))