1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-21 14:48:39 +03:00
nix-ros-overlay/eloquent/rviz-rendering-tests/default.nix

27 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2019 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-index-cpp, qt5, resource-retriever, rviz-rendering }:
buildRosPackage {
pname = "ros-eloquent-rviz-rendering-tests";
version = "7.0.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rviz-release/archive/release/eloquent/rviz_rendering_tests/7.0.3-1.tar.gz";
name = "7.0.3-1.tar.gz";
sha256 = "81702fbfbe3aea5b7f7ea0fba6c5518b8fbe3947ca6f899137ae4b050e491938";
};
buildType = "ament_cmake";
buildInputs = [ qt5.qtbase ];
checkInputs = [ ament-cmake-cppcheck ament-cmake-cpplint ament-cmake-gmock ament-cmake-gtest ament-cmake-lint-cmake ament-cmake-uncrustify ament-index-cpp ];
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 ];
};
}