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/dashing/cloudwatch-logger/default.nix
2019-12-09 23:36:28 -05:00

26 lines
1 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, aws-common, aws-ros2-common, cloudwatch-logs-common, launch, launch-ros, rcl-interfaces, rclcpp, std-srvs }:
buildRosPackage {
pname = "ros-dashing-cloudwatch-logger";
version = "3.0.0-r2";
src = fetchurl {
url = "https://github.com/aws-gbp/cloudwatch_logger-release/archive/release/dashing/cloudwatch_logger/3.0.0-2.tar.gz";
name = "3.0.0-2.tar.gz";
sha256 = "2bc69c3139f5bd23ed2a69807c040b880871a171aa344b244ad4ff8dac82be65";
};
buildType = "ament_cmake";
buildInputs = [ rcl-interfaces ];
checkInputs = [ ament-cmake-gmock ];
propagatedBuildInputs = [ aws-common aws-ros2-common cloudwatch-logs-common launch launch-ros rclcpp std-srvs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''CloudWatch Logger node for publishing logs to AWS CloudWatch Logs'';
license = with lib.licenses; [ asl20 ];
};
}