nix-ros-overlay/distros/rolling/moveit-simple-controller-manager/default.nix

25 lines
934 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, control-msgs, moveit-common, moveit-core, pluginlib, rclcpp, rclcpp-action }:
buildRosPackage {
pname = "ros-rolling-moveit-simple-controller-manager";
version = "2.13.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_simple_controller_manager/2.13.2-1.tar.gz";
name = "2.13.2-1.tar.gz";
sha256 = "76594212b4c66a44c53ca7e8c5a666ab13d56c3758649b3aa95ab3d61d397efe";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ control-msgs moveit-common moveit-core pluginlib rclcpp rclcpp-action ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "A generic, simple controller manager plugin for MoveIt.";
license = with lib.licenses; [ bsd3 ];
};
}