2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 05:16:46 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, tf2-ros, rqt-gui, geometry-msgs, catkin, pythonPackages, tf2, rqt-gui-py, rqt-graph, qt-dotgraph, tf2-msgs, rospy, python-qt-binding }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-rqt-tf-tree";
|
|
|
|
version = "0.6.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/ros-gbp/rqt_tf_tree-release/archive/release/melodic/rqt_tf_tree/0.6.0-0.tar.gz";
|
|
|
|
name = "0.6.0-0.tar.gz";
|
2019-03-21 00:14:59 -04:00
|
|
|
sha256 = "c52046ad978eb9ae418a866706d9b909646dee0f8b76deed4fa501e0894c3ee4";
|
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-03-21 00:14:59 -04:00
|
|
|
checkInputs = [ pythonPackages.mock ];
|
2019-12-09 05:16:46 +00:00
|
|
|
propagatedBuildInputs = [ tf2-ros rqt-gui geometry-msgs tf2 pythonPackages.rospkg rqt-gui-py rqt-graph qt-dotgraph tf2-msgs rospy python-qt-binding ];
|
2019-03-21 00:14:59 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''rqt_tf_tree provides a GUI plugin for visualizing the ROS TF frame tree.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|