1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/rolling/aws-sdk-cpp-vendor/default.nix

26 lines
965 B
Nix

# Copyright 2023 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.1.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/aws_sdk_cpp_vendor-release/archive/release/rolling/aws_sdk_cpp_vendor/0.1.1-1.tar.gz";
name = "0.1.1-1.tar.gz";
sha256 = "c92015ce6fd7b08dc33cab87a6176623f64246f224630861f519136f83e15993";
};
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 ];
};
}