forked from mirrors/nixpkgs
libiconvOrNull: Do not use an external libiconv on glibc systems.
This commit is contained in:
parent
6adc5cedae
commit
d53cb937f5
1 changed files with 1 additions and 1 deletions
|
@ -4146,7 +4146,7 @@ let
|
||||||
|
|
||||||
libiconvOrEmpty = if (libiconvOrNull == null) then [] else libiconv;
|
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;
|
libiconvOrLibc = if (libiconvOrNull == null) then gcc.libc else libiconv;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue