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/iron/rviz-visual-tools/default.nix

27 lines
1.6 KiB
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-python, ament-lint-auto, ament-lint-common, eigen, eigen-stl-containers, eigen3-cmake-module, geometry-msgs, interactive-markers, launch, launch-ros, pluginlib, qt5, rclcpp, rclcpp-components, rviz-common, rviz-default-plugins, rviz-ogre-vendor, rviz-rendering, rviz2, sensor-msgs, shape-msgs, std-msgs, tf2, tf2-eigen, tf2-geometry-msgs, trajectory-msgs, visualization-msgs }:
buildRosPackage {
pname = "ros-iron-rviz-visual-tools";
version = "4.1.4-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/rviz_visual_tools-release/archive/release/iron/rviz_visual_tools/4.1.4-3.tar.gz";
name = "4.1.4-3.tar.gz";
sha256 = "3c39b8c1c4df7da4d7b10e7a2e31da05e72e58446a5ec993f4567cea8a25d794";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-index-python eigen eigen-stl-containers eigen3-cmake-module geometry-msgs interactive-markers launch launch-ros pluginlib qt5.qtbase rclcpp rclcpp-components rviz-common rviz-default-plugins rviz-ogre-vendor rviz-rendering rviz2 sensor-msgs shape-msgs std-msgs tf2 tf2-eigen tf2-geometry-msgs trajectory-msgs visualization-msgs ];
nativeBuildInputs = [ ament-cmake eigen3-cmake-module ];
meta = {
description = "Utility functions for displaying and debugging data in Rviz via published markers";
license = with lib.licenses; [ bsdOriginal ];
};
}