SDL: try disabling sdltest on darwin

This commit is contained in:
Matthew Bauer
2017-11-10 19:22:15 -06:00
parent cd722e1678
commit e19434b402
5 changed files with 11 additions and 2 deletions
@@ -12,7 +12,9 @@ stdenv.mkDerivation rec {
buildInputs = [ SDL libogg libvorbis fluidsynth smpeg ];
configureFlags = [ "--disable-music-ogg-shared" ] ++ lib.optional enableNativeMidi " --enable-music-native-midi-gpl";
configureFlags = [ "--disable-music-ogg-shared" ]
++ lib.optional enableNativeMidi " --enable-music-native-midi-gpl"
++ lib.optional stdenv.isDarwin "--disable-sdltest";
meta = with stdenv.lib; {
description = "SDL multi-channel audio mixer library";