linux: 5.15.97 -> 5.15.99

(cherry picked from commit 67ca0e5422)
This commit is contained in:
Maximilian Bosch
2023-03-10 12:19:51 +01:00
parent 824f886682
commit c022e1da3c

View File

@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.15.97";
version = "5.15.99";
# 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 = "1cxk1w43apw2b6w6r8m1magz08qzlljzn8ihn42jgamyn7sddp9c";
sha256 = "0ih3pqxv8kwc8awkd7f5cib9zdnmz6hczqfcz62s7bppjchbicwr";
};
} // (args.argsOverride or { }))