mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
Move everything in rosPackages to its own directory.
This commit is contained in:
parent
fe0a4494ef
commit
444edcec26
5725 changed files with 3 additions and 3 deletions
26
distros/eloquent/rcl-logging-spdlog/default.nix
Normal file
26
distros/eloquent/rcl-logging-spdlog/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
|
||||
# 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-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 spdlog-vendor ];
|
||||
checkInputs = [ ament-lint-auto ament-lint-common ];
|
||||
propagatedBuildInputs = [ rcutils ];
|
||||
nativeBuildInputs = [ ament-cmake-ros ];
|
||||
|
||||
meta = {
|
||||
description = ''Implementation of rcl_logging API for an spdlog backend.'';
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue