1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/humble/mrpt-pointcloud-pipeline/default.nix

26 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ 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 }:
buildRosPackage {
pname = "ros-humble-mrpt-pointcloud-pipeline";
version = "2.1.1-r1";
src = fetchurl {
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";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
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 ];
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 ];
};
}