mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
Move everything in rosPackages to its own directory.
This commit is contained in:
parent
fe0a4494ef
commit
444edcec26
5725 changed files with 3 additions and 3 deletions
26
distros/eloquent/rviz-rendering-tests/default.nix
Normal file
26
distros/eloquent/rviz-rendering-tests/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
|
||||
# Copyright 2020 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 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue