pango needs libintl, which is provided by gettext on Darwin.
svn path=/nixpkgs/trunk/; revision=17872
This commit is contained in:
parent
61882544d8
commit
f947a05759
@ -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];
|
||||
|
||||
|
@ -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];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user