linux: 5.10.134 -> 5.10.135

This commit is contained in:
K900
2022-08-04 08:12:37 +03:00
parent 35e26e2fea
commit 20249152ce

View File

@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.10.134";
version = "5.10.135";
# 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 = "0s9j4zzck9880kvyb18i2ng6dc16p0dwsi95mkwdhg83vyn16dgc";
sha256 = "0i1kahv739qpyyml7d7sx306nv7gp55i5d97vlb0fryfx4dsd6g4";
};
} // (args.argsOverride or {}))