1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/kinetic/rqt-robot-plugins/default.nix
Ben Wolsieffer 8edcf79beb regenerate ros-kinetic, Thu Mar 21 01:13:03 2019
regenerate ros-kinetic, Fri Mar 22 14:03:51 2019

regenerate ros-kinetic, Sat Mar 23 00:05:23 2019

regenerate ros-kinetic, Sat Mar 23 00:38:46 2019

regenerate ros-kinetic, Sat Mar 23 00:58:04 2019

regenerate ros-melodic, Sat Mar 23 01:14:22 2019

regenerate ros-kinetic, Tue Apr  2 01:07:09 2019

regenerate ros-kinetic, Tue Apr  2 01:22:33 2019

regenerate ros-kinetic, Tue Apr  2 20:47:59 2019

regenerate ros-kinetic, Tue Apr  2 22:55:05 2019

regenerate ros-melodic, Tue Apr  2 22:59:35 2019

regenerate ros-kinetic, Tue Apr  2 23:08:34 2019

regenerate ros-melodic, Tue Apr  2 23:11:56 2019

regenerate ros-melodic, Wed Apr  3 12:38:28 2019

regenerate ros-kinetic, Wed Apr  3 16:06:39 2019

regenerate ros-kinetic, Wed Apr  3 18:31:01 2019
2019-04-06 01:48:03 -04:00

35 lines
1.6 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rqt-nav-view, rqt-moveit, rqt-rviz, rqt-pose-view, catkin, rqt-tf-tree, rqt-robot-dashboard, rqt-robot-monitor, rqt-robot-steering, rqt-runtime-monitor }:
buildRosPackage {
pname = "ros-kinetic-rqt-robot-plugins";
version = "0.5.7";
src = fetchurl {
url = https://github.com/ros-gbp/rqt_robot_plugins-release/archive/release/kinetic/rqt_robot_plugins/0.5.7-0.tar.gz;
sha256 = "5e1285f5dc2f987c461d9133d5b42b116c2512ee2d20b6ae92d99a3aac9d029a";
};
propagatedBuildInputs = [ rqt-nav-view rqt-rviz rqt-moveit rqt-pose-view rqt-tf-tree rqt-robot-dashboard rqt-robot-monitor rqt-robot-steering rqt-runtime-monitor ];
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 &quot;rqt&quot;, 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>'';
#license = lib.licenses.BSD;
};
}