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, ament-lint-auto, ament-lint-common, example-interfaces, rclcpp, rclcpp-action }:
buildRosPackage {
pname = "ros-jazzy-examples-rclcpp-minimal-action-server";
version = "0.19.3-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/examples-release/archive/release/jazzy/examples_rclcpp_minimal_action_server/0.19.3-2.tar.gz";
name = "0.19.3-2.tar.gz";
sha256 = "24396de3639c0ad008692740adeb84e7eaa2e7216235c429da99fafa0cd66ea3";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ example-interfaces rclcpp rclcpp-action ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Minimal action server examples";
license = with lib.licenses; [ asl20 ];
};
}