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