Merge pull request #28766 from obsidiansystems/gettext

gettext: libiconv should be a buildInput
This commit is contained in:
John Ericson 2017-08-30 17:11:35 -04:00 committed by GitHub
commit 22cd889a28

View file

@ -45,7 +45,9 @@ stdenv.mkDerivation rec {
fi
'';
nativeBuildInputs = [ xz xz.bin ] ++ stdenv.lib.optional (!stdenv.isLinux && !hostPlatform.isCygwin) libiconv; # HACK, see #10874 (and 14664)
nativeBuildInputs = [ xz xz.bin ];
# HACK, see #10874 (and 14664)
buildInputs = stdenv.lib.optional (!stdenv.isLinux && !hostPlatform.isCygwin) libiconv;
enableParallelBuilding = true;