nixpkgs/pkgs/development/libraries/aws-sdk-cpp/default.nix

73 lines
2.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, curl, openssl, zlib
, CoreAudio, AudioToolbox
, # Allow building a limited set of APIs, e.g. ["s3" "ec2"].
apis ? ["*"]
, # Whether to enable AWS' custom memory management.
customMemoryManagement ? true
}:
2016-02-16 12:41:19 +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-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 14:04:54 +00: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)))
[ CoreAudio AudioToolbox ];
2016-02-16 12:41:19 +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"
++ lib.optional (apis != ["*"])
2016-11-28 15:14:35 +00:00
"-DBUILD_ONLY=${lib.concatStringsSep ";" apis}";
2016-02-16 12:41:19 +00:00
enableParallelBuilding = true;
# 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
export ${loaderVar}=$(pwd)/$i:''${${loaderVar}}
2016-02-16 12:41:19 +00:00
done
'';
preConfigure =
''
rm aws-cpp-sdk-core-tests/aws/auth/AWSCredentialsProviderTest.cpp
2016-02-16 12:41:19 +00:00
'';
NIX_CFLAGS_COMPILE = [ "-Wno-error=noexcept-type" ];
__darwinAllowLocalNetworking = true;
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;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
2016-02-16 12:41:19 +00:00
maintainers = [ lib.maintainers.eelco ];
};
}