# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-index-python, python-qt-binding, qt-dotgraph, rqt-gui, rqt-gui-py }:
buildRosPackage {
pname = "ros-eloquent-rqt-graph";
version = "1.0.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rqt_graph-release/archive/release/eloquent/rqt_graph/1.0.5-1.tar.gz";
name = "1.0.5-1.tar.gz";
sha256 = "faab88c9561803ec7df7cc8bc84b474d4177d4b4d04ac6ddfc501039d7db8d0f";
};
buildType = "ament_python";
propagatedBuildInputs = [ ament-index-python python-qt-binding qt-dotgraph rqt-gui rqt-gui-py ];
meta = {
description = ''rqt_graph provides a GUI plugin for visualizing the ROS
computation graph.
Its components are made generic so that other packages
where you want to achieve graph representation can depend upon this pkg
(use rqt_dep to find out
the pkgs that depend. rqt_dep itself depends on rqt_graph too).'';
license = with lib.licenses; [ bsdOriginal ];
};
}