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

21 lines
656 B
Nix
Raw Normal View History

2019-06-28 17:23:12 +02:00
{ stdenv, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
with stdenv.lib;
buildLinux (args // rec {
2021-01-04 13:35:39 -05:00
version = "5.11-rc2";
2020-12-28 11:22:43 -05:00
extraMeta.branch = "5.11";
2019-06-28 17:23:12 +02:00
# modDirVersion needs to be x.y.z, will always add .0
modDirVersion = if (modDirVersionArg == null) then builtins.replaceStrings ["-"] [".0-"] version else modDirVersionArg;
src = fetchurl {
2017-05-14 22:03:14 -04:00
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
2021-01-04 13:35:39 -05:00
sha256 = "092jgmzqfpylwbwhv7j8hy5y0ai14b6wm7p7vw6pxj7alixyynq0";
};
# Should the testing kernels ever be built on Hydra?
extraMeta.hydraPlatforms = [];
} // (args.argsOverride or {}))