From 6885a051926236178afe91e4f993fe15f6f6e1d7 Mon Sep 17 00:00:00 2001
From: Maximilian Bosch <maximilian@mbosch.me>
Date: Mon, 30 Dec 2019 18:31:59 +0100
Subject: [PATCH] rx: restrict builds to x86 targets

---
 pkgs/applications/graphics/rx/default.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkgs/applications/graphics/rx/default.nix b/pkgs/applications/graphics/rx/default.nix
index 434f3abf4190..cc5d00d64ecc 100644
--- a/pkgs/applications/graphics/rx/default.nix
+++ b/pkgs/applications/graphics/rx/default.nix
@@ -40,6 +40,6 @@ rustPlatform.buildRustPackage rec {
     homepage = "https://cloudhead.io/rx/";
     license = licenses.gpl3;
     maintainers = with maintainers; [ minijackson filalex77 ];
-    platforms = platforms.all;
+    platforms = [ "x86_64-linux" ];
   };
 }