mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-13 03:04:49 +03:00
26 lines
1.1 KiB
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.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rviz-release/archive/release/rolling/rviz_visual_testing_framework/14.4.3-1.tar.gz";
|
|
name = "14.4.3-1.tar.gz";
|
|
sha256 = "a59d70905db8431e1b3a4d755da009c10d4dc2ba0c416f2a3491c7561abf2c11";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|