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

17 lines
499 B
Nix
Raw Normal View History

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