1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/eloquent/rcl-logging-spdlog/default.nix

27 lines
923 B
Nix
Raw Normal View History

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