linux: 5.15.77 -> 5.15.78

This commit is contained in:
Bernardo Meurer 2022-11-10 18:16:05 -05:00
parent c22e3c9840
commit 164aecb6ca
No known key found for this signature in database

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.15.77";
version = "5.15.78";
# 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 = "1yg9myqcv4kn2p7c9ap0z6xxh2qjsab2nbxf5z388skr6cgq8bql";
sha256 = "16d4d4g5n2g6jpp8bvad1bm1l0b0nb4ckwsmq6w2g3538xrrzf8d";
};
} // (args.argsOverride or { }))