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/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 = "15.1.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rviz-release/archive/release/rolling/rviz_visual_testing_framework/15.1.3-1.tar.gz";
name = "15.1.3-1.tar.gz";
sha256 = "77e9b1759d364c2192a83abae07238c3ca7d31cc4e887522dfcfba8da3806ff1";
};
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 ];
};
}