linux: 5.15.81 -> 5.15.82

(cherry picked from commit 6b0253df6a)
This commit is contained in:
Bernardo Meurer
2022-12-08 13:49:48 -03:00
committed by github-actions[bot]
parent 2dd08ee3a9
commit 6ea3d9deef

View File

@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.15.81";
version = "5.15.82";
# 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;
@@ -15,6 +15,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
sha256 = "1awny3lgfkh5n2gdksajbyzips8kawz6rkr0p5inwkbmppg5r24g";
sha256 = "0r8v7113favmch2x6br7jk6idihza99l9qyd7ik99i5sg6xzdvpw";
};
} // (args.argsOverride or { }))