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

29 lines
1.2 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-index-python, python-qt-binding, python3Packages, qt-dotgraph, rqt-gui, rqt-gui-py }:
buildRosPackage {
pname = "ros-rolling-rqt-graph";
version = "1.6.1-r1";
src = fetchurl {
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";
};
buildType = "ament_python";
checkInputs = [ python3Packages.pytest ];
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 ];
};
}