linux: 6.0.13 -> 6.0.15

This commit is contained in:
Maximilian Bosch 2022-12-23 08:14:32 +01:00
parent 734f672b67
commit f6f17ce513
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 = "6.0.13";
version = "6.0.15";
# 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/v6.x/linux-${version}.tar.xz";
sha256 = "191dlxcmbx8vy6z2k04jq2kr6hwnaknsnsyycvqnjmvmdf6i3lq8";
sha256 = "08389890gq4b9vkvrb22lzkr4blkn3a5ma074ns19gl89wyyp16l";
};
} // (args.argsOverride or { }))