2019-12-09 05:16:46 +00:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-12-09 05:16:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-12-11 13:16:21 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, example-interfaces, rclcpp }:
|
2019-12-09 05:16:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-examples-rclcpp-minimal-service";
|
2020-12-11 13:16:21 +00:00
|
|
|
version = "0.8.3-r1";
|
2019-12-09 05:16:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-12-11 13:16:21 +00:00
|
|
|
url = "https://github.com/ros2-gbp/examples-release/archive/release/eloquent/examples_rclcpp_minimal_service/0.8.3-1.tar.gz";
|
|
|
|
name = "0.8.3-1.tar.gz";
|
|
|
|
sha256 = "72b2afe94d7aed4d23a62a4f161abd7ad33c8534d63d7edea34af510345a4823";
|
2019-12-09 05:16:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2020-12-11 13:16:21 +00:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2019-12-09 05:16:46 +00:00
|
|
|
propagatedBuildInputs = [ example-interfaces rclcpp ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A minimal service server which adds two numbers'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|