GNU gettext: Fix {Cyg,Dar}win hack (again).

svn path=/nixpkgs/trunk/; revision=17276
This commit is contained in:
Ludovic Courtès 2009-09-19 13:21:16 +00:00
parent 7c6b01a130
commit bf4162eb0b

View File

@ -43,7 +43,7 @@ stdenv.mkDerivation (rec {
(if (stdenv.system == "i686-darwin" || stdenv.system == "i686-cygwin") (if (stdenv.system == "i686-darwin" || stdenv.system == "i686-cygwin")
then { then {
buildInputs = [ buildInputs = [
stdenv.mkDerivation rec { (stdenv.mkDerivation rec {
name = "libiconv-1.13.1"; name = "libiconv-1.13.1";
src = fetchurl { src = fetchurl {
@ -56,7 +56,7 @@ stdenv.mkDerivation (rec {
homepage = http://www.gnu.org/software/libiconv/; homepage = http://www.gnu.org/software/libiconv/;
license = "LGPLv2+"; license = "LGPLv2+";
}; };
} })
]; ];
} }
else {})) else {}))