linux: 5.15.79 -> 5.15.80

This commit is contained in:
Maximilian Bosch 2022-11-27 10:09:50 +01:00
parent 42edd9f2e9
commit 9f5b441bf4
No known key found for this signature in database
GPG Key ID: 9A6EEA275CA5BE0A

View File

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