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

17 lines
499 B
Nix
Raw Normal View History

2017-10-28 19:09:54 +00:00
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args:
buildLinux (args // rec {
2018-07-03 12:34:32 +00:00
version = "4.18-rc3";
modDirVersion = "4.18.0-rc3";
2018-06-17 00:33:00 +00:00
extraMeta.branch = "4.18";
src = fetchurl {
2017-05-15 02:03:14 +00:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2018-07-03 12:34:32 +00:00
sha256 = "1kr9bhvcdp792micjmhl2hwhs5iid1srb4ia8hm4cpy1lnzdgrih";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))