nix-ros-overlay/distros/rolling/moveit-setup-controllers/default.nix

27 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ 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 }:
buildRosPackage {
pname = "ros-rolling-moveit-setup-controllers";
version = "2.9.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_setup_controllers/2.9.0-2.tar.gz";
name = "2.9.0-2.tar.gz";
sha256 = "88f08dc59e61298f3a8b192cd24cadd1cac25a371c8d7c7d96621249098cc25a";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
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 ];
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; [ bsd3 ];
};
}