Skip to content

Commit

Permalink
nix: disable aws support on musl
Browse files Browse the repository at this point in the history
This is just a temporary measure until musl
compatibility is restored to aws-c-common.
  • Loading branch information
r-burns committed Feb 6, 2021
1 parent 33f50b3 commit 7426b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/tools/package-management/nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ common =
, stateDir
, confDir
, withLibseccomp ? lib.any (lib.meta.platformMatch stdenv.hostPlatform) libseccomp.meta.platforms, libseccomp
, withAWS ? !enableStatic && (stdenv.isLinux || stdenv.isDarwin), aws-sdk-cpp
, withAWS ? !enableStatic && !stdenv.hostPlatform.isMusl && (stdenv.isLinux || stdenv.isDarwin), aws-sdk-cpp
, enableStatic ? stdenv.hostPlatform.isStatic
, name, suffix ? "", src
, patches ? [ ]
Expand Down

0 comments on commit 7426b18

Please sign in to comment.