2005-10-12 16:00:20 +02:00
|
|
|
{ postscriptSupport ? true
|
|
|
|
, pdfSupport ? true
|
|
|
|
, pngSupport ? true
|
|
|
|
, stdenv, fetchurl, pkgconfig, x11, fontconfig, freetype
|
2008-04-23 12:48:10 +02:00
|
|
|
, zlib, libpng, pixman
|
2005-10-12 16:00:20 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert postscriptSupport -> zlib != null;
|
|
|
|
assert pngSupport -> libpng != null;
|
|
|
|
|
2009-01-24 22:32:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cairo-1.8.6";
|
2008-03-07 16:43:43 +01:00
|
|
|
|
2005-10-12 16:00:20 +02:00
|
|
|
src = fetchurl {
|
2009-01-24 22:32:25 +01:00
|
|
|
url = "http://cairographics.org/releases/${name}.tar.gz";
|
|
|
|
sha256 = "0d9mfwq7r66j85hqjcjavwbn7c8gdaqnahmmiyz5iwpc1jplg8wk";
|
2005-10-12 16:00:20 +02:00
|
|
|
};
|
2008-03-07 16:43:43 +01:00
|
|
|
|
2005-10-12 16:00:20 +02:00
|
|
|
buildInputs = [
|
2008-04-23 12:48:10 +02:00
|
|
|
pkgconfig x11 fontconfig freetype pixman
|
2005-10-12 16:00:20 +02:00
|
|
|
];
|
2008-03-07 16:43:43 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs =
|
|
|
|
stdenv.lib.optional postscriptSupport zlib ++
|
|
|
|
stdenv.lib.optional pngSupport libpng;
|
|
|
|
|
2005-10-12 16:00:20 +02:00
|
|
|
configureFlags =
|
|
|
|
(if pdfSupport then ["--enable-pdf"] else []);
|
2008-03-07 16:43:43 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A 2D graphics library with support for multiple output devices";
|
2009-01-24 22:32:25 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Cairo is a 2D graphics library with support for multiple output
|
|
|
|
devices. Currently supported output targets include the X
|
|
|
|
Window System, Quartz, Win32, image buffers, PostScript, PDF,
|
|
|
|
and SVG file output. Experimental backends include OpenGL
|
|
|
|
(through glitz), XCB, BeOS, OS/2, and DirectFB.
|
|
|
|
|
|
|
|
Cairo is designed to produce consistent output on all output
|
|
|
|
media while taking advantage of display hardware acceleration
|
|
|
|
when available (e.g., through the X Render Extension).
|
|
|
|
'';
|
|
|
|
|
2008-03-07 16:43:43 +01:00
|
|
|
homepage = http://cairographics.org/;
|
2009-01-24 22:32:25 +01:00
|
|
|
|
|
|
|
licenses = [ "LGPLv2+" "MPLv1" ];
|
2008-03-07 16:43:43 +01:00
|
|
|
};
|
2005-10-12 16:00:20 +02:00
|
|
|
}
|