linux: 5.18.18 -> 5.18.19

(cherry picked from commit b0a84e1b65)
This commit is contained in:
Maximilian Bosch
2022-08-23 15:18:33 +02:00
committed by github-actions[bot]
parent cfc26d35a1
commit 9e04dccaf5

View File

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