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