summary refs log tree commit diff
path: root/pkgs/development/libraries/libpointmatcher
diff options
context:
space:
mode:
authorHenry <cryptix@riseup.net>2016-09-30 12:54:09 +0200
committerHenry <cryptix@riseup.net>2016-09-30 12:54:09 +0200
commitf2123175254961c625c387f94572b68cd8c5617f (patch)
treeec88db2a4a785b828e605a4de607764822f26543 /pkgs/development/libraries/libpointmatcher
parent8b09ba32d3d42392480c9691f0964dfc934de730 (diff)
libpointmatcher: only build on linux 64bit platform
Diffstat (limited to 'pkgs/development/libraries/libpointmatcher')
-rw-r--r--pkgs/development/libraries/libpointmatcher/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libpointmatcher/default.nix b/pkgs/development/libraries/libpointmatcher/default.nix
index 96e6dca965dc0..2b8fc1fcc8f7e 100644
--- a/pkgs/development/libraries/libpointmatcher/default.nix
+++ b/pkgs/development/libraries/libpointmatcher/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
     inherit (src.meta) homepage;
     description = "An \"Iterative Closest Point\" library for 2-D/3-D mapping in robotic";
     license = licenses.bsd3;
-    platforms   = platforms.linux;
+    platforms = [ "x86_64-linux" ];
     maintainers = with maintainers; [ cryptix ];
   };
 }