3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/kernel/linux-testing.nix

17 lines
482 B
Nix
Raw Normal View History

{ stdenv, buildPackages, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args:
buildLinux (args // rec {
2019-02-04 00:31:25 +00:00
version = "5.0-rc5";
modDirVersion = "5.0.0-rc5";
2019-01-07 12:57:32 +00:00
extraMeta.branch = "5.0";
src = fetchurl {
2017-05-15 03:03:14 +01:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2019-02-04 00:31:25 +00:00
sha256 = "0a60svgiz06cq4hq5z1rmwyjq1748fm7wi87arl659aidp0r0qky";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))