1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/humble/examples-rclcpp-wait-set/default.nix
2022-06-11 13:21:09 -04:00

24 lines
847 B
Nix

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, example-interfaces, rclcpp, rclcpp-components, std-msgs }:
buildRosPackage {
pname = "ros-humble-examples-rclcpp-wait-set";
version = "0.15.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/examples-release/archive/release/humble/examples_rclcpp_wait_set/0.15.0-2.tar.gz";
name = "0.15.0-2.tar.gz";
sha256 = "460db6991aeebf1e1ce9c209a5dab9e23bb9462e877624b2f1f24d4e07fd9c88";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ example-interfaces rclcpp rclcpp-components std-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Example of how to use the rclcpp::WaitSet directly.'';
license = with lib.licenses; [ asl20 ];
};
}