1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

Merge pull request #19101 from cryptix/libpointmatcher_64bitsOnly

libpointmatcher: only build on linux 64bit platform
This commit is contained in:
Joachim F 2016-09-30 13:12:26 +02:00 committed by GitHub
commit 2a53b06e06

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