mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
29 lines
1.1 KiB
Nix
29 lines
1.1 KiB
Nix
![]() |
|
||
|
# Copyright 2022 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-humble-rqt-graph";
|
||
|
version = "1.2.1-r3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/rqt_graph-release/archive/release/humble/rqt_graph/1.2.1-3.tar.gz";
|
||
|
name = "1.2.1-3.tar.gz";
|
||
|
sha256 = "3d5ad4da975561d5a77fa84f29fe4b2aedbf2c895f481aab41baaafa42a719a3";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|