mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
aws-sdk-cpp: fix darwin sandbox build
The tests use localhost networking, which is disallowed by default in the darwin sandbox.
This commit is contained in:
parent
91c7157919
commit
a4a7fd8d68
|
@ -1,9 +1,9 @@
|
|||
{ 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
|
||||
, darwin
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -34,10 +34,10 @@ in stdenv.mkDerivation rec {
|
|||
++ lib.optionals (stdenv.isDarwin &&
|
||||
((builtins.elem "text-to-speech" apis) ||
|
||||
(builtins.elem "*" apis)))
|
||||
(with darwin.apple_sdk.frameworks; [ CoreAudio AudioToolbox ]);
|
||||
[ CoreAudio AudioToolbox ];
|
||||
|
||||
cmakeFlags =
|
||||
lib.optional (!customMemoryManagement) "-DCUSTOM_MEMORY_MANAGEMENT=0"
|
||||
lib.optional (!customMemoryManagement) "-DCUSTOM_MEMORY_MANAGEMENT=0"
|
||||
++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "-DENABLE_TESTING=OFF"
|
||||
++ lib.optional (apis != ["*"])
|
||||
"-DBUILD_ONLY=${lib.concatStringsSep ";" apis}";
|
||||
|
@ -60,6 +60,8 @@ in stdenv.mkDerivation rec {
|
|||
|
||||
NIX_CFLAGS_COMPILE = [ "-Wno-error=noexcept-type" ];
|
||||
|
||||
__darwinAllowLocalNetworking = true;
|
||||
|
||||
meta = {
|
||||
description = "A C++ interface for Amazon Web Services";
|
||||
homepage = https://github.com/awslabs/aws-sdk-cpp;
|
||||
|
|
|
@ -9369,7 +9369,9 @@ in
|
|||
inherit (darwin.apple_sdk.frameworks) AudioUnit CoreServices;
|
||||
};
|
||||
|
||||
aws-sdk-cpp = callPackage ../development/libraries/aws-sdk-cpp { };
|
||||
aws-sdk-cpp = callPackage ../development/libraries/aws-sdk-cpp {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreAudio AudioToolbox;
|
||||
};
|
||||
|
||||
babl = callPackage ../development/libraries/babl { };
|
||||
|
||||
|
@ -21533,7 +21535,7 @@ in
|
|||
|
||||
bftools = callPackage ../applications/science/biology/bftools { };
|
||||
|
||||
cmtk = callPackage ../applications/science/biology/cmtk { };
|
||||
cmtk = callPackage ../applications/science/biology/cmtk { };
|
||||
|
||||
conglomerate = callPackage ../applications/science/biology/conglomerate { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue