1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/crystal/examples-rclcpp-minimal-composition/default.nix
2019-09-05 22:47:18 -04:00

24 lines
815 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, std-msgs, class-loader, rclcpp, ament-cmake }:
buildRosPackage {
pname = "ros-crystal-examples-rclcpp-minimal-composition";
version = "0.6.3";
src = fetchurl {
url = https://github.com/ros2-gbp/examples-release/archive/release/crystal/examples_rclcpp_minimal_composition/0.6.3-0.tar.gz;
sha256 = "e52d9d3afa270e4a1c01f3dc1197578dd66a33d328a7789b186035338b86e4ca";
};
buildInputs = [ std-msgs class-loader rclcpp ];
propagatedBuildInputs = [ std-msgs class-loader rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Minimalist examples of composing nodes in the same
process'';
license = with lib.licenses; [ asl20 ];
};
}