summary refs log tree commit diff
path: root/pkgs/development/libraries/gaia
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-11-16 15:14:24 +0100
committerGitHub <noreply@github.com>2019-11-16 15:14:24 +0100
commitbc77ec7e560672ff9f8a5b5e60f228818d230d4b (patch)
treec6d93d5c55a35bf20c84eafdb0ba9a7544e17821 /pkgs/development/libraries/gaia
parentefd3b451e8ced50999a0a0614950f9c35e3654e2 (diff)
downloadnixpkgs-bc77ec7e560672ff9f8a5b5e60f228818d230d4b.tar
nixpkgs-bc77ec7e560672ff9f8a5b5e60f228818d230d4b.tar.gz
nixpkgs-bc77ec7e560672ff9f8a5b5e60f228818d230d4b.tar.bz2
nixpkgs-bc77ec7e560672ff9f8a5b5e60f228818d230d4b.tar.lz
nixpkgs-bc77ec7e560672ff9f8a5b5e60f228818d230d4b.tar.xz
nixpkgs-bc77ec7e560672ff9f8a5b5e60f228818d230d4b.tar.zst
nixpkgs-bc77ec7e560672ff9f8a5b5e60f228818d230d4b.zip
gaia: restrict to X86 platforms
ARM Hydra build keeps failing
Diffstat (limited to 'pkgs/development/libraries/gaia')
-rw-r--r--pkgs/development/libraries/gaia/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/gaia/default.nix b/pkgs/development/libraries/gaia/default.nix
index 9411f76908e..c8c0b8c6800 100644
--- a/pkgs/development/libraries/gaia/default.nix
+++ b/pkgs/development/libraries/gaia/default.nix
@@ -79,7 +79,7 @@ stdenv.mkDerivation rec {
     homepage = "https://github.com/MTG/gaia";
     description = "General library to work with points in a semimetric space";
     maintainers = with maintainers; [ doronbehar ];
-    platforms = platforms.all;
+    platforms = platforms.x86; # upstream assume SSE2 / fails on ARM
     license = licenses.agpl3;
   };
 }