2022-07-29 14:00:58 +00:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-07-29 14:00:58 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-09-15 13:13:19 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-clang-format, ament-cmake, ament-cmake-gtest, ament-cmake-lint-cmake, ament-cmake-xmllint, ament-index-cpp, ament-lint-auto, moveit-configs-utils, moveit-resources-fanuc-moveit-config, moveit-resources-panda-moveit-config, moveit-setup-framework, pluginlib, rclcpp }:
|
2022-07-29 14:00:58 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-moveit-setup-controllers";
|
2023-09-15 13:13:19 +00:00
|
|
|
version = "2.5.5-r1";
|
2022-07-29 14:00:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-09-15 13:13:19 +00:00
|
|
|
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/humble/moveit_setup_controllers/2.5.5-1.tar.gz";
|
|
|
|
name = "2.5.5-1.tar.gz";
|
|
|
|
sha256 = "99400240b25f2755e3c4251702e1518b46326326fb56a013dc92ff44063b793c";
|
2022-07-29 14:00:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake ];
|
2023-09-15 13:13:19 +00:00
|
|
|
checkInputs = [ ament-clang-format ament-cmake-gtest ament-cmake-lint-cmake ament-cmake-xmllint ament-lint-auto moveit-configs-utils moveit-resources-fanuc-moveit-config moveit-resources-panda-moveit-config ];
|
2022-07-29 14:00:58 +00:00
|
|
|
propagatedBuildInputs = [ ament-index-cpp moveit-setup-framework pluginlib rclcpp ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''MoveIt Setup Steps for ROS 2 Control'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|