summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/SDL2_ttf
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-06-06 19:18:00 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2018-06-06 19:19:30 -0400
commit08c6c6beb46be071202c3973e4f2f2959af13c93 (patch)
tree4551e750e71ff1089c5a53cfbdbb3298717e3efb /pkgs/development/libraries/SDL2_ttf
parentdfc4744afd82b2d26a8df71b05ffacf05230af50 (diff)
SDL2: disable sdltest on darwin
Darwin headless will hang when trying to run the SDL test program.
Diffstat (limited to 'pkgs/development/libraries/SDL2_ttf')
-rw-r--r--pkgs/development/libraries/SDL2_ttf/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/SDL2_ttf/default.nix b/pkgs/development/libraries/SDL2_ttf/default.nix
index 4558317ce3e3..a21315fdc882 100644
--- a/pkgs/development/libraries/SDL2_ttf/default.nix
+++ b/pkgs/development/libraries/SDL2_ttf/default.nix
@@ -9,6 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "0xljwcpvd2knrjdfag5b257xqayplz55mqlszrqp0kpnphh5xnrl";
};
+ configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-sdltest";
+
buildInputs = [ SDL2 freetype libGL ]
++ stdenv.lib.optional stdenv.isDarwin darwin.libobjc;