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

25 lines
930 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-jazzy-moveit-simple-controller-manager";
version = "2.12.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/jazzy/moveit_simple_controller_manager/2.12.3-1.tar.gz";
name = "2.12.3-1.tar.gz";
sha256 = "36b4a1ca02c6d593e4ee286d1d2e62d7fed7ece647c1918bdc38a4e1098295cd";
};
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 ];
};
}