From bf4162eb0b3435c09ade5dc4dada99431e5b13df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sat, 19 Sep 2009 13:21:16 +0000 Subject: [PATCH] GNU gettext: Fix {Cyg,Dar}win hack (again). svn path=/nixpkgs/trunk/; revision=17276 --- pkgs/development/libraries/gettext/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix index 627b918897a..1229c0381df 100644 --- a/pkgs/development/libraries/gettext/default.nix +++ b/pkgs/development/libraries/gettext/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation (rec { (if (stdenv.system == "i686-darwin" || stdenv.system == "i686-cygwin") then { buildInputs = [ - stdenv.mkDerivation rec { + (stdenv.mkDerivation rec { name = "libiconv-1.13.1"; src = fetchurl { @@ -56,7 +56,7 @@ stdenv.mkDerivation (rec { homepage = http://www.gnu.org/software/libiconv/; license = "LGPLv2+"; }; - } + }) ]; } else {}))