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
@@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
buildInputs = [ SDL ] ;
configureFlags = [ "--disable-mmx" ];
configureFlags = [ "--disable-mmx" ]
++ stdenv.lib.optional stdenv.isDarwin "--disable-sdltest";
meta = with stdenv.lib; {
description = "SDL graphics drawing primitives and support functions";