2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-07-26 13:34:25 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-cpp, moveit-configs-utils, moveit-ros-visualization, moveit-setup-framework, pluginlib, rclcpp }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-moveit-setup-app-plugins";
|
2024-10-04 13:25:33 +00:00
|
|
|
version = "2.11.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-10-04 13:25:33 +00:00
|
|
|
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_setup_app_plugins/2.11.0-1.tar.gz";
|
|
|
|
name = "2.11.0-1.tar.gz";
|
|
|
|
sha256 = "386a1b9ab0e586846182edd700f909fff0724adc93cb4ca097a81d3aa37b59a0";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
2024-07-26 13:34:25 +00:00
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
2023-05-02 16:50:22 -04:00
|
|
|
propagatedBuildInputs = [ ament-index-cpp moveit-configs-utils moveit-ros-visualization moveit-setup-framework pluginlib rclcpp ];
|
2022-12-09 19:20:15 -05:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Various specialty plugins for MoveIt Setup Assistant";
|
2023-05-02 16:50:22 -04:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
}
|