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