mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
libiconvOrNull: Fix libc check.
This commit is contained in:
parent
11602dad82
commit
45ce8c915d
@ -4146,7 +4146,10 @@ let
|
||||
|
||||
libiconvOrEmpty = if (libiconvOrNull == null) then [] else libiconv;
|
||||
|
||||
libiconvOrNull = if ((gcc ? libc) || stdenv.isGlibc) then null else libiconv;
|
||||
libiconvOrNull =
|
||||
if ((gcc ? libc && (gcc.libc != null)) || stdenv.isGlibc)
|
||||
then null
|
||||
else libiconv;
|
||||
|
||||
libiconvOrLibc = if (libiconvOrNull == null) then gcc.libc else libiconv;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user