8 lines
208 B
Bash
8 lines
208 B
Bash
|
# libintl must be listed in load flags on non-Glibc
|
||
|
# it doesn't hurt to have it in Glibc either though
|
||
|
iconvLdflags() {
|
||
|
export NIX_LDFLAGS="$NIX_LDFLAGS -iconv"
|
||
|
}
|
||
|
|
||
|
addEnvHooks "$hostOffset" iconvLdflags
|