2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-12-27 13:14:54 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, eigen, eigen3-cmake-module, geometric-shapes, moveit-common, moveit-core, moveit-msgs, octomap, pluginlib, rclcpp, tf2-ros }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-moveit-ros-occupancy-map-monitor";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "2.12.1-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/jazzy/moveit_ros_occupancy_map_monitor/2.12.1-1.tar.gz";
|
|
|
|
name = "2.12.1-1.tar.gz";
|
|
|
|
sha256 = "6e00771b076bd7d47e1765bef0000455db4f9adbaa413bf8aab0db409841acd5";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
2024-07-26 13:34:25 +00:00
|
|
|
checkInputs = [ ament-cmake-gmock ];
|
2024-12-27 13:14:54 +00:00
|
|
|
propagatedBuildInputs = [ eigen eigen3-cmake-module geometric-shapes moveit-common moveit-core moveit-msgs octomap pluginlib rclcpp tf2-ros ];
|
2024-05-24 14:00:52 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake eigen3-cmake-module ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Components of MoveIt connecting to occupancy map";
|
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|