2024-07-26 13:34:25 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-09-13 14:15:34 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, mp2p-icp, mrpt-libgui, mrpt-libmaps, mrpt-libobs, mrpt-libros-bridge, nav-msgs, rclcpp, rclcpp-components, sensor-msgs, tf2, tf2-geometry-msgs }:
|
2024-07-26 13:34:25 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-mrpt-pointcloud-pipeline";
|
2024-09-13 14:15:34 +00:00
|
|
|
version = "2.1.1-r1";
|
2024-07-26 13:34:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-09-13 14:15:34 +00:00
|
|
|
url = "https://github.com/ros2-gbp/mrpt_navigation-release/archive/release/humble/mrpt_pointcloud_pipeline/2.1.1-1.tar.gz";
|
|
|
|
name = "2.1.1-1.tar.gz";
|
|
|
|
sha256 = "d947919026911d16aafe791fa418e867909a76957e701914987583dbcdf6c5af";
|
2024-07-26 13:34:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
2024-09-13 14:15:34 +00:00
|
|
|
propagatedBuildInputs = [ ament-lint-auto ament-lint-common mp2p-icp mrpt-libgui mrpt-libmaps mrpt-libobs mrpt-libros-bridge nav-msgs rclcpp rclcpp-components sensor-msgs tf2 tf2-geometry-msgs ];
|
2024-07-26 13:34:25 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Maintains a local obstacle map from recent sensor readings, including optional point cloud pipeline filtering or processing.";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|