summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorNot-Leader <73873702+Not-Leader@users.noreply.github.com>2023-07-17 19:35:23 +0000
committerGitHub <noreply@github.com>2023-07-17 21:35:23 +0200
commita6aae555e2ae851ccf86c2b18df693258b0a35de (patch)
tree8eacc83d1c125e8b8c0777635c81ce3833512d55 /pkgs/games
parentaa90c57672a17d0fff5e3a92cfdc91aee573e13a (diff)
downloadnixpkgs-a6aae555e2ae851ccf86c2b18df693258b0a35de.tar
nixpkgs-a6aae555e2ae851ccf86c2b18df693258b0a35de.tar.gz
nixpkgs-a6aae555e2ae851ccf86c2b18df693258b0a35de.tar.bz2
nixpkgs-a6aae555e2ae851ccf86c2b18df693258b0a35de.tar.lz
nixpkgs-a6aae555e2ae851ccf86c2b18df693258b0a35de.tar.xz
nixpkgs-a6aae555e2ae851ccf86c2b18df693258b0a35de.tar.zst
nixpkgs-a6aae555e2ae851ccf86c2b18df693258b0a35de.zip
ezquake: 3.2.3 -> 3.6.2 (#226174)
* ezquake: 3.2.3 -> 3.6.2

https://github.com/QW-Group/ezquake-source/releases/tag/3.6.2

* use https link for ezquake

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

* rename sha256 to hash and reorder it with fetchSubmodules

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

---------

Co-authored-by: not-leader <not-leader1@outlook.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/ezquake/default.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/pkgs/games/ezquake/default.nix b/pkgs/games/ezquake/default.nix
index 90ddb6d6452..e9b173909a8 100644
--- a/pkgs/games/ezquake/default.nix
+++ b/pkgs/games/ezquake/default.nix
@@ -1,21 +1,23 @@
 { lib, stdenv, fetchFromGitHub, curl, expat
-, jansson, libpng, libjpeg, libGLU, libGL, libXxf86vm, pcre
-, pkg-config, SDL2, vim, speex }:
+, jansson, libpng, libjpeg, libGLU, libGL
+, libsndfile, libXxf86vm, pcre, pkg-config, SDL2
+, vim, speex }:
 
 stdenv.mkDerivation rec {
   pname = "ezquake";
-  version = "3.2.3";
+  version = "3.6.2";
 
   src = fetchFromGitHub {
-    owner = "ezQuake";
+    owner = "QW-Group";
     repo = pname + "-source";
     rev = version;
-    sha256 = "sha256-EBhKmoX11JavTG6tPfg15FY2lqOFfzSDg3058OWfcYQ=";
+    fetchSubmodules = true;
+    hash = "sha256-mi/VDSZ+ybEAaZOhBGh/cSnrRUAB/h+WQZ4Aml0UfW4=";
   };
 
   nativeBuildInputs = [ pkg-config ];
   buildInputs = [
-    expat curl jansson libpng libjpeg libGLU libGL libXxf86vm pcre SDL2 vim speex
+    expat curl jansson libpng libjpeg libGLU libGL libsndfile libXxf86vm pcre SDL2 vim speex
   ];
 
   installPhase = with lib; let
@@ -30,7 +32,7 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   meta = with lib; {
-    homepage = "http://ezquake.github.io/";
+    homepage = "https://ezquake.com/";
     description = "A modern QuakeWorld client focused on competitive online play";
     license = licenses.gpl2;
     platforms = platforms.linux;