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/humble/rviz-visual-testing-framework/default.nix
2022-06-11 13:21:09 -04:00

26 lines
1.1 KiB
Nix

# 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";
version = "11.2.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rviz-release/archive/release/humble/rviz_visual_testing_framework/11.2.2-1.tar.gz";
name = "11.2.2-1.tar.gz";
sha256 = "abd3519042cf7a88e3de0cadb6bb148e7189b540b8a52ce54eb7d4fa05d83401";
};
buildType = "ament_cmake";
buildInputs = [ qt5.qtbase ];
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 ];
};
}