1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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:
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 {
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;