mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-17 15:40:17 +03:00
25 lines
993 B
Nix
25 lines
993 B
Nix
![]() |
|
||
|
# Copyright 2023 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, controller-manager, controller-manager-msgs, rclpy, ros2cli, ros2node, ros2param, rosidl-runtime-py }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-foxy-ros2controlcli";
|
||
|
version = "0.11.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/foxy/ros2controlcli/0.11.0-1.tar.gz";
|
||
|
name = "0.11.0-1.tar.gz";
|
||
|
sha256 = "38ecf5735292de1b8762bc851d355735873807a159e895a32c612e4bdf059908";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint ];
|
||
|
propagatedBuildInputs = [ controller-manager controller-manager-msgs rclpy ros2cli ros2node ros2param rosidl-runtime-py ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The ROS 2 command line tools for ROS2 Control.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|