···2133121332 libiconvReal = callPackage ../development/libraries/libiconv { };
213330000000021334 # On non-GNU systems we need GNU Gettext for libintl.
21335 libintl = if stdenv.hostPlatform.libc != "glibc" then gettext else null;
21336
···2133121332 libiconvReal = callPackage ../development/libraries/libiconv { };
2133321334+ iconv =
21335+ if lib.elem stdenv.hostPlatform.libc [ "glibc" "musl" ] then
21336+ lib.getBin stdenv.cc.libc
21337+ else if stdenv.hostPlatform.isDarwin then
21338+ lib.getBin darwin.libiconv
21339+ else
21340+ lib.getBin libiconvReal;
21341+21342 # On non-GNU systems we need GNU Gettext for libintl.
21343 libintl = if stdenv.hostPlatform.libc != "glibc" then gettext else null;
21344