2018-10-22 13:40:14 +00:00
|
|
|
{ stdenv, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
buildLinux (args // rec {
|
2019-08-29 16:24:09 +00:00
|
|
|
version = "4.19.69";
|
2018-10-22 13:40:14 +00:00
|
|
|
|
|
|
|
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
|
2019-04-07 12:34:12 +00:00
|
|
|
modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
|
2018-10-22 13:40:14 +00:00
|
|
|
|
|
|
|
# branchVersion needs to be x.y
|
|
|
|
extraMeta.branch = concatStrings (intersperse "." (take 2 (splitString "." version)));
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
|
2019-08-29 16:24:09 +00:00
|
|
|
sha256 = "11yrw8ixd5ni9rlpndqsz2ihx6k8qaf35a1lf164lkhaa85pd4f0";
|
2018-10-22 13:40:14 +00:00
|
|
|
};
|
|
|
|
} // (args.argsOverride or {}))
|