regenerate all distros, Mon Jun 19 17:15:22 2023

This commit is contained in:
Ben Wolsieffer 2023-06-19 17:15:23 -04:00
parent 7a2b545ecb
commit 381164fc34
2124 changed files with 35727 additions and 4192 deletions

View file

@ -0,0 +1,26 @@
# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-tutorials-interfaces, ament-cmake, ament-lint-auto, ament-lint-common, rclcpp, rclcpp-action, rclcpp-components }:
buildRosPackage {
pname = "ros-iron-action-tutorials-cpp";
version = "0.27.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/iron/action_tutorials_cpp/0.27.1-1.tar.gz";
name = "0.27.1-1.tar.gz";
sha256 = "00be751c36177ed2099dce9d4008e97266fbb5210e3ca54406750928dfa7e80d";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ action-tutorials-interfaces rclcpp rclcpp-action rclcpp-components ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''C++ action tutorial cpp code'';
license = with lib.licenses; [ asl20 ];
};
}