From c860e27ef22e29a19aac205942223b8dfefe90ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 19 Jan 2016 12:13:26 +0100 Subject: [PATCH] zeroad: do not build on Hydra It should be possible to build binaries without data and then compose by a wrapper, e.g. similarly to what simutrans does. --- pkgs/games/0ad/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/games/0ad/default.nix b/pkgs/games/0ad/default.nix index f9eb90f34f8..eee1d34745f 100644 --- a/pkgs/games/0ad/default.nix +++ b/pkgs/games/0ad/default.nix @@ -126,5 +126,6 @@ stdenv.mkDerivation rec { licenses.zlib # otherwise masked by pkgs.zlib ]; platforms = [ "x86_64-linux" "i686-linux" ]; + hydraPlatforms = []; # the data are too big (~1.5 GB) }; }