1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

regenerate ros-dashing, Thu Sep 5 22:45:08 2019

This commit is contained in:
Ben Wolsieffer 2019-09-04 17:11:04 -04:00
parent 40ccc530bb
commit 807e9720ab
783 changed files with 20340 additions and 0 deletions

View file

@ -0,0 +1,24 @@
# 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 ];
};
}