2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-03-22 13:05:17 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, boost, cmake, eigen, libnabo, yaml-cpp }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-libpointmatcher";
|
2024-03-22 13:05:17 +00:00
|
|
|
version = "1.4.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-22 13:05:17 +00:00
|
|
|
url = "https://github.com/ros2-gbp/libpointmatcher-release/archive/release/rolling/libpointmatcher/1.4.1-1.tar.gz";
|
|
|
|
name = "1.4.1-1.tar.gz";
|
|
|
|
sha256 = "c9e9635505876483aa54fc78a6557a2e08b69a991dc5e6e1f9783da9fd104e78";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ cmake ];
|
2024-03-22 13:05:17 +00:00
|
|
|
propagatedBuildInputs = [ boost eigen libnabo yaml-cpp ];
|
2022-12-09 19:20:15 -05:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "libpointmatcher is a modular ICP library, useful for robotics and computer vision.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|