summary refs log tree commit diff
path: root/pkgs/development/libraries/vc
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-03-24 02:21:46 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-03-24 02:21:46 +0200
commitc58c1f3b501731e3289fdae387b1c875c4e9cc8e (patch)
tree5ac4882d9145074934b065c0d68ef510c7494b9c /pkgs/development/libraries/vc
parentb84fab8a30fbf8ccd1a2e25f9423d9c564da7acf (diff)
downloadnixpkgs-c58c1f3b501731e3289fdae387b1c875c4e9cc8e.tar
nixpkgs-c58c1f3b501731e3289fdae387b1c875c4e9cc8e.tar.gz
nixpkgs-c58c1f3b501731e3289fdae387b1c875c4e9cc8e.tar.bz2
nixpkgs-c58c1f3b501731e3289fdae387b1c875c4e9cc8e.tar.lz
nixpkgs-c58c1f3b501731e3289fdae387b1c875c4e9cc8e.tar.xz
nixpkgs-c58c1f3b501731e3289fdae387b1c875c4e9cc8e.tar.zst
nixpkgs-c58c1f3b501731e3289fdae387b1c875c4e9cc8e.zip
vc: Broken on i686
http://hydra.nixos.org/build/33122230/nixlog/1/raw =>

CMake Error at CMakeLists.txt:163 (message):
  Unsupported target architecture 'i686'.  No support_???.cpp file exists for
  this architecture.
Diffstat (limited to 'pkgs/development/libraries/vc')
-rw-r--r--pkgs/development/libraries/vc/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/vc/default.nix b/pkgs/development/libraries/vc/default.nix
index f73f35a2376..e61c3a47ff1 100644
--- a/pkgs/development/libraries/vc/default.nix
+++ b/pkgs/development/libraries/vc/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
     description = "Library for multiprecision complex arithmetic with exact rounding";
     homepage = https://github.com/VcDevel/Vc;
     license = licenses.bsd3;
-    platforms = platforms.all;
+    platforms = [ "x86_64-linux" "x86_64-darwin" ];
     maintainers = with maintainers; [ abbradar ];
   };
 }