2023-08-25 13:31:58 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-08-25 13:31:58 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-vendor-package, ament-lint-auto, ament-lint-common, curl, openssl, zlib }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-aws-sdk-cpp-vendor";
|
2023-10-06 13:48:50 +00:00
|
|
|
version = "0.2.1-r1";
|
2023-08-25 13:31:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-10-06 13:48:50 +00:00
|
|
|
url = "https://github.com/ros2-gbp/aws_sdk_cpp_vendor-release/archive/release/rolling/aws_sdk_cpp_vendor/0.2.1-1.tar.gz";
|
|
|
|
name = "0.2.1-1.tar.gz";
|
|
|
|
sha256 = "5167c0f54ba538b151f717bbed423f909d5a89d386da5cef0b702c7d3a359ba0";
|
2023-08-25 13:31:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ament-cmake-vendor-package curl ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ openssl zlib ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-vendor-package curl ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A vendor package for aws-sdk-cpp'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|