2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-cppcheck, ament-cmake-cpplint, ament-cmake-gmock, ament-cmake-gtest, ament-cmake-lint-cmake, ament-cmake-uncrustify, ament-cmake-xmllint, ament-lint-auto, qt5, rcutils, rviz-common }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-rviz-visual-testing-framework";
|
2022-09-19 17:14:06 -04:00
|
|
|
version = "11.2.3-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-09-19 17:14:06 -04:00
|
|
|
url = "https://github.com/ros2-gbp/rviz-release/archive/release/humble/rviz_visual_testing_framework/11.2.3-1.tar.gz";
|
|
|
|
name = "11.2.3-1.tar.gz";
|
|
|
|
sha256 = "229c6b63b8330a7309da8c1d6501f753a47e8e712774806aa8c2500ba0b0ed80";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 13:38:03 +00:00
|
|
|
buildInputs = [ qt5.qtbase ];
|
2022-06-09 18:50:37 -04:00
|
|
|
checkInputs = [ ament-cmake-cppcheck ament-cmake-cpplint ament-cmake-gmock ament-cmake-lint-cmake ament-cmake-uncrustify ament-cmake-xmllint ament-lint-auto ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake-gtest rcutils rviz-common ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''3D testing framework for RViz.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|