nixpkgs-suyu/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-16 15:26:36 +02:00
version = "4.14-rc5";
modDirVersion = "4.14.0-rc5";
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-16 15:26:36 +02:00
sha256 = "1y383vw79jhpr15s919xwzxif2y8zbiwa64sg2aan075xfhzijp8";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))