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