* Latest GTK+, glib, ATK, Pango, FreeType, Cairo, Fontconfig.

svn path=/nixpkgs/branches/stdenv-updates/; revision=11017
This commit is contained in:
Eelco Dolstra
2008-03-07 15:43:43 +00:00
parent 7ba8833f14
commit 5ebab60b5e
11 changed files with 167 additions and 15 deletions

View File

@@ -9,19 +9,31 @@ assert postscriptSupport -> zlib != null;
assert pngSupport -> libpng != null;
stdenv.mkDerivation {
name = "cairo-1.4.6";
name = "cairo-1.4.14";
src = fetchurl {
url = http://cairographics.org/releases/cairo-1.4.6.tar.gz;
url = http://cairographics.org/releases/cairo-1.4.14.tar.gz;
sha256 = "15l87pzmlwbxk6m4102g2zln4drq0l32qs60ccs5bpmcnky2lqya";
};
patches = [
# http://bugs.freedesktop.org/show_bug.cgi?id=10989
./isspace.patch
];
buildInputs = [
pkgconfig x11 fontconfig freetype
(if pngSupport then libpng else null)
];
propagatedBuildInputs = [
(if postscriptSupport then zlib else null)
(if pngSupport then libpng else null)
];
propagatedBuildInputs =
stdenv.lib.optional postscriptSupport zlib ++
stdenv.lib.optional pngSupport libpng;
configureFlags =
(if pdfSupport then ["--enable-pdf"] else []);
meta = {
description = "A 2D graphics library with support for multiple output devices";
homepage = http://cairographics.org/;
};
}