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

64 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, curl, openssl, zlib
, # 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}";
2017-12-14 13:51:47 +00:00
version = "1.3.22";
2016-02-16 12:41:19 +00:00
src = fetchFromGitHub {
owner = "awslabs";
repo = "aws-sdk-cpp";
rev = version;
2017-12-14 13:51:47 +00:00
sha256 = "0sdgy8kqhxnw7n0sw4m3p3ay7yic3rhad5ab8m5lbx61ad9bq3c2";
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 ];
buildInputs = [ zlib curl openssl ];
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
'';
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 ];
};
}