1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/humble/moveit-ros-control-interface/default.nix

26 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2022 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-humble-moveit-ros-control-interface";
version = "2.5.3-r1";
src = fetchurl {
url = "https://github.com/moveit/moveit2-release/archive/release/humble/moveit_ros_control_interface/2.5.3-1.tar.gz";
name = "2.5.3-1.tar.gz";
sha256 = "579605f7b444034cd50f112734288f915140c36a0c82e596ffcf05320381ec58";
};
buildType = "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; [ bsdOriginal ];
};
}