mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 18:24:50 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ament-lint-auto, ament-lint-common, performance-test-fixture, rcl-logging-interface, rcpputils, rcutils, spdlog, spdlog-vendor }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-rcl-logging-spdlog";
|
|
version = "3.1.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rcl_logging-release/archive/release/jazzy/rcl_logging_spdlog/3.1.1-1.tar.gz";
|
|
name = "3.1.1-1.tar.gz";
|
|
sha256 = "22694be0a15c333c62a2ca2eb146f8d06791724085a42bb4f3e272edd2cb742b";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake-ros ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common performance-test-fixture ];
|
|
propagatedBuildInputs = [ rcl-logging-interface rcpputils rcutils spdlog spdlog-vendor ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = "Implementation of rcl_logging API for an spdlog backend.";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|