2019-05-05 02:02:52 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-05-05 02:02:52 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-05-29 00:40:01 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, cmake, curl, gtest, openssl, ros-environment, util-linux, zlib }:
|
2019-05-05 02:02:52 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-aws-common";
|
2020-04-03 17:41:29 +00:00
|
|
|
version = "2.2.0-r1";
|
2019-05-05 02:02:52 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-04-03 17:41:29 +00:00
|
|
|
url = "https://github.com/aws-gbp/aws_common-release/archive/release/melodic/aws_common/2.2.0-1.tar.gz";
|
|
|
|
name = "2.2.0-1.tar.gz";
|
|
|
|
sha256 = "ca6b356a24bbfc7851da14716f3f90cdc751ce5d7620f5eda2401cdfebdddbfe";
|
2019-05-05 02:02:52 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "cmake";
|
2019-12-09 23:36:28 -05:00
|
|
|
buildInputs = [ ros-environment ];
|
2021-05-29 00:40:01 +00:00
|
|
|
checkInputs = [ gtest ];
|
|
|
|
propagatedBuildInputs = [ curl openssl util-linux zlib ];
|
2019-12-09 05:16:46 +00:00
|
|
|
nativeBuildInputs = [ catkin cmake ];
|
2019-05-05 02:02:52 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Common AWS SDK utilities, intended for use by ROS packages using the AWS SDK'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|