1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/jazzy/moveit-ros-occupancy-map-monitor/default.nix

27 lines
1.1 KiB
Nix
Raw Permalink Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ 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 }:
buildRosPackage {
pname = "ros-jazzy-moveit-ros-occupancy-map-monitor";
version = "2.12.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/jazzy/moveit_ros_occupancy_map_monitor/2.12.3-1.tar.gz";
name = "2.12.3-1.tar.gz";
sha256 = "271da7aca563fefa9156554b3f7f918f4d1a2ffefc70f1128850c1874264adc2";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gmock ];
propagatedBuildInputs = [ eigen eigen3-cmake-module geometric-shapes moveit-common moveit-core moveit-msgs octomap pluginlib rclcpp tf2-ros ];
nativeBuildInputs = [ ament-cmake eigen3-cmake-module ];
meta = {
description = "Components of MoveIt connecting to occupancy map";
license = with lib.licenses; [ bsd3 ];
};
}