2019-06-28 08:23:12 -07:00
|
|
|
{ stdenv, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2014-06-05 04:06:19 -07:00
|
|
|
|
2018-01-28 10:50:18 -08:00
|
|
|
buildLinux (args // rec {
|
2019-12-28 12:34:41 -08:00
|
|
|
version = "5.5-rc3";
|
2019-12-09 08:05:01 -08:00
|
|
|
extraMeta.branch = "5.5";
|
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";
|
2019-12-28 12:34:41 -08:00
|
|
|
sha256 = "1rf394d1d6c0mvf6006gq1bscq3jjcvj9xxmdwallfwpp9igs8id";
|
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 {}))
|