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

28 lines
951 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, spdlog }:
buildRosPackage {
pname = "ros-iron-spdlog-vendor";
version = "1.4.4-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/spdlog_vendor-release/archive/release/iron/spdlog_vendor/1.4.4-2.tar.gz";
name = "1.4.4-2.tar.gz";
sha256 = "47e31343b695f95564301ffb71f28aff13add4862f1ee496a133b1c29bc8aa1a";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ spdlog ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Wrapper around spdlog, providing nothing but a dependency on spdlog, on some systems.
On others, it provides an ExternalProject build of spdlog.";
license = with lib.licenses; [ asl20 mit ];
};
}