1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/rolling/rviz-rendering-tests/default.nix
2023-05-02 16:50:22 -04:00

26 lines
1.2 KiB
Nix

# Copyright 2023 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-index-cpp, ament-lint-auto, qt5, resource-retriever, rviz-rendering }:
buildRosPackage {
pname = "ros-rolling-rviz-rendering-tests";
version = "12.5.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/rviz-release/archive/release/rolling/rviz_rendering_tests/12.5.0-2.tar.gz";
name = "12.5.0-2.tar.gz";
sha256 = "5c2f290ca97358627b761aefeca14a77e040167973021a89367baa6fe7125948";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake qt5.qtbase ];
checkInputs = [ ament-cmake-cppcheck ament-cmake-cpplint ament-cmake-gmock ament-cmake-gtest ament-cmake-lint-cmake ament-cmake-uncrustify ament-cmake-xmllint ament-index-cpp ament-lint-auto ];
propagatedBuildInputs = [ resource-retriever rviz-rendering ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Example plugin for RViz - documents and tests RViz plugin development'';
license = with lib.licenses; [ bsdOriginal ];
};
}