libpointmatcher: only build on linux 64bit platform
This commit is contained in:
parent
8b09ba32d3
commit
f212317525
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||||
inherit (src.meta) homepage;
|
inherit (src.meta) homepage;
|
||||||
description = "An \"Iterative Closest Point\" library for 2-D/3-D mapping in robotic";
|
description = "An \"Iterative Closest Point\" library for 2-D/3-D mapping in robotic";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = platforms.linux;
|
platforms = [ "x86_64-linux" ];
|
||||||
maintainers = with maintainers; [ cryptix ];
|
maintainers = with maintainers; [ cryptix ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue