2019-03-21 00:14:59 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-03-21 00:14:59 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, rqt-moveit, rqt-nav-view, rqt-pose-view, rqt-robot-dashboard, rqt-robot-monitor, rqt-robot-steering, rqt-runtime-monitor, rqt-rviz, rqt-tf-tree }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-rqt-robot-plugins";
|
|
|
|
version = "0.5.7";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/ros-gbp/rqt_robot_plugins-release/archive/release/melodic/rqt_robot_plugins/0.5.7-0.tar.gz";
|
|
|
|
name = "0.5.7-0.tar.gz";
|
2019-03-21 00:14:59 -04:00
|
|
|
sha256 = "2fa30a70d1eed9ff4724c1b9d1ef8303066b373bae9abcbf2b8a715a89e515ba";
|
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ rqt-moveit rqt-nav-view rqt-pose-view rqt-robot-dashboard rqt-robot-monitor rqt-robot-steering rqt-runtime-monitor rqt-rviz rqt-tf-tree ];
|
2019-03-21 00:14:59 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Metapackage of rqt plugins that are particularly used with robots
|
|
|
|
during its operation.<br/>
|
|
|
|
<br/>
|
|
|
|
To run any rqt plugins, just type in a single command "rqt", then select any plugins you want from the GUI that launches afterwards.<br/>
|
|
|
|
<br/>
|
|
|
|
rqt consists of three following metapackages:<br/>
|
|
|
|
<ul>
|
|
|
|
<li><a href="http://ros.org/wiki/rqt">rqt</a> - provides a container window
|
|
|
|
where all rqt tools can be docked at. rqt plugin developers barely
|
|
|
|
needs to pay attention.</li>
|
|
|
|
<li><a href="http://ros.org/wiki/rqt_common_plugins">rqt_common_plugins</a> -
|
|
|
|
ROS backend tools suite that can be used on/off of robot runtime.</li>
|
|
|
|
<li>rqt_robot_plugins (You're here!)</li>
|
|
|
|
</ul>'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|