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-23 14:49:39 +02:00
version = "4.14-rc6";
modDirVersion = "4.14.0-rc6";
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-23 14:49:39 +02:00
sha256 = "0gmxrf4jmw8xl5gx487chyx94yas7rva5jbkczm9iw9sw0c8gwcb";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))