top-level/all-packages: Add case for providing iconv bin on FreeBSD

This commit is contained in:
Audrey Dutcher
2024-05-19 18:46:16 +02:00
committed by Sandro Jäckel
parent 51c1a3e46f
commit 6b39c14f0f
+2
View File
@@ -22484,6 +22484,8 @@ with pkgs;
lib.getBin stdenv.cc.libc
else if stdenv.hostPlatform.isDarwin then
lib.getBin libiconv
else if stdenv.hostPlatform.isFreeBSD then
lib.getBin freebsd.iconv
else
lib.getBin libiconvReal;