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
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, controller-manager-msgs, rclpy, rqt-gui, rqt-gui-py }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rqt-controller-manager";
|
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/rqt_controller_manager/4.6.0-1.tar.gz";
|
|
|
|
name = "4.6.0-1.tar.gz";
|
|
|
|
sha256 = "976b0009aaa8d78cd0ba6ccff4053d7f643ecc344e21b92f39733f0d643ce0d9";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
propagatedBuildInputs = [ controller-manager-msgs rclpy rqt-gui rqt-gui-py ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Graphical frontend for interacting with the controller manager.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|