2019-09-04 17:11:04 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-09-04 17:11:04 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-11-25 19:56:04 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, example-interfaces, rclcpp, rclcpp-action }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-examples-rclcpp-minimal-action-client";
|
2020-11-25 19:56:04 -05:00
|
|
|
version = "0.7.5-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-11-25 19:56:04 -05:00
|
|
|
url = "https://github.com/ros2-gbp/examples-release/archive/release/dashing/examples_rclcpp_minimal_action_client/0.7.5-1.tar.gz";
|
|
|
|
name = "0.7.5-1.tar.gz";
|
|
|
|
sha256 = "4dce42b25b2ca19115cb9866571712a50f5cd9b60f602b82f245f2e6ad5b3556";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2020-11-25 19:56:04 -05:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ example-interfaces rclcpp rclcpp-action ];
|
2019-09-04 17:11:04 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Minimal action client examples'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|