2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-index-python, python-qt-binding, python3Packages, qt-dotgraph, rqt-gui, rqt-gui-py }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rqt-graph";
|
2024-07-26 13:34:25 +00:00
|
|
|
version = "1.6.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-07-26 13:34:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rqt_graph-release/archive/release/rolling/rqt_graph/1.6.1-1.tar.gz";
|
|
|
|
name = "1.6.1-1.tar.gz";
|
|
|
|
sha256 = "38e6508240c527331107fbd86464f314978a6136da0123c8ef6d0c371b81cc4f";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ python3Packages.pytest ];
|
2022-12-09 19:20:15 -05:00
|
|
|
propagatedBuildInputs = [ ament-index-python python-qt-binding qt-dotgraph rqt-gui rqt-gui-py ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "rqt_graph provides a GUI plugin for visualizing the ROS
|
2022-12-09 19:20:15 -05:00
|
|
|
computation graph.<br/>
|
|
|
|
Its components are made generic so that other packages
|
|
|
|
where you want to achieve graph representation can depend upon this pkg
|
2024-03-23 14:09:26 +00:00
|
|
|
(use <a href=\"http://www.ros.org/wiki/rqt_dep\">rqt_dep</a> to find out
|
|
|
|
the pkgs that depend. rqt_dep itself depends on rqt_graph too).";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|