2019-12-10 14:03:58 -05:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-12-10 14:03:58 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-01-17 12:40:05 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, python-qt-binding, python3Packages, qt-dotgraph, rclpy, rqt-graph, rqt-gui, rqt-gui-py, tf2-msgs, tf2-ros }:
|
2019-12-10 14:03:58 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-rqt-tf-tree";
|
2020-01-17 12:40:05 +00:00
|
|
|
version = "1.0.1-r1";
|
2019-12-10 14:03:58 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-01-17 12:40:05 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rqt_tf_tree-release/archive/release/eloquent/rqt_tf_tree/1.0.1-1.tar.gz";
|
|
|
|
name = "1.0.1-1.tar.gz";
|
|
|
|
sha256 = "cca82385b50c00b8ea77549e413b507889f87bacba33fd77ac8e85f821da87c4";
|
2019-12-10 14:03:58 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ python3Packages.mock ];
|
2020-01-17 12:40:05 +00:00
|
|
|
propagatedBuildInputs = [ python-qt-binding qt-dotgraph rclpy rqt-graph rqt-gui rqt-gui-py tf2-msgs tf2-ros ];
|
2019-12-10 14:03:58 -05:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''rqt_tf_tree provides a GUI plugin for visualizing the ROS TF frame tree.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|