mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 02:04:49 +03:00
24 lines
914 B
Nix
24 lines
914 B
Nix
|
|
# Copyright 2023 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-foxy-rqt-tf-tree";
|
|
version = "1.0.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rqt_tf_tree-release/archive/release/foxy/rqt_tf_tree/1.0.3-1.tar.gz";
|
|
name = "1.0.3-1.tar.gz";
|
|
sha256 = "46bba17833ddafac6af4a99df252632907b7087c38c4943bb59c325baaf0612e";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|