treewide: disable sdl-config darwin time outs

sdl-config has an issue on hydra where it will hang when run on
Darwin. This is probably related to the headless mode that is set up &
the sdl-config program waiting for a graphical to finish.

+5
+2
pkgs/games/ball-and-paddle/default.nix
··· 38 38 maintainers = [ ]; 39 39 40 40 platforms = stdenv.lib.platforms.unix; 41 + 42 + hydraPlatforms = stdenv.lib.platforms.linux; # sdl-config times out on darwin 41 43 }; 42 44 }
+1
pkgs/games/freeciv/default.nix
··· 51 51 52 52 maintainers = with maintainers; [ pierron ]; 53 53 platforms = platforms.unix; 54 + hydraPlatforms = stdenv.lib.platforms.linux; # sdl-config times out on darwin 54 55 }; 55 56 }
+1
pkgs/games/freedink/default.nix
··· 54 54 55 55 maintainers = [ stdenv.lib.maintainers.bjg ]; 56 56 platforms = stdenv.lib.platforms.all; 57 + hydraPlatforms = stdenv.lib.platforms.linux; # sdl-config times out on darwin 57 58 }; 58 59 }
+1
pkgs/games/lbreakout2/default.nix
··· 16 16 license = licenses.gpl2; 17 17 maintainers = [ maintainers.ciil ]; 18 18 platforms = platforms.unix; 19 + hydraPlatforms = stdenv.lib.platforms.linux; # sdl-config times out on darwin 19 20 }; 20 21 }