1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/eloquent/rqt-tf-tree/default.nix

24 lines
922 B
Nix

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