Skip to content

Commit

Permalink
ezquake: 3.2.3 -> 3.6.2 (#226174)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
3 people authored Jul 17, 2023
1 parent aa90c57 commit a6aae55
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions pkgs/games/ezquake/default.nix
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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;
Expand Down

0 comments on commit a6aae55

Please sign in to comment.