2022-07-29 14:00:58 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-07-29 14:00:58 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-clang-format, ament-cmake, ament-cmake-lint-cmake, ament-cmake-xmllint, ament-index-cpp, ament-lint-auto, moveit-common, moveit-core, moveit-ros-planning, moveit-ros-visualization, pluginlib, rclcpp, rviz-common, rviz-rendering, srdfdom, urdf }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-moveit-setup-framework";
|
2025-04-25 13:38:11 +00:00
|
|
|
version = "2.5.9-r1";
|
2022-07-29 14:00:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-04-25 13:38:11 +00:00
|
|
|
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/humble/moveit_setup_framework/2.5.9-1.tar.gz";
|
|
|
|
name = "2.5.9-1.tar.gz";
|
|
|
|
sha256 = "a38ebbe9a13023ff7f08deed35932631130ef2912e781a470678dc90746fc1cc";
|
2022-07-29 14:00:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake ];
|
2022-07-29 14:00:58 +00:00
|
|
|
checkInputs = [ ament-clang-format ament-cmake-lint-cmake ament-cmake-xmllint ament-lint-auto ];
|
|
|
|
propagatedBuildInputs = [ ament-index-cpp moveit-common moveit-core moveit-ros-planning moveit-ros-visualization pluginlib rclcpp rviz-common rviz-rendering srdfdom urdf ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "C++ Interface for defining setup steps for MoveIt Setup Assistant";
|
2022-07-29 14:00:58 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|