Merge pull request #69268 from matthewbauer/aws-sdk-cpp-fix-musl
aws-sdk-cpp: fix libatomic detection
This commit is contained in:
commit
b66538e163
@ -1,4 +1,4 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, cmake, curl, openssl, zlib
|
{ lib, stdenv, fetchFromGitHub, cmake, curl, openssl, zlib, fetchpatch
|
||||||
, aws-c-common, aws-c-event-stream, aws-checksums
|
, aws-c-common, aws-c-event-stream, aws-checksums
|
||||||
, CoreAudio, AudioToolbox
|
, CoreAudio, AudioToolbox
|
||||||
, # Allow building a limited set of APIs, e.g. ["s3" "ec2"].
|
, # Allow building a limited set of APIs, e.g. ["s3" "ec2"].
|
||||||
@ -50,6 +50,13 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
__darwinAllowLocalNetworking = true;
|
__darwinAllowLocalNetworking = true;
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/aws/aws-sdk-cpp/commit/42991ab549087c81cb630e5d3d2413e8a9cf8a97.patch";
|
||||||
|
sha256 = "0myq5cm3lvl5r56hg0sc0zyn1clbkd9ys0wr95ghw6bhwpvfv8gr";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A C++ interface for Amazon Web Services";
|
description = "A C++ interface for Amazon Web Services";
|
||||||
homepage = https://github.com/awslabs/aws-sdk-cpp;
|
homepage = https://github.com/awslabs/aws-sdk-cpp;
|
||||||
|
Loading…
Reference in New Issue
Block a user