From d59a43bdb3dcef174d8a3e7081909609cdad102d Mon Sep 17 00:00:00 2001 From: Jack Connors Date: Sat, 5 Aug 2023 04:17:29 +0100 Subject: [PATCH] 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/ --- pkgs/games/vintagestory/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/games/vintagestory/default.nix b/pkgs/games/vintagestory/default.nix index 40b3e1077248..e7ab08384067 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="; });