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-06-25 17:14:03 -07:00
version = "4.18-rc2";
modDirVersion = "4.18.0-rc2";
2018-06-16 17:33:00 -07:00
extraMeta.branch = "4.18";
src = fetchurl {
2017-05-14 19:03:14 -07:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2018-06-25 17:14:03 -07:00
sha256 = "04vflzj14wvvkj3lsbabsw0239y58cdd8g5kciqz1ydhdlgifpza";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))