2019-09-09 14:55:58 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gmock, ament-cmake-gtest, aws-common, cmake, dataflow-lite, file-management }:
|
2019-09-09 14:55:58 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-cloudwatch-logs-common";
|
2019-12-09 05:16:46 +00:00
|
|
|
version = "1.1.2-r1";
|
2019-09-09 14:55:58 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-09 05:16:46 +00:00
|
|
|
url = "https://github.com/aws-gbp/cloudwatch_common-release/archive/release/dashing/cloudwatch_logs_common/1.1.2-1.tar.gz";
|
|
|
|
name = "1.1.2-1.tar.gz";
|
|
|
|
sha256 = "02a0f0b6fa4f57da332b379dbb2b5d12a1dae647be942232c6078430f38c1ee7";
|
2019-09-09 14:55:58 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
2019-12-09 05:16:46 +00:00
|
|
|
checkInputs = [ ament-cmake-gmock ament-cmake-gtest ];
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ aws-common dataflow-lite file-management ];
|
2019-09-09 14:55:58 -04:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''AWS CloudWatch management library used by ROS1/2 node to publish logs to CloudWatch service'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|