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-ros-visualization, moveit-setup-framework, pluginlib, rclcpp, srdfdom, urdf }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-moveit-setup-core-plugins";
|
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_core_plugins/2.5.9-1.tar.gz";
|
|
|
|
name = "2.5.9-1.tar.gz";
|
|
|
|
sha256 = "712fbf673a7886a25c267366f1aefd3671329c48075bc2cd6d759faf527aced8";
|
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-ros-visualization moveit-setup-framework pluginlib rclcpp srdfdom urdf ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Core (meta) plugins for MoveIt Setup Assistant";
|
2022-07-29 14:00:58 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|