2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-01-27 13:23:44 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, controller-manager, controller-manager-msgs, python3Packages, rcl-interfaces, rclpy, ros2cli, ros2node, ros2param, rosidl-runtime-py }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ros2controlcli";
|
2024-03-22 13:05:17 +00:00
|
|
|
version = "4.6.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-22 13:05:17 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/rolling/ros2controlcli/4.6.0-1.tar.gz";
|
|
|
|
name = "4.6.0-1.tar.gz";
|
|
|
|
sha256 = "f62be2cd8b9f2e295c2e1a3960b28a4cda7e86292bbc2728059db808cd03138d";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint ];
|
2023-01-27 13:23:44 +00:00
|
|
|
propagatedBuildInputs = [ controller-manager controller-manager-msgs python3Packages.pygraphviz rcl-interfaces rclpy ros2cli ros2node ros2param rosidl-runtime-py ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The ROS 2 command line tools for ROS2 Control.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|