3
0
Fork 0
forked from mirrors/nixpkgs

libunistring: Don't propagate glibc

On Linux, libiconv is an alias of glibc. Propagating glibc breaks
using GCC 6 as an override (not sure why). So let's not do that.
This commit is contained in:
Eelco Dolstra 2016-10-11 15:07:29 +02:00
parent 1244df4103
commit dfc94720b8

View file

@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
patches = stdenv.lib.optional stdenv.isDarwin [ ./clang.patch ];
propagatedBuildInputs = [ libiconv ];
buildInputs = [ libiconv ];
configureFlags = [
"--with-libiconv-prefix=${libiconv}"