2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-07-14 13:38:16 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-vendor-package, ament-lint-auto, ament-lint-common, spdlog }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-spdlog-vendor";
|
2024-05-10 13:12:06 +00:00
|
|
|
version = "1.7.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-05-10 13:12:06 +00:00
|
|
|
url = "https://github.com/ros2-gbp/spdlog_vendor-release/archive/release/rolling/spdlog_vendor/1.7.0-1.tar.gz";
|
|
|
|
name = "1.7.0-1.tar.gz";
|
|
|
|
sha256 = "e4cf6e111d3d6b907315dfcedb311ba0d0f032fc3e85c1d5d1f7bdafcb33a2d3";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2023-07-14 13:38:16 +00:00
|
|
|
buildInputs = [ ament-cmake ament-cmake-vendor-package ];
|
2022-12-09 19:20:15 -05:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ spdlog ];
|
2023-07-14 13:38:16 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-vendor-package ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Wrapper around spdlog, providing nothing but a dependency on spdlog, on some systems.
|
|
|
|
On others, it provides an ExternalProject build of spdlog.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 mit ];
|
|
|
|
};
|
|
|
|
}
|