about summary refs log tree commit diff
path: root/pkgs/games/vintagestory
diff options
context:
space:
mode:
authorJack Connors <jack.connors@protonmail.com>2023-08-05 04:17:29 +0100
committerJack Connors <jack.connors@protonmail.com>2023-08-05 04:17:29 +0100
commitd59a43bdb3dcef174d8a3e7081909609cdad102d (patch)
tree903ff0e476db7ac2cb981f49fde75bd99a3712dc /pkgs/games/vintagestory
parent92fceb3cc29fe818d5d1c4d71de5c095818a9434 (diff)
vintagestory: 1.18.6 -> 1.18.7
see: https://www.vintagestory.at/blog.html/news/v1187-thatll-buff-it-out-r361/
also updates the experimental version to 1.18.8-rc.1 (this is effectively the same as 1.18.7 but built on dotnet7) see: https://www.vintagestory.at/blog.html/news/v1188-rc1-the-plunge-to-net7-r362/
Diffstat (limited to 'pkgs/games/vintagestory')
-rw-r--r--pkgs/games/vintagestory/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/games/vintagestory/default.nix b/pkgs/games/vintagestory/default.nix
index 40b3e1077248f..e7ab08384067e 100644
--- a/pkgs/games/vintagestory/default.nix
+++ b/pkgs/games/vintagestory/default.nix
@@ -22,19 +22,19 @@
 
 stdenv.mkDerivation rec {
   pname = "vintagestory";
-  version = if experimental then "1.18.6" else "1.18.6";
+  version = if experimental then "1.18.8-rc.1" else "1.18.7";
 
   src =
     if experimental
     then
       (fetchurl {
-        url = "https://cdn.vintagestory.at/gamefiles/net7/vs_client_linux-x64_${version}.tar.gz";
-        sha256 = "sha256-h4TyMDFid3eB6oPJix92/tmS0v+Ox6CFSRyn/JRNbxg=";
+        url = "https://cdn.vintagestory.at/gamefiles/unstable/vs_client_linux-x64_${version}.tar.gz";
+        hash = "sha256-FxyAJTiLENTp5QxPKRgsiOhkMXz88CTn3QRvIHtOH+A=";
       })
     else
       (fetchurl {
         url = "https://cdn.vintagestory.at/gamefiles/stable/vs_archive_${version}.tar.gz";
-        sha256 = "sha256-Sa5R/Msg36pKRpZJXXJgM4lcCADJX9x81fMnTD3tjAI=";
+        hash = "sha256-geJoNxBxODXQeTExLdTOaH84asjo2yg2xFm8Pj0IMc0=";
       });