fix travis evaluation by providing explicit libiconv for the rare cases

that need it, like uclibc
This commit is contained in:
Eric Seidel
2015-02-17 20:10:26 -08:00
parent a78d164b1e
commit d2a987d6e3
2 changed files with 8 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, linuxHeaders, libiconv, cross ? null, gccCross ? null,
{stdenv, fetchurl, linuxHeaders, libiconvReal, cross ? null, gccCross ? null,
extraConfig ? ""}:
assert stdenv.isLinux;
@@ -95,7 +95,7 @@ stdenv.mkDerivation {
passthru = {
# Derivations may check for the existance of this attribute, to know what to link to.
inherit libiconv;
libiconv = libiconvReal;
};
meta = {