nix-ros-overlay/distros/rolling/aws-sdk-cpp-vendor/default.nix

27 lines
965 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# 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";
version = "0.2.1-r1";
src = fetchurl {
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";
};
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 ];
};
}