2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, std-msgs, rclcpp, rclcpp-components, ament-cmake }:
|
2019-09-06 12:16:03 -04:00
|
|
|
buildRosPackage rec {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-examples-rclcpp-minimal-composition";
|
|
|
|
version = "0.7.4-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:16:03 -04:00
|
|
|
url = "https://github.com/ros2-gbp/examples-release/archive/release/dashing/examples_rclcpp_minimal_composition/0.7.4-1.tar.gz";
|
|
|
|
name = "0.7.4-1.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "117b67959ab9139b0e6880331ae6c957813a81b7aac0ad624b7e5048cde22239";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ std-msgs rclcpp-components rclcpp ];
|
|
|
|
propagatedBuildInputs = [ std-msgs rclcpp-components rclcpp ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Minimalist examples of composing nodes in the same
|
|
|
|
process'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|