We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2af1796 commit 8b72746Copy full SHA for 8b72746
1 file changed
pkgs/by-name/li/libarchive/package.nix
@@ -112,6 +112,13 @@ stdenv.mkDerivation (finalAttrs: {
112
113
configureFlags = lib.optional (!xarSupport) "--without-xml2";
114
115
+ env = lib.optionalAttrs stdenv.hostPlatform.isDarwin {
116
+ # macOS iconv implementation is slightly broken since Sonoma
117
+ # https://github.com/Homebrew/homebrew-core/pull/199639
118
+ # https://savannah.gnu.org/bugs/index.php?66541
119
+ am_cv_func_iconv_works = "yes";
120
+ };
121
+
122
# https://github.com/libarchive/libarchive/issues/1475
123
doCheck = !stdenv.hostPlatform.isMusl;
124
0 commit comments