forked from mirrors/nixpkgs
Revert "gettext: fix build on darwin"
This reverts commit fc15721871
.
I trusted the referred comment (and maybe misunderstood it),
but the commit wasn't a good idea at all.
This commit is contained in:
parent
fcfe8ecc33
commit
4b58636c0d
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, libiconv, libintlOrEmpty, xz }:
|
||||
{ stdenv, fetchurl, libiconv, xz }:
|
||||
|
||||
stdenv.mkDerivation (rec {
|
||||
name = "gettext-0.18.2";
|
||||
|
@ -30,8 +30,7 @@ stdenv.mkDerivation (rec {
|
|||
fi
|
||||
'';
|
||||
|
||||
buildInputs = [ xz ]
|
||||
++ libintlOrEmpty ++ stdenv.lib.optional (!stdenv.isLinux) libiconv;
|
||||
buildInputs = [ xz ] ++ stdenv.lib.optional (!stdenv.isLinux) libiconv;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue