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