Revert "gettext: fix build on darwin"

This reverts commit fc15721871776672488c8b2e85424e4ddcf56cd4.

I trusted the referred comment (and maybe misunderstood it),
but the commit wasn't a good idea at all.
This commit is contained in:
Vladimír Čunát 2015-03-10 18:08:01 +01:00
parent fcfe8ecc33
commit 4b58636c0d

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, libiconv, libintlOrEmpty, xz }: { stdenv, fetchurl, libiconv, xz }:
stdenv.mkDerivation (rec { stdenv.mkDerivation (rec {
name = "gettext-0.18.2"; name = "gettext-0.18.2";
@ -30,8 +30,7 @@ stdenv.mkDerivation (rec {
fi fi
''; '';
buildInputs = [ xz ] buildInputs = [ xz ] ++ stdenv.lib.optional (!stdenv.isLinux) libiconv;
++ libintlOrEmpty ++ stdenv.lib.optional (!stdenv.isLinux) libiconv;
enableParallelBuilding = true; enableParallelBuilding = true;