2022-12-09 19:20:15 -05:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# 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-rolling-examples-rclcpp-minimal-action-client";
|
2023-07-14 13:38:16 +00:00
|
|
|
version = "0.19.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-07-14 13:38:16 +00:00
|
|
|
url = "https://github.com/ros2-gbp/examples-release/archive/release/rolling/examples_rclcpp_minimal_action_client/0.19.1-1.tar.gz";
|
|
|
|
name = "0.19.1-1.tar.gz";
|
|
|
|
sha256 = "4e77dc41f35dab11fbcba4a06a05d3c08112fcc07ca127825fb2054aea82b1e9";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
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 client examples'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|