pango needs libintl, which is provided by gettext on Darwin.

svn path=/nixpkgs/trunk/; revision=17872
This commit is contained in:
Peter Simons 2009-10-19 09:17:30 +00:00
parent 61882544d8
commit f947a05759
2 changed files with 8 additions and 8 deletions

View File

@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "1cls9cbk6sx81101gh2pkiri8v14shqpvy37cydbh8scs4yk8370";
};
buildInputs = [pkgconfig];
buildInputs = [pkgconfig] ++ (if stdenv.system == "i686-darwin" then [gettext] else []);
propagatedBuildInputs = [x11 glib cairo libpng];

View File

@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "1hx6v6w3xk9wfcrb26gg7rrfl6m6ykxk2bqm67aqdzql4vysxgz1";
};
buildInputs = [pkgconfig];
buildInputs = [pkgconfig] ++ (if stdenv.system == "i686-darwin" then [gettext] else []);
propagatedBuildInputs = [x11 glib cairo libpng];