1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

regenerate all distros, Thu Jun 9 18:50:37 2022

This commit is contained in:
Ben Wolsieffer 2022-06-09 18:50:37 -04:00
parent aa08119940
commit 1ebd89fabb
1056 changed files with 24850 additions and 671 deletions

View file

@ -0,0 +1,26 @@
# 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-index-cpp, ament-lint-auto, qt5, resource-retriever, rviz-rendering }:
buildRosPackage {
pname = "ros-humble-rviz-rendering-tests";
version = "11.2.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rviz-release/archive/release/humble/rviz_rendering_tests/11.2.2-1.tar.gz";
name = "11.2.2-1.tar.gz";
sha256 = "262c129b44db75ab265fb78898bffe0fa2359a10baecb400c704daf498e51078";
};
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-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 ];
};
}