2020-05-23 15:15:06 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-06-24 01:11:26 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, python-qt-binding, python3Packages, qt-dotgraph, rospy, rqt-graph, rqt-gui, rqt-gui-py, tf2-msgs, tf2-ros }:
|
2020-05-23 15:15:06 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-rqt-tf-tree";
|
2023-10-06 13:48:50 +00:00
|
|
|
version = "0.6.4-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-10-06 13:48:50 +00:00
|
|
|
url = "https://github.com/ros-gbp/rqt_tf_tree-release/archive/release/noetic/rqt_tf_tree/0.6.4-1.tar.gz";
|
|
|
|
name = "0.6.4-1.tar.gz";
|
|
|
|
sha256 = "c2bccb3aeae478e741d7beb55a46a23eb32707db54bce2a91867ecf7eaeb4366";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2023-10-06 13:48:50 +00:00
|
|
|
buildInputs = [ catkin python3Packages.setuptools ];
|
2020-06-24 01:11:26 -04:00
|
|
|
checkInputs = [ python3Packages.mock ];
|
|
|
|
propagatedBuildInputs = [ python-qt-binding python3Packages.rospkg qt-dotgraph rospy rqt-graph rqt-gui rqt-gui-py tf2-msgs tf2-ros ];
|
2023-10-06 13:48:50 +00:00
|
|
|
nativeBuildInputs = [ catkin python3Packages.setuptools ];
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "rqt_tf_tree provides a GUI plugin for visualizing the ROS TF frame tree.";
|
2020-05-23 15:15:06 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|