1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 12:11:28 +00:00

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")
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 {}))