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 }:
|
2019-09-09 14:55:58 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-file-management";
|
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/file_management/1.1.2-1.tar.gz";
|
|
|
|
name = "1.1.2-1.tar.gz";
|
|
|
|
sha256 = "246be5b507c788ba825c691da1771ab4c2659a84e9a3153b6f9a0f1d441237e2";
|
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 ];
|
2019-09-09 14:55:58 -04:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''AWS CloudWatch management library used to manage offline files.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|