forked from mirrors/nixpkgs
libiconvOrNull: Do not use an external libiconv on glibc systems.
This commit is contained in:
parent
6adc5cedae
commit
d53cb937f5
|
@ -4146,7 +4146,7 @@ let
|
|||
|
||||
libiconvOrEmpty = if (libiconvOrNull == null) then [] else libiconv;
|
||||
|
||||
libiconvOrNull = if gcc ? libc then null else libiconv;
|
||||
libiconvOrNull = if ((gcc ? libc) || stdenv.isGlibc) then null else libiconv;
|
||||
|
||||
libiconvOrLibc = if (libiconvOrNull == null) then gcc.libc else libiconv;
|
||||
|
||||
|
|
Loading…
Reference in a new issue