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-07-01 22:29:15 +00:00
|
|
|
version = "5.2-rc7";
|
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-07-01 22:29:15 +00:00
|
|
|
sha256 = "1128jb1y4gia5icv614ycp3c5mkvrb2l2wn20765b3si256g68n4";
|
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 {}))
|