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

26 lines
976 B
Nix
Raw Normal View History

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