regenerate all distros, Fri May 24 14:00:52 2024

This commit is contained in:
Superflore 2024-05-24 14:00:52 +00:00 committed by Ben Wolsieffer
parent f1c32375c2
commit 6a16c08989
1761 changed files with 35644 additions and 2278 deletions

View file

@ -0,0 +1,26 @@
# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-google-benchmark, ament-cmake-gtest, ament-cmake-ros, ament-index-cpp, ament-lint-auto, ament-lint-common, class-loader, composition-interfaces, launch-testing, rclcpp, rcpputils, std-msgs }:
buildRosPackage {
pname = "ros-jazzy-rclcpp-components";
version = "28.1.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rclcpp-release/archive/release/jazzy/rclcpp_components/28.1.2-1.tar.gz";
name = "28.1.2-1.tar.gz";
sha256 = "58a9c2a730dc0cca121042af5e4c4acfc8a4f99eb3e849546b7ea567b37abdf9";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-ros rcpputils ];
checkInputs = [ ament-cmake-google-benchmark ament-cmake-gtest ament-lint-auto ament-lint-common launch-testing std-msgs ];
propagatedBuildInputs = [ ament-index-cpp class-loader composition-interfaces rclcpp ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = "Package containing tools for dynamically loadable components";
license = with lib.licenses; [ asl20 ];
};
}