2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
|
2019-06-28 08:23:12 -07:00
|
|
|
|
2021-01-15 06:45:37 -08:00
|
|
|
with lib;
|
2014-06-05 04:06:19 -07:00
|
|
|
|
2018-01-28 10:50:18 -08:00
|
|
|
buildLinux (args // rec {
|
2021-01-29 08:57:48 -08:00
|
|
|
version = "5.11-rc5";
|
2020-12-28 08:22:43 -08:00
|
|
|
extraMeta.branch = "5.11";
|
2014-06-05 04:06:19 -07:00
|
|
|
|
2019-06-28 08:23:12 -07:00
|
|
|
# modDirVersion needs to be x.y.z, will always add .0
|
|
|
|
modDirVersion = if (modDirVersionArg == null) then builtins.replaceStrings ["-"] [".0-"] version else modDirVersionArg;
|
|
|
|
|
2014-06-05 04:06:19 -07:00
|
|
|
src = fetchurl {
|
2017-05-14 19:03:14 -07:00
|
|
|
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
|
2021-01-29 08:57:48 -08:00
|
|
|
sha256 = "029nps41nrym5qz9lq832cys4rai04ig5xp9ddvrpazzh0lfnr4q";
|
2014-06-05 04:06:19 -07:00
|
|
|
};
|
|
|
|
|
2014-06-17 15:23:32 -07:00
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
|
2014-06-05 04:06:19 -07:00
|
|
|
} // (args.argsOverride or {}))
|