about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorspacefault <74156492+spacefault@users.noreply.github.com>2023-11-30 16:12:34 -0700
committerspacefault <74156492+spacefault@users.noreply.github.com>2023-11-30 16:12:34 -0700
commit602e6247733f42e8aa55233be791628055ff0cf6 (patch)
tree483e7298f5bd26b829b6627d411c42751c6aef9e /pkgs/games
parentfff948c388b3f036e3806f288305c068366e9975 (diff)
downloadnixlib-602e6247733f42e8aa55233be791628055ff0cf6.tar
nixlib-602e6247733f42e8aa55233be791628055ff0cf6.tar.gz
nixlib-602e6247733f42e8aa55233be791628055ff0cf6.tar.bz2
nixlib-602e6247733f42e8aa55233be791628055ff0cf6.tar.lz
nixlib-602e6247733f42e8aa55233be791628055ff0cf6.tar.xz
nixlib-602e6247733f42e8aa55233be791628055ff0cf6.tar.zst
nixlib-602e6247733f42e8aa55233be791628055ff0cf6.zip
osu-lazer-bin: 2023.1114.1 -> 2023.1130.0
This commit updates osu-lazer-bin from version 2023.1114.1 to
2023.1130.0. The changelogs for this update can be viewed here:
https://github.com/ppy/osu/releases/tag/2023.1130.0
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/osu-lazer/bin.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/games/osu-lazer/bin.nix b/pkgs/games/osu-lazer/bin.nix
index f28a702933e9..16f1b122ec8d 100644
--- a/pkgs/games/osu-lazer/bin.nix
+++ b/pkgs/games/osu-lazer/bin.nix
@@ -7,22 +7,22 @@
 
 let
   pname = "osu-lazer-bin";
-  version = "2023.1114.1";
+  version = "2023.1130.0";
 
   src = {
     aarch64-darwin = fetchzip {
       url = "https://github.com/ppy/osu/releases/download/${version}/osu.app.Apple.Silicon.zip";
-      hash = "sha256-MQkHbodSkAQQpjaBP+Q35afcCrgcie6UoUldc+vjRA0=";
+      hash = "sha256-7lQVc517QEtQDdSF5FxR+kgw1TVpr8H3whzURelABIY=";
       stripRoot = false;
     };
     x86_64-darwin = fetchzip {
       url = "https://github.com/ppy/osu/releases/download/${version}/osu.app.Intel.zip";
-      hash = "sha256-40ylXbn9jV9v+ve1hFwhT5/jhzNfWHjL2WIplVUD2qk=";
+      hash = "sha256-BOpW8QP4TLKzdTDnjjT/t4k+3Q2w2MWA0IDnXH+/mBU=";
       stripRoot = false;
     };
     x86_64-linux = fetchurl {
       url = "https://github.com/ppy/osu/releases/download/${version}/osu.AppImage";
-      hash = "sha256-Q2z2Js0Zc9nvyQNxzLuuV7TcwiNIRo+RMRER6ZYgh74=";
+      hash = "sha256-dQuyKjCZaIl3uaI81qRMt5NzBxfmyROVbJrVAqzuZxg=";
     };
   }.${stdenv.system} or (throw "${pname}-${version}: ${stdenv.system} is unsupported.");