libpointmatcher: only build on linux 64bit platform

This commit is contained in:
Henry 2016-09-30 12:54:09 +02:00
parent 8b09ba32d3
commit f212317525

View File

@ -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 ];
};
}