nix-ros-overlay/distros/rolling/moveit-ros-control-interface/default.nix

27 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, controller-manager-msgs, moveit-common, moveit-core, moveit-simple-controller-manager, pluginlib, rclcpp-action, trajectory-msgs }:
buildRosPackage {
pname = "ros-rolling-moveit-ros-control-interface";
version = "2.9.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_ros_control_interface/2.9.0-2.tar.gz";
name = "2.9.0-2.tar.gz";
sha256 = "692d5aa0159807c3df081a6e87196a12769bf9cf9d517637574f50399bd668db";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ controller-manager-msgs moveit-common moveit-core moveit-simple-controller-manager pluginlib rclcpp-action trajectory-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''ros_control controller manager interface for MoveIt'';
license = with lib.licenses; [ bsd3 ];
};
}