2022-12-09 19:20:15 -05:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ament-lint-auto, ament-lint-common, rcpputils, rcutils }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rcl-logging-interface";
|
2023-09-08 13:49:36 +00:00
|
|
|
version = "2.7.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-09-08 13:49:36 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rcl_logging-release/archive/release/rolling/rcl_logging_interface/2.7.0-1.tar.gz";
|
|
|
|
name = "2.7.0-1.tar.gz";
|
|
|
|
sha256 = "b2ff80009f77124ff2dcaae50c8b020aa6205a77bb37b011ffbd2236a07950fb";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-ros ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common rcpputils ];
|
|
|
|
propagatedBuildInputs = [ rcutils ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Interface that rcl_logging backends needs to implement.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|