summary refs log tree commit diff
path: root/pkgs/development/libraries/gettext
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-03-10 18:08:01 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-03-10 18:09:03 +0100
commit4b58636c0d798506342917591a6ba90eb080f1c1 (patch)
tree38a1602531f257d515a60122a03c48f7f5f907ed /pkgs/development/libraries/gettext
parentfcfe8ecc33c4e4b122f141470831e7b98954d4a5 (diff)
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.
Diffstat (limited to 'pkgs/development/libraries/gettext')
-rw-r--r--pkgs/development/libraries/gettext/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix
index c35f8f3521e22..81918b7c5e344 100644
--- a/pkgs/development/libraries/gettext/default.nix
+++ b/pkgs/development/libraries/gettext/default.nix
@@ -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;