2016-12-22 14:04:49 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, curl, openssl, zlib
|
2016-02-18 18:04:02 +00:00
|
|
|
, # Allow building a limited set of APIs, e.g. ["s3" "ec2"].
|
|
|
|
apis ? ["*"]
|
|
|
|
, # Whether to enable AWS' custom memory management.
|
|
|
|
customMemoryManagement ? true
|
2017-11-13 06:34:59 +00:00
|
|
|
, darwin
|
2016-02-18 18:04:02 +00:00
|
|
|
}:
|
2016-02-16 12:41:19 +00:00
|
|
|
|
2017-02-02 01:18:26 +00:00
|
|
|
let
|
|
|
|
loaderVar =
|
|
|
|
if stdenv.isLinux
|
|
|
|
then "LD_LIBRARY_PATH"
|
|
|
|
else if stdenv.isDarwin
|
|
|
|
then "DYLD_LIBRARY_PATH"
|
|
|
|
else throw "Unsupported system!";
|
|
|
|
in stdenv.mkDerivation rec {
|
2016-02-16 12:41:19 +00:00
|
|
|
name = "aws-sdk-cpp-${version}";
|
2018-11-15 18:28:26 +00:00
|
|
|
version = "1.6.52";
|
2016-02-16 12:41:19 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "awslabs";
|
|
|
|
repo = "aws-sdk-cpp";
|
|
|
|
rev = version;
|
2018-11-15 18:28:26 +00:00
|
|
|
sha256 = "17hyq6rv1xl3f70p2pfkkxm86gbfimq2pwpakv1wv3xjibmppbrf";
|
2016-02-16 12:41:19 +00:00
|
|
|
};
|
2016-12-22 14:04:49 +00:00
|
|
|
|
2016-12-08 13:19:19 +00:00
|
|
|
# FIXME: might be nice to put different APIs in different outputs
|
|
|
|
# (e.g. libaws-cpp-sdk-s3.so in output "s3").
|
|
|
|
outputs = [ "out" "dev" ];
|
2017-07-05 15:04:54 +01:00
|
|
|
separateDebugInfo = stdenv.isLinux;
|
2016-12-08 13:19:19 +00:00
|
|
|
|
2017-12-10 15:14:24 +00:00
|
|
|
nativeBuildInputs = [ cmake curl ];
|
2017-11-13 06:34:59 +00:00
|
|
|
buildInputs = [ zlib curl openssl ]
|
|
|
|
++ lib.optionals (stdenv.isDarwin &&
|
|
|
|
((builtins.elem "text-to-speech" apis) ||
|
|
|
|
(builtins.elem "*" apis)))
|
|
|
|
(with darwin.apple_sdk.frameworks; [ CoreAudio AudioToolbox ]);
|
2016-02-16 12:41:19 +00:00
|
|
|
|
2016-02-18 18:04:02 +00:00
|
|
|
cmakeFlags =
|
|
|
|
lib.optional (!customMemoryManagement) "-DCUSTOM_MEMORY_MANAGEMENT=0"
|
2018-01-28 00:46:12 +00:00
|
|
|
++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "-DENABLE_TESTING=OFF"
|
2016-02-18 18:04:02 +00:00
|
|
|
++ lib.optional (apis != ["*"])
|
2016-11-28 15:14:35 +00:00
|
|
|
"-DBUILD_ONLY=${lib.concatStringsSep ";" apis}";
|
2016-07-31 15:02:56 +01:00
|
|
|
|
2016-02-16 12:41:19 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-02-02 01:18:26 +00:00
|
|
|
# Behold the escaping nightmare below on loaderVar o.O
|
2016-02-16 12:41:19 +00:00
|
|
|
preBuild =
|
|
|
|
''
|
|
|
|
# Ensure that the unit tests can find the *.so files.
|
|
|
|
for i in testing-resources aws-cpp-sdk-*; do
|
2017-02-02 01:18:26 +00:00
|
|
|
export ${loaderVar}=$(pwd)/$i:''${${loaderVar}}
|
2016-02-16 12:41:19 +00:00
|
|
|
done
|
2017-06-16 19:25:05 +01:00
|
|
|
'';
|
2017-06-16 18:17:22 +01:00
|
|
|
|
2017-06-16 19:25:05 +01:00
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
rm aws-cpp-sdk-core-tests/aws/auth/AWSCredentialsProviderTest.cpp
|
2016-02-16 12:41:19 +00:00
|
|
|
'';
|
|
|
|
|
2018-02-18 15:52:37 +00:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=noexcept-type" ];
|
|
|
|
|
2016-02-16 12:41:19 +00:00
|
|
|
meta = {
|
|
|
|
description = "A C++ interface for Amazon Web Services";
|
|
|
|
homepage = https://github.com/awslabs/aws-sdk-cpp;
|
|
|
|
license = lib.licenses.asl20;
|
2016-12-22 14:04:49 +00:00
|
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
2016-02-16 12:41:19 +00:00
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
|
|
|
};
|
|
|
|
}
|