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
2 changed files with 8 additions and 8 deletions
|
@ -2,14 +2,14 @@ args: with args;
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pango-1.24.1";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/pango/1.24/${name}.tar.bz2";
|
||||
sha256 = "1cls9cbk6sx81101gh2pkiri8v14shqpvy37cydbh8scs4yk8370";
|
||||
};
|
||||
|
||||
buildInputs = [pkgconfig];
|
||||
|
||||
|
||||
buildInputs = [pkgconfig] ++ (if stdenv.system == "i686-darwin" then [gettext] else []);
|
||||
|
||||
propagatedBuildInputs = [x11 glib cairo libpng];
|
||||
|
||||
meta = {
|
||||
|
|
|
@ -2,14 +2,14 @@ args: with args;
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pango-1.26.0";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/pango/1.26/${name}.tar.bz2";
|
||||
sha256 = "1hx6v6w3xk9wfcrb26gg7rrfl6m6ykxk2bqm67aqdzql4vysxgz1";
|
||||
};
|
||||
|
||||
buildInputs = [pkgconfig];
|
||||
|
||||
|
||||
buildInputs = [pkgconfig] ++ (if stdenv.system == "i686-darwin" then [gettext] else []);
|
||||
|
||||
propagatedBuildInputs = [x11 glib cairo libpng];
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue