mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
The logic behind 'libiconvOrLibc' is flawed and that attribute should be removed.
See https://github.com/NixOS/nixpkgs/pull/2532 for further details.
This commit is contained in:
parent
3b873648b3
commit
8c75363c71
1 changed files with 3 additions and 0 deletions
|
@ -5085,6 +5085,9 @@ let
|
|||
then null
|
||||
else libiconv;
|
||||
|
||||
# The logic behind this attribute is broken: libiconvOrNull==null does
|
||||
# NOT imply libiconv=glibc! On Darwin, for example, we have a native
|
||||
# libiconv library which is not glibc.
|
||||
libiconvOrLibc = if libiconvOrNull == null then gcc.libc else libiconv;
|
||||
|
||||
# On non-GNU systems we need GNU Gettext for libintl.
|
||||
|
|
Loading…
Reference in a new issue