1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/rolling/rviz-visual-testing-framework/default.nix

26 lines
1.1 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-cmake-gtest, ament-lint-auto, ament-lint-common, geometry-msgs, qt5, rclcpp, rcutils, rviz-common, rviz-ogre-vendor, rviz-rendering, std-msgs, tf2, tf2-ros }:
buildRosPackage {
pname = "ros-rolling-rviz-visual-testing-framework";
version = "14.4.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rviz-release/archive/release/rolling/rviz_visual_testing_framework/14.4.0-1.tar.gz";
name = "14.4.0-1.tar.gz";
sha256 = "8c039d0e9ea548d11da48fd68a98d63959a9436b61b8229a89547381571d83f6";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake qt5.qtbase ];
checkInputs = [ ament-cmake-gmock ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-cmake-gtest geometry-msgs rclcpp rcutils rviz-common rviz-ogre-vendor rviz-rendering std-msgs tf2 tf2-ros ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "3D testing framework for RViz.";
license = with lib.licenses; [ bsdOriginal ];
};
}