Merge pull request #189655 from azahi/fix/openspades

openspades: fix build

authored by superherointj and committed by GitHub af4d7ff0 65bb4b6d

+3 -3
+3 -3
pkgs/games/openspades/default.nix
··· 1 1 { lib, stdenv, fetchurl, fetchFromGitHub, fetchpatch, cmake, unzip, zip, file 2 2 , curl, glew , libGL, SDL2, SDL2_image, zlib, freetype, imagemagick 3 3 , openal , opusfile, libogg 4 - , Cocoa 4 + , Cocoa, libXext 5 5 }: 6 6 7 7 stdenv.mkDerivation rec { ··· 19 19 nativeBuildInputs = [ cmake imagemagick unzip zip file ]; 20 20 21 21 buildInputs = [ 22 - freetype SDL2 SDL2_image libGL zlib curl glew opusfile openal libogg 22 + freetype SDL2 SDL2_image libGL zlib curl glew opusfile openal libogg libXext 23 23 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 24 24 Cocoa 25 25 ]; ··· 63 63 homepage = "https://github.com/yvt/openspades/"; 64 64 license = licenses.gpl3; 65 65 platforms = platforms.all; 66 - maintainers = with maintainers; [ abbradar ]; 66 + maintainers = with maintainers; [ abbradar azahi ]; 67 67 }; 68 68 }