linux: 5.15.81 -> 5.15.82

This commit is contained in:
Bernardo Meurer 2022-12-08 13:49:48 -03:00
parent 1c008e6a66
commit 6b0253df6a
No known key found for this signature in database

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