From 998f42aa4898f05bc7b25d3180f5402d20b7064b Mon Sep 17 00:00:00 2001 From: James Kay Date: Fri, 16 Mar 2018 17:44:44 +0000 Subject: [PATCH] godot: restrict build platforms to [ "i686-linux" "x86_64-linux" ] --- pkgs/development/tools/godot/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/godot/default.nix b/pkgs/development/tools/godot/default.nix index 9b515511953..375638a8220 100644 --- a/pkgs/development/tools/godot/default.nix +++ b/pkgs/development/tools/godot/default.nix @@ -48,7 +48,7 @@ in stdenv.mkDerivation rec { homepage = "https://godotengine.org"; description = "Free and Open Source 2D and 3D game engine"; license = stdenv.lib.licenses.mit; - platforms = stdenv.lib.platforms.linux; + platforms = [ "i646-linux" "x86_64-linux" ]; maintainers = [ stdenv.lib.maintainers.twey ]; }; }