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/rolling/ros2controlcli/default.nix

24 lines
935 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, controller-manager, controller-manager-msgs, python3Packages, rcl-interfaces, rclpy, ros2cli, ros2node, ros2param, rosidl-runtime-py }:
buildRosPackage {
pname = "ros-rolling-ros2controlcli";
version = "4.22.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/rolling/ros2controlcli/4.22.0-1.tar.gz";
name = "4.22.0-1.tar.gz";
sha256 = "18b352797ed49b6fbfeb98b2b3e3e6a2de43c88ba874d441445677aa659353f8";
};
buildType = "ament_python";
propagatedBuildInputs = [ controller-manager controller-manager-msgs python3Packages.pygraphviz rcl-interfaces rclpy ros2cli ros2node ros2param rosidl-runtime-py ];
meta = {
description = "The ROS 2 command line tools for ROS2 Control.";
license = with lib.licenses; [ asl20 ];
};
}