2018-08-20 19:43:41 +01:00
|
|
|
{ stdenv, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
|
2017-11-13 13:34:36 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
2018-01-28 18:50:18 +00:00
|
|
|
buildLinux (args // rec {
|
2020-03-22 16:02:43 +00:00
|
|
|
version = "4.14.174";
|
2017-11-13 13:34:36 +00:00
|
|
|
|
2018-06-11 02:00:31 +01:00
|
|
|
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
|
2019-09-24 10:24:13 +01:00
|
|
|
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
|
2018-06-11 02:00:31 +01:00
|
|
|
|
2017-11-13 13:34:36 +00:00
|
|
|
# branchVersion needs to be x.y
|
2019-09-24 10:24:13 +01:00
|
|
|
extraMeta.branch = versions.majorMinor version;
|
2017-11-13 13:34:36 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
|
2020-03-22 16:02:43 +00:00
|
|
|
sha256 = "12ai2lc2ny38s93d0m5ngrv030vwv1h2hhzp0fs6fhjxasikq8jc";
|
2017-11-13 13:34:36 +00:00
|
|
|
};
|
|
|
|
} // (args.argsOverride or {}))
|