linux: 5.15.64 -> 5.15.67

This commit is contained in:
Bernardo Meurer 2022-09-09 15:56:48 -03:00
parent 2919da7f54
commit cece1283c9
No known key found for this signature in database

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.15.64";
version = "5.15.67";
# 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/v5.x/linux-${version}.tar.xz";
sha256 = "0l6ylmxhk3lqz2zyqcbyhbfcq1p8i84g0p1d6x0q6yd3dy6d78f6";
sha256 = "0h7r2k59jsw8ykb2p7nxrpazbwx1n5p3nmfbbj1lhib91fldjiys";
};
} // (args.argsOverride or { }))