summary refs log tree commit diff
path: root/pkgs/games/ezquake
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2018-07-03 12:44:18 +0000
committerOrivej Desh <orivej@gmx.fr>2018-07-03 12:44:57 +0000
commit1a76bd555271a04aab75e8e90ef6e42d9fec7dcd (patch)
tree09227bc5be3521a2e131a858623dba0058a08b66 /pkgs/games/ezquake
parentad836e1b13048b1c6ae83049fd97f2dbbf5f5169 (diff)
downloadnixpkgs-1a76bd555271a04aab75e8e90ef6e42d9fec7dcd.tar
nixpkgs-1a76bd555271a04aab75e8e90ef6e42d9fec7dcd.tar.gz
nixpkgs-1a76bd555271a04aab75e8e90ef6e42d9fec7dcd.tar.bz2
nixpkgs-1a76bd555271a04aab75e8e90ef6e42d9fec7dcd.tar.lz
nixpkgs-1a76bd555271a04aab75e8e90ef6e42d9fec7dcd.tar.xz
nixpkgs-1a76bd555271a04aab75e8e90ef6e42d9fec7dcd.tar.zst
nixpkgs-1a76bd555271a04aab75e8e90ef6e42d9fec7dcd.zip
ezquake: fix build after #41902
Diffstat (limited to 'pkgs/games/ezquake')
-rw-r--r--pkgs/games/ezquake/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/games/ezquake/default.nix b/pkgs/games/ezquake/default.nix
index 2684a56a828..ff39d1b9965 100644
--- a/pkgs/games/ezquake/default.nix
+++ b/pkgs/games/ezquake/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchFromGitHub, curl, expat
-, jansson, libpng, libjpeg, libGLU_combined, pcre
+, jansson, libpng, libjpeg, libGLU_combined, libXxf86vm, pcre
 , pkgconfig, SDL2, vimNox }:
 
 stdenv.mkDerivation rec {
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [
-    expat curl jansson libpng libjpeg libGLU_combined pcre SDL2 vimNox
+    expat curl jansson libpng libjpeg libGLU_combined libXxf86vm pcre SDL2 vimNox
   ];
 
   installPhase = with stdenv.lib; let
@@ -28,6 +28,8 @@ stdenv.mkDerivation rec {
     mv ezquake-${sys}-${arch} $out/bin/ezquake
   '';
 
+  enableParallelBuilding = true;
+
   meta = with stdenv.lib; {
     homepage = http://ezquake.github.io/;
     description = "A modern QuakeWorld client focused on competitive online play.";