libintlOrEmpty: use actual gettext on non-glibc too (musl)
This commit is contained in:
parent
a65aa78e14
commit
6c3df22c5a
1 changed files with 1 additions and 1 deletions
|
@ -9762,7 +9762,7 @@ with pkgs;
|
|||
};
|
||||
|
||||
# On non-GNU systems we need GNU Gettext for libintl.
|
||||
libintlOrEmpty = stdenv.lib.optional (!stdenv.isLinux) gettext;
|
||||
libintlOrEmpty = stdenv.lib.optional (!stdenv.isLinux || hostPlatform.libc != "glibc") gettext;
|
||||
|
||||
libid3tag = callPackage ../development/libraries/libid3tag {
|
||||
gperf = gperf_3_0;
|
||||
|
|
Loading…
Reference in a new issue