From 8a65d19e21a97100111c3c5b2ac52e6711adec96 Mon Sep 17 00:00:00 2001 From: xeji Date: Thu, 5 Apr 2018 14:10:37 +0200 Subject: [PATCH 1/2] tome4: disable parallel build ... it caused sporadic build failures --- pkgs/games/tome4/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/games/tome4/default.nix b/pkgs/games/tome4/default.nix index 83f34f5b04af..70d618a9d6a3 100644 --- a/pkgs/games/tome4/default.nix +++ b/pkgs/games/tome4/default.nix @@ -32,7 +32,8 @@ in stdenv.mkDerivation rec { libGLU openal libpng libvorbis SDL2 SDL2_ttf SDL2_image ]; - enableParallelBuilding = true; + # disable parallel building as it caused sporadic build failures + enableParallelBuilding = false; NIX_CFLAGS_COMPILE = [ "-I${SDL2_image}/include/SDL2" From 6a49d533926c6cc0ed75a4d761a6f05d9d062a55 Mon Sep 17 00:00:00 2001 From: xeji Date: Thu, 5 Apr 2018 15:10:04 +0200 Subject: [PATCH 2/2] tome4: aarch64 not supported --- pkgs/games/tome4/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/games/tome4/default.nix b/pkgs/games/tome4/default.nix index 70d618a9d6a3..19cf026933e4 100644 --- a/pkgs/games/tome4/default.nix +++ b/pkgs/games/tome4/default.nix @@ -82,6 +82,6 @@ in stdenv.mkDerivation rec { homepage = https://te4.org/; license = licenses.gpl3; maintainers = with maintainers; [ chattered peterhoeg ]; - platforms = platforms.linux; + platforms = subtractLists ["aarch64-linux"] platforms.linux; }; }