1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-20 22:28:39 +03:00
nix-ros-overlay/distros/jazzy/moveit-simple-controller-manager/default.nix

26 lines
930 B
Nix
Raw Normal View History

# Copyright 2024 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.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/jazzy/moveit_simple_controller_manager/2.12.1-1.tar.gz";
name = "2.12.1-1.tar.gz";
sha256 = "590037083306075ddc33eee1ed23a82f2e74adbceb919f9f5af39c30255ef5bb";
};
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 ];
};
}