mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1,004 B
Nix
26 lines
1,004 B
Nix
|
|
# Copyright 2022 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.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/rqt_tf_tree-release/archive/release/noetic/rqt_tf_tree/0.6.3-1.tar.gz";
|
|
name = "0.6.3-1.tar.gz";
|
|
sha256 = "5f07d027e135ff74636fc97216b666aa0ee16aa5f10cd631db1f2226496bb351";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ 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 ];
|
|
};
|
|
}
|