linux: 5.10.149 -> 5.10.150

This commit is contained in:
Bernardo Meurer 2022-10-26 18:20:52 +01:00
parent ec3c885adf
commit 2fd2030e1e
No known key found for this signature in database

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.10.149";
version = "5.10.150";
# 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 = "1lv5q0m24ccbiqywy03s9s3wyxzm0v7f691rag89qfsn6z2k8q8g";
sha256 = "1qfyfhyz0b078qp2m14cxldx0m1mlfx2gdp4dnrbxc3hblybq4sq";
};
} // (args.argsOverride or {}))