2016-11-02 16:30:50 +00:00
|
|
|
{ stdenv, fetchurl, fetchFromGitHub, fetchpatch, pkgconfig, libiconv
|
|
|
|
, libintlOrEmpty, expat, zlib, libpng, pixman, fontconfig, freetype, xorg
|
2011-09-20 07:22:14 +01:00
|
|
|
, gobjectSupport ? true, glib
|
2013-05-30 13:43:26 +01:00
|
|
|
, xcbSupport ? true # no longer experimental since 1.12
|
|
|
|
, glSupport ? true, mesa_noglu ? null # mesa is no longer a big dependency
|
2013-06-13 21:11:34 +01:00
|
|
|
, pdfSupport ? true
|
2016-03-29 17:04:46 +01:00
|
|
|
, darwin
|
2005-10-12 15:00:20 +01:00
|
|
|
}:
|
|
|
|
|
2013-05-30 13:43:26 +01:00
|
|
|
assert glSupport -> mesa_noglu != null;
|
|
|
|
|
2017-02-09 01:52:13 +00:00
|
|
|
let inherit (stdenv.lib) optional optionals; in
|
2005-10-12 15:00:20 +01:00
|
|
|
|
2009-01-24 21:32:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-06-17 12:56:18 +01:00
|
|
|
name = "cairo-1.14.10";
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2005-10-12 15:00:20 +01:00
|
|
|
src = fetchurl {
|
2012-05-16 21:49:31 +01:00
|
|
|
url = "http://cairographics.org/releases/${name}.tar.xz";
|
2017-06-17 12:56:18 +01:00
|
|
|
sha256 = "02banr0wxckq62nbhc3mqidfdh2q956i2r7w2hd9bjgjb238g1vy";
|
2005-10-12 15:00:20 +01:00
|
|
|
};
|
2008-03-07 15:43:43 +00:00
|
|
|
|
2016-11-02 16:30:50 +00:00
|
|
|
patches = [
|
|
|
|
# from https://bugs.freedesktop.org/show_bug.cgi?id=98165
|
|
|
|
(fetchpatch {
|
|
|
|
name = "cairo-CVE-2016-9082.patch";
|
|
|
|
url = "https://bugs.freedesktop.org/attachment.cgi?id=127421";
|
|
|
|
sha256 = "03sfyaclzlglip4pvfjb4zj4dmm8mlphhxl30mb6giinkc74bfri";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2016-09-01 10:07:23 +01:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2015-10-28 18:38:17 +00:00
|
|
|
outputBin = "dev"; # very small
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2016-03-29 17:04:46 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
libiconv
|
|
|
|
] ++ libintlOrEmpty ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
CoreGraphics
|
2016-12-23 21:10:06 +00:00
|
|
|
CoreText
|
2017-01-09 19:58:16 +00:00
|
|
|
ApplicationServices
|
2016-03-29 17:04:46 +01:00
|
|
|
Carbon
|
|
|
|
]);
|
2008-10-14 13:08:07 +01:00
|
|
|
|
2008-03-07 15:43:43 +00:00
|
|
|
propagatedBuildInputs =
|
2016-04-19 17:05:40 +01:00
|
|
|
with xorg; [ libXext fontconfig expat freetype pixman zlib libpng libXrender ]
|
2013-05-30 13:43:26 +01:00
|
|
|
++ optionals xcbSupport [ libxcb xcbutil ]
|
|
|
|
++ optional gobjectSupport glib
|
2015-10-06 18:57:45 +01:00
|
|
|
++ optional glSupport mesa_noglu
|
|
|
|
; # TODO: maybe liblzo but what would it be for here?
|
2013-05-30 13:43:26 +01:00
|
|
|
|
2016-03-29 17:04:46 +01:00
|
|
|
configureFlags = if stdenv.isDarwin then [
|
|
|
|
"--disable-dependency-tracking"
|
|
|
|
"--enable-quartz"
|
|
|
|
"--enable-quartz-font"
|
|
|
|
"--enable-quartz-image"
|
|
|
|
"--enable-ft"
|
|
|
|
] else ([ "--enable-tee" ]
|
2013-05-30 13:43:26 +01:00
|
|
|
++ optional xcbSupport "--enable-xcb"
|
|
|
|
++ optional glSupport "--enable-gl"
|
2013-06-13 14:12:43 +01:00
|
|
|
++ optional pdfSupport "--enable-pdf"
|
2016-03-29 17:04:46 +01:00
|
|
|
);
|
2008-03-07 15:43:43 +00:00
|
|
|
|
2013-01-29 12:48:25 +00:00
|
|
|
preConfigure =
|
2012-10-18 09:53:05 +01:00
|
|
|
# On FreeBSD, `-ldl' doesn't exist.
|
2015-10-06 18:57:45 +01:00
|
|
|
stdenv.lib.optionalString stdenv.isFreeBSD
|
2012-10-18 11:13:07 +01:00
|
|
|
'' for i in "util/"*"/Makefile.in" boilerplate/Makefile.in
|
|
|
|
do
|
|
|
|
cat "$i" | sed -es/-ldl//g > t
|
|
|
|
mv t "$i"
|
|
|
|
done
|
2015-10-06 18:57:45 +01:00
|
|
|
''
|
|
|
|
+
|
2013-06-13 14:12:43 +01:00
|
|
|
''
|
|
|
|
# Work around broken `Requires.private' that prevents Freetype
|
|
|
|
# `-I' flags to be propagated.
|
|
|
|
sed -i "src/cairo.pc.in" \
|
2015-10-28 18:38:17 +00:00
|
|
|
-es'|^Cflags:\(.*\)$|Cflags: \1 -I${freetype.dev}/include/freetype2 -I${freetype.dev}/include|g'
|
2013-06-13 14:12:43 +01:00
|
|
|
'';
|
2009-01-25 11:50:29 +00:00
|
|
|
|
2012-05-16 21:49:31 +01:00
|
|
|
enableParallelBuilding = true;
|
2009-01-25 11:50:29 +00:00
|
|
|
|
2013-09-11 09:51:46 +01:00
|
|
|
postInstall = stdenv.lib.optionalString stdenv.isDarwin glib.flattenInclude;
|
2011-02-08 17:57:00 +00:00
|
|
|
|
2015-05-27 20:56:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
2008-03-07 15:43:43 +00:00
|
|
|
description = "A 2D graphics library with support for multiple output devices";
|
2009-01-24 21:32:25 +00: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 15:43:43 +00:00
|
|
|
homepage = http://cairographics.org/;
|
2009-01-24 21:32:25 +00:00
|
|
|
|
2015-05-27 20:56:04 +01:00
|
|
|
license = with licenses; [ lgpl2Plus mpl10 ];
|
2011-09-26 13:07:24 +01:00
|
|
|
|
2015-05-27 20:56:04 +01:00
|
|
|
platforms = platforms.all;
|
2008-03-07 15:43:43 +00:00
|
|
|
};
|
2005-10-12 15:00:20 +01:00
|
|
|
}
|