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-minimal-composition/default.nix
2022-06-11 13:21:09 -04:00

26 lines
930 B
Nix

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, rclcpp, rclcpp-components, std-msgs }:
buildRosPackage {
pname = "ros-humble-examples-rclcpp-minimal-composition";
version = "0.15.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/examples-release/archive/release/humble/examples_rclcpp_minimal_composition/0.15.0-2.tar.gz";
name = "0.15.0-2.tar.gz";
sha256 = "e73c9c09bbf5f0926ff475edbcd98f0e81b4c8859dec5e7979a72f8bae2a35d2";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ rclcpp rclcpp-components std-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Minimalist examples of composing nodes in the same
process'';
license = with lib.licenses; [ asl20 ];
};
}