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

17 lines
475 B
Nix
Raw Normal View History

2017-06-28 22:32:25 +02:00
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
2017-10-30 13:30:29 +01:00
version = "4.14-rc7";
modDirVersion = "4.14.0-rc7";
2017-09-17 15:11:04 +02:00
extraMeta.branch = "4.14";
src = fetchurl {
2017-05-15 04:03:14 +02:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2017-10-30 13:30:29 +01:00
sha256 = "1w7b1sc5dsxcqywsdbwgs92i8jpj7hsnss67yzb58z3bz3hb73m3";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))