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/eloquent/rqt-graph/default.nix

29 lines
1.1 KiB
Nix
Raw Normal View History

# 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.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rqt_graph-release/archive/release/eloquent/rqt_graph/1.0.4-1.tar.gz";
name = "1.0.4-1.tar.gz";
sha256 = "ae3942035af522fc2cf003737676d600a0001db3138e11dd8a2db44f3cc6dd15";
};
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.<br/>
Its components are made generic so that other packages
where you want to achieve graph representation can depend upon this pkg
(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).'';
license = with lib.licenses; [ bsdOriginal ];
};
}