diff --git a/pkgs/development/haskell-modules/configuration-darwin.nix b/pkgs/development/haskell-modules/configuration-darwin.nix index 16e5d2613fb2e..73445125a0c45 100644 --- a/pkgs/development/haskell-modules/configuration-darwin.nix +++ b/pkgs/development/haskell-modules/configuration-darwin.nix @@ -420,4 +420,9 @@ self: super: ({ "-p" "!/issue-108/" ]; }) super.ad; + + # Fixes missing libcharset.h: + # https://hydra.nixos.org/build/259447667 + # not sure why this is needed only on x86 darwin. is there potentially some deeper libiconv / stdenv issue? + with-utf8 = overrideCabal (_ : { extraLibraries = [pkgs.libiconv]; }) super.with-utf8; })