mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 01:42:24 +03:00
26 lines
963 B
Nix
26 lines
963 B
Nix
|
|
# Copyright 2025 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-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/aws_sdk_cpp_vendor-release/archive/release/rolling/aws_sdk_cpp_vendor/0.2.1-2.tar.gz";
|
|
name = "0.2.1-2.tar.gz";
|
|
sha256 = "8f6e1480f274cf4ffc56ac6c0bf58058e82f92f211add63ec29ed19fdbff2e9c";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|