1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/dashing/cloudwatch-metrics-common/default.nix

26 lines
903 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-gmock, ament-cmake-gtest, aws-common, cmake, dataflow-lite, file-management }:
buildRosPackage {
pname = "ros-dashing-cloudwatch-metrics-common";
version = "1.1.2-r1";
src = fetchurl {
url = "https://github.com/aws-gbp/cloudwatch_common-release/archive/release/dashing/cloudwatch_metrics_common/1.1.2-1.tar.gz";
name = "1.1.2-1.tar.gz";
sha256 = "aa6226c67e5609a4c0266f64492155d352b404564ee9839f8aaa3277bd68432e";
};
buildType = "cmake";
checkInputs = [ ament-cmake-gmock ament-cmake-gtest ];
propagatedBuildInputs = [ aws-common dataflow-lite file-management ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''Library used by ROS1/2 node to publish metrics'';
license = with lib.licenses; [ asl20 ];
};
}