12 stdenv.mkDerivation rec {
13 pname = "libpointmatcher";
16 src = fetchFromGitHub {
17 owner = "norlab-ulaval";
18 repo = "libpointmatcher";
20 hash = "sha256-OkfWdim0JDKiBx5spYpkMyFrLQP3AMWBVDpzmFwqNFM=";
23 nativeBuildInputs = [ cmake ];
32 (lib.cmakeFeature "EIGEN_INCLUDE_DIR" "${eigen}/include/eigen3")
33 (lib.cmakeBool "BUILD_TESTS" doCheck)
39 inherit (src.meta) homepage;
40 description = "\"Iterative Closest Point\" library for 2-D/3-D mapping in robotic";
41 license = licenses.bsd3;
42 platforms = platforms.linux;
43 maintainers = with maintainers; [ cryptix ];