osu-lazer-bin: 2023.1008.0 -> 2023.1008.1

This commit upgrades the osu-lazer-bin package to version 2023.1008.1.
It addresses an issue for multiplayer crashes. The releases page for
this version can be viewed on GitHub here:
https://github.com/ppy/osu/releases/tag/2023.1008.1

Signed-off-by: spacefault <74156492+spacefault@users.noreply.github.com>
This commit is contained in:
spacefault 2023-10-15 03:12:57 -06:00
parent 969c0b5015
commit daf70eb9eb
No known key found for this signature in database
GPG Key ID: 2D8D6F15D1054CAA

View File

@ -7,21 +7,21 @@
let
pname = "osu-lazer-bin";
version = "2023.1008.0";
version = "2023.1008.1";
name = "${pname}-${version}";
osu-lazer-bin-src = {
aarch64-darwin = {
url = "https://github.com/ppy/osu/releases/download/${version}/osu.app.Apple.Silicon.zip";
sha256 = "sha256-gtXbccVrQ2edEcDR7wG2Upv4b4a64tvu+/fiKghMquM=";
sha256 = "sha256-eL5UVZqAH7Ta442xIDjaOPu3NXJmck+lS+BoD/qnOMs=";
};
x86_64-darwin = {
url = "https://github.com/ppy/osu/releases/download/${version}/osu.app.Intel.zip";
sha256 = "sha256-qo4EovNt158XXfYOek4lmil2Qwv185fLjZIaBsXzw74=";
sha256 = "sha256-x/HL73Fao11GVj7uMFpx4uOKv8Gmiy1PEgee2sP1fvg=";
};
x86_64-linux = {
url = "https://github.com/ppy/osu/releases/download/${version}/osu.AppImage";
sha256 = "sha256-aZDRwZeCC4qBNktLeD7ezbp1Bydf6mP8crtpdayUiqI=";
sha256 = "sha256-QqyymPkeRcedK75O9S0zO8DrUmPKuC7Mp4SbXT+QM9I=";
};
}.${stdenv.system} or (throw "${pname}-${version}: ${stdenv.system} is unsupported.");