about summary refs log tree commit diff
path: root/pkgs/games/openspades/default.nix
diff options
context:
space:
mode:
authorAzat Bahawi <azat@bahawi.net>2022-09-04 01:22:11 +0300
committerAzat Bahawi <azat@bahawi.net>2022-09-04 01:22:11 +0300
commitd4cbef6968c6e7a8d1ead165fd9a78b21d751a3d (patch)
treefee9aa93ec3d8071e3715f615eede4b848d17eee /pkgs/games/openspades/default.nix
parent7739d3ac375723b4ab48fb8d6a22662efccd4eab (diff)
openspades: fix build
Diffstat (limited to 'pkgs/games/openspades/default.nix')
-rw-r--r--pkgs/games/openspades/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/openspades/default.nix b/pkgs/games/openspades/default.nix
index 488301a1b555b..3ec209d22b253 100644
--- a/pkgs/games/openspades/default.nix
+++ b/pkgs/games/openspades/default.nix
@@ -1,7 +1,7 @@
 { lib, stdenv, fetchurl, fetchFromGitHub, fetchpatch, cmake, unzip, zip, file
 , curl, glew , libGL, SDL2, SDL2_image, zlib, freetype, imagemagick
 , openal , opusfile, libogg
-, Cocoa
+, Cocoa, libXext
 }:
 
 stdenv.mkDerivation rec {
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ cmake imagemagick unzip zip file ];
 
   buildInputs = [
-    freetype SDL2 SDL2_image libGL zlib curl glew opusfile openal libogg
+    freetype SDL2 SDL2_image libGL zlib curl glew opusfile openal libogg libXext
   ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
     Cocoa
   ];
@@ -63,6 +63,6 @@ stdenv.mkDerivation rec {
     homepage    = "https://github.com/yvt/openspades/";
     license     = licenses.gpl3;
     platforms   = platforms.all;
-    maintainers = with maintainers; [ abbradar ];
+    maintainers = with maintainers; [ abbradar azahi ];
   };
 }