mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
regenerate all distros, Fri Jun 12 13:17:24 2020
This commit is contained in:
parent
1aa4fdb475
commit
2387d4135a
128 changed files with 1609 additions and 307 deletions
37
distros/dashing/rqt-robot-monitor/default.nix
Normal file
37
distros/dashing/rqt-robot-monitor/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
|
||||
# Copyright 2020 Open Source Robotics Foundation
|
||||
# Distributed under the terms of the BSD license
|
||||
|
||||
{ lib, buildRosPackage, fetchurl, diagnostic-msgs, python-qt-binding, python3Packages, qt-gui, qt-gui-py-common, rclpy, rosidl-default-generators, rqt-gui, rqt-gui-py, rqt-py-common }:
|
||||
buildRosPackage {
|
||||
pname = "ros-dashing-rqt-robot-monitor";
|
||||
version = "1.0.1-r1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ros2-gbp/rqt_robot_monitor-release/archive/release/dashing/rqt_robot_monitor/1.0.1-1.tar.gz";
|
||||
name = "1.0.1-1.tar.gz";
|
||||
sha256 = "ec45e643620df143ff22a8a0bb7ded41eb9f4cf3106f7aa4732974aba1cc91a9";
|
||||
};
|
||||
|
||||
buildType = "ament_python";
|
||||
propagatedBuildInputs = [ diagnostic-msgs python-qt-binding python3Packages.rospkg qt-gui qt-gui-py-common rclpy rqt-gui rqt-gui-py rqt-py-common ];
|
||||
nativeBuildInputs = [ rosidl-default-generators ];
|
||||
|
||||
meta = {
|
||||
description = ''rqt_robot_monitor displays diagnostics_agg topics messages that
|
||||
are published by <a href="http://www.ros.org/wiki/diagnostic_aggregator">diagnostic_aggregator</a>.
|
||||
rqt_robot_monitor is a direct port to rqt of
|
||||
<a href="http://www.ros.org/wiki/robot_monitor">robot_monitor</a>. All
|
||||
diagnostics are fall into one of three tree panes depending on the status of
|
||||
diagnostics (normal, warning, error/stale). Status are shown in trees to
|
||||
represent their hierarchy. Worse status dominates the higher level status.<br/>
|
||||
<ul>
|
||||
Ex. 'Computer' category has 3 sub devices. 2 are green but 1 is error. Then
|
||||
'Computer' becomes error.
|
||||
</ul>
|
||||
You can look at the detail of each status by double-clicking the tree nodes.<br/>
|
||||
|
||||
Currently re-usable API to other pkgs are not explicitly provided.'';
|
||||
license = with lib.licenses; [ bsdOriginal ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue