about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2022-12-01 12:44:34 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2022-12-01 12:44:34 +0100
commit16b756939be70c6967d73a52eccbfa6fbe4ef2eb (patch)
tree5dc21950c2bee9cee916edf91d5bbfb3bc108514
parentdfc8fe37709f969e930351f3a4b779ed840ac86c (diff)
springLobby: 0.270 -> 0.273
-rw-r--r--pkgs/games/spring/springlobby.nix17
1 files changed, 6 insertions, 11 deletions
diff --git a/pkgs/games/spring/springlobby.nix b/pkgs/games/spring/springlobby.nix
index 6d6a47864a065..ab792cf41a49e 100644
--- a/pkgs/games/spring/springlobby.nix
+++ b/pkgs/games/spring/springlobby.nix
@@ -1,9 +1,8 @@
 { lib
 , stdenv
 , fetchurl
-, fetchpatch
 , cmake
-, wxGTK30
+, wxGTK32
 , openal
 , pkg-config
 , curl
@@ -13,7 +12,7 @@
 , gettext
 , boost
 , libnotify
-, gtk2
+, gtk3
 , doxygen
 , spring
 , makeWrapper
@@ -26,16 +25,16 @@
 
 stdenv.mkDerivation rec {
   pname = "springlobby";
-  version = "0.270";
+  version = "0.273";
 
   src = fetchurl {
     url = "https://springlobby.springrts.com/dl/stable/springlobby-${version}.tar.bz2";
-    sha256 = "1r1g2hw9ipsmsmzbhsi7bxqra1za6x7j1kw12qzl5psqyq8rqbgs";
+    sha256 = "sha256-XkU6i6ABCgw3H9vJu0xjHRO1BglueYM1LyJxcZdOrDk=";
   };
 
   nativeBuildInputs = [ cmake pkg-config gettext doxygen makeWrapper ];
   buildInputs = [
-    wxGTK30
+    wxGTK32
     openal
     curl
     libtorrent-rasterbar
@@ -45,7 +44,7 @@ stdenv.mkDerivation rec {
     libpng
     libX11
     libnotify
-    gtk2
+    gtk3
     glib
     minizip
     alure
@@ -54,10 +53,6 @@ stdenv.mkDerivation rec {
   patches = [
     ./revert_58b423e.patch # Allows springLobby to continue using system installed spring until #707 is fixed
     ./fix-certs.patch
-    (fetchpatch {
-      url = "https://github.com/springlobby/springlobby/commit/252c4cb156c1442ed9b4faec3f26265bc7c295ff.patch";
-      sha256 = "sha256-Nq1F5fRPnCkZwl9KgrfuUmpIMK3hUOyZQYIKElWpmzU=";
-    })
   ];
 
   postInstall = ''