2019-06-28 16:23:12 +01:00
|
|
|
{ stdenv, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2014-06-05 12:06:19 +01:00
|
|
|
|
2018-01-28 18:50:18 +00:00
|
|
|
buildLinux (args // rec {
|
2020-11-03 13:47:02 +00:00
|
|
|
version = "5.10-rc2";
|
2020-10-27 18:29:02 +00:00
|
|
|
extraMeta.branch = "5.10";
|
2014-06-05 12:06:19 +01:00
|
|
|
|
2019-06-28 16:23:12 +01: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 12:06:19 +01:00
|
|
|
src = fetchurl {
|
2017-05-15 03:03:14 +01:00
|
|
|
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
|
2020-11-03 13:47:02 +00:00
|
|
|
sha256 = "1qh353xd48mbvavpw61r2lz1cn8007yyc2xqiacbn8xsj7xdlxkj";
|
2014-06-05 12:06:19 +01:00
|
|
|
};
|
|
|
|
|
2014-06-17 23:23:32 +01:00
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
|
2014-06-05 12:06:19 +01:00
|
|
|
} // (args.argsOverride or {}))
|