regenerate all distros, Fri Jun 12 18:02:43 2020

This commit is contained in:
Ben Wolsieffer 2020-06-12 18:02:43 -04:00
parent 2387d4135a
commit e68c29e498
434 changed files with 11020 additions and 92 deletions

View file

@ -0,0 +1,25 @@
# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ament-lint-auto, ament-lint-common, rcutils, spdlog, spdlog-vendor }:
buildRosPackage {
pname = "ros-foxy-rcl-logging-spdlog";
version = "1.0.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rcl_logging-release/archive/release/foxy/rcl_logging_spdlog/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "6f9f88d2899c67074e37f1369da74e92da20d88c6ac6316a522dad62887ebb96";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ rcutils spdlog spdlog-vendor ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''Implementation of rcl_logging API for an spdlog backend.'';
license = with lib.licenses; [ asl20 ];
};
}