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:
commit
2a53b06e06
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue