3
0
Fork 0
forked from mirrors/nixpkgs

gettext: Build on non-GNU systems.

svn path=/nixpkgs/trunk/; revision=17775
This commit is contained in:
Ludovic Courtès 2009-10-13 10:03:44 +00:00
parent 257ffc8e73
commit 37a65be4ff

View file

@ -40,7 +40,7 @@ stdenv.mkDerivation (rec {
//
(if (stdenv.system == "i686-darwin" || stdenv.system == "i686-cygwin")
(if (!stdenv.isLinux) # any non-GNU system
then {
buildInputs = [ libiconv ];
}