linux: 5.15.83 -> 5.15.85

This commit is contained in:
Maximilian Bosch
2022-12-23 08:14:10 +01:00
parent 600ca141de
commit a464cfcb36

View File

@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.15.83";
version = "5.15.85";
# 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 = "1wvzfhzqq9dps508wmp2gblfz93ipppnjzqm0n8pi1acq11hhna0";
sha256 = "024qhjh9mgfnanr1qd8002n6a4wpn98lajli12a0m3n9z8lsw2rc";
};
} // (args.argsOverride or { }))