linux: 4.19.265 -> 4.19.267

(cherry picked from commit e3db9b3f05)
This commit is contained in:
Maximilian Bosch 2022-11-27 10:09:25 +01:00 committed by github-actions[bot]
parent 679083324e
commit 6f5b58e15e

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.19.265";
version = "4.19.267";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "1l5cdpgng1gci1p1gdr2jzqw486h3w56gpyc7fbq74hlc6nnwh1p";
sha256 = "035yxx13jz5f5ig2r6ybzgivm8vjafgnvjws0jfzha4w6klf7r9l";
};
} // (args.argsOverride or {}))