1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-21 22:50:18 +03:00
nix-ros-overlay/dashing/examples-rclcpp-minimal-composition/default.nix

27 lines
897 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, std-msgs, rclcpp, rclcpp-components, ament-cmake }:
buildRosPackage rec {
pname = "ros-dashing-examples-rclcpp-minimal-composition";
version = "0.7.4-r1";
src = fetchurl {
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";
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 ];
};
}