summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-06-23 17:46:07 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2018-06-23 17:50:00 -0400
commit6127ec1665cb99c9ecb5a31ae040f7942e007eaa (patch)
tree559dde9ae6298f1956e0b090596600f75960ad10 /pkgs/games
parente09861f11f545a9449bbfc4a22fbe1d5796438b0 (diff)
downloadnixpkgs-6127ec1665cb99c9ecb5a31ae040f7942e007eaa.tar
nixpkgs-6127ec1665cb99c9ecb5a31ae040f7942e007eaa.tar.gz
nixpkgs-6127ec1665cb99c9ecb5a31ae040f7942e007eaa.tar.bz2
nixpkgs-6127ec1665cb99c9ecb5a31ae040f7942e007eaa.tar.lz
nixpkgs-6127ec1665cb99c9ecb5a31ae040f7942e007eaa.tar.xz
nixpkgs-6127ec1665cb99c9ecb5a31ae040f7942e007eaa.tar.zst
nixpkgs-6127ec1665cb99c9ecb5a31ae040f7942e007eaa.zip
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.
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/ball-and-paddle/default.nix2
-rw-r--r--pkgs/games/freeciv/default.nix1
-rw-r--r--pkgs/games/freedink/default.nix1
-rw-r--r--pkgs/games/lbreakout2/default.nix1
4 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/games/ball-and-paddle/default.nix b/pkgs/games/ball-and-paddle/default.nix
index dbd2814a6fb..1391ca70223 100644
--- a/pkgs/games/ball-and-paddle/default.nix
+++ b/pkgs/games/ball-and-paddle/default.nix
@@ -38,5 +38,7 @@ stdenv.mkDerivation rec {
     maintainers = [ ];
 
     platforms = stdenv.lib.platforms.unix;
+
+    hydraPlatforms = stdenv.lib.platforms.linux; # sdl-config times out on darwin
   };
 }
diff --git a/pkgs/games/freeciv/default.nix b/pkgs/games/freeciv/default.nix
index ee93d162396..8003468f50f 100644
--- a/pkgs/games/freeciv/default.nix
+++ b/pkgs/games/freeciv/default.nix
@@ -51,5 +51,6 @@ stdenv.mkDerivation {
 
     maintainers = with maintainers; [ pierron ];
     platforms = platforms.unix;
+    hydraPlatforms = stdenv.lib.platforms.linux; # sdl-config times out on darwin
   };
 }
diff --git a/pkgs/games/freedink/default.nix b/pkgs/games/freedink/default.nix
index c1bfda9e2f2..d5efe2b3ebd 100644
--- a/pkgs/games/freedink/default.nix
+++ b/pkgs/games/freedink/default.nix
@@ -54,5 +54,6 @@ in stdenv.mkDerivation rec {
 
     maintainers = [ stdenv.lib.maintainers.bjg ];
     platforms = stdenv.lib.platforms.all;
+    hydraPlatforms = stdenv.lib.platforms.linux; # sdl-config times out on darwin
   };
 }
diff --git a/pkgs/games/lbreakout2/default.nix b/pkgs/games/lbreakout2/default.nix
index 5ab9954739b..b5f858b99ad 100644
--- a/pkgs/games/lbreakout2/default.nix
+++ b/pkgs/games/lbreakout2/default.nix
@@ -16,5 +16,6 @@ stdenv.mkDerivation rec {
     license = licenses.gpl2;
     maintainers = [ maintainers.ciil ];
     platforms = platforms.unix;
+    hydraPlatforms = stdenv.lib.platforms.linux; # sdl-config times out on darwin
   };
 }