mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-22 23:10:18 +03:00
27 lines
913 B
Nix
27 lines
913 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gmock, dataflow-lite, ament-cmake-gtest, aws-common, cmake }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-dashing-file-management";
|
||
|
version = "1.1.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/aws-gbp/cloudwatch_common-release/archive/release/dashing/file_management/1.1.0-1.tar.gz";
|
||
|
name = "1.1.0-1.tar.gz";
|
||
|
sha256 = "bf25eec8a1c12c8ca1e2ddb7d8bb2cda61db63bd0dc14a531542c22c27c06ac5";
|
||
|
};
|
||
|
|
||
|
buildType = "cmake";
|
||
|
buildInputs = [ dataflow-lite aws-common ];
|
||
|
checkInputs = [ ament-cmake-gtest ament-cmake-gmock ];
|
||
|
propagatedBuildInputs = [ dataflow-lite aws-common ];
|
||
|
nativeBuildInputs = [ cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''AWS CloudWatch management library used to manage offline files.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|