2019-02-20 08:38:45 +00:00
|
|
|
{ config, stdenv, fetchurl, fetchpatch, pkgconfig, libiconv
|
2019-04-16 21:56:48 +01:00
|
|
|
, libintl, expat, zlib, libpng, pixman, fontconfig, freetype
|
|
|
|
, x11Support? !stdenv.isDarwin, libXext, libXrender
|
2011-09-20 07:22:14 +01:00
|
|
|
, gobjectSupport ? true, glib
|
2019-04-16 21:56:48 +01:00
|
|
|
, xcbSupport ? x11Support, libxcb, xcbutil # no longer experimental since 1.12
|
2019-05-28 19:52:34 +01:00
|
|
|
, libGLSupported ? stdenv.lib.elem stdenv.hostPlatform.system stdenv.lib.platforms.mesaPlatforms
|
2019-12-03 00:32:26 +00:00
|
|
|
, glSupport ? config.cairo.gl or (libGLSupported && stdenv.isLinux)
|
2019-11-10 16:44:34 +00:00
|
|
|
, libGL ? null # libGLU libGL 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
|
|
|
}:
|
|
|
|
|
2018-02-24 12:06:44 +00:00
|
|
|
assert glSupport -> libGL != null;
|
2013-05-30 13:43:26 +01:00
|
|
|
|
2018-04-06 17:59:30 +01:00
|
|
|
let
|
2018-10-20 02:41:37 +01:00
|
|
|
version = "1.16.0";
|
2018-04-06 17:59:30 +01:00
|
|
|
inherit (stdenv.lib) optional optionals;
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "cairo";
|
|
|
|
inherit version;
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2005-10-12 15:00:20 +01:00
|
|
|
src = fetchurl {
|
2019-08-13 22:52:01 +01:00
|
|
|
url = "https://cairographics.org/${if stdenv.lib.mod (builtins.fromJSON (stdenv.lib.versions.minor version)) 2 == 0 then "releases" else "snapshots"}/${pname}-${version}.tar.xz";
|
2018-10-20 02:41:37 +01:00
|
|
|
sha256 = "0c930mk5xr2bshbdljv005j3j8zr47gqmkry3q6qgvqky6rjjysy";
|
2005-10-12 15:00:20 +01:00
|
|
|
};
|
2008-03-07 15:43:43 +00:00
|
|
|
|
2019-02-17 03:52:37 +00:00
|
|
|
patches = [
|
|
|
|
# Fixes CVE-2018-19876; see Nixpkgs issue #55384
|
|
|
|
# CVE information: https://nvd.nist.gov/vuln/detail/CVE-2018-19876
|
|
|
|
# Upstream PR: https://gitlab.freedesktop.org/cairo/cairo/merge_requests/5
|
|
|
|
#
|
|
|
|
# This patch is the merged commit from the above PR.
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2018-19876.patch";
|
|
|
|
url = "https://gitlab.freedesktop.org/cairo/cairo/commit/6edf572ebb27b00d3c371ba5ae267e39d27d5b6d.patch";
|
|
|
|
sha256 = "112hgrrsmcwxh1r52brhi5lksq4pvrz4xhkzcf2iqp55jl2pb7n1";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
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
|
2019-03-02 07:17:21 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2016-03-29 17:04:46 +01:00
|
|
|
libiconv
|
2018-03-14 19:15:06 +00:00
|
|
|
libintl
|
|
|
|
] ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
2016-03-29 17:04:46 +01:00
|
|
|
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
|
|
|
|
2019-04-16 21:56:48 +01:00
|
|
|
propagatedBuildInputs = [ fontconfig expat freetype pixman zlib libpng ]
|
|
|
|
++ optionals x11Support [ libXext libXrender ]
|
2013-05-30 13:43:26 +01:00
|
|
|
++ optionals xcbSupport [ libxcb xcbutil ]
|
|
|
|
++ optional gobjectSupport glib
|
2018-02-24 12:06:44 +00:00
|
|
|
++ optional glSupport libGL
|
2015-10-06 18:57:45 +01:00
|
|
|
; # TODO: maybe liblzo but what would it be for here?
|
2013-05-30 13:43:26 +01:00
|
|
|
|
2020-03-30 21:42:55 +01:00
|
|
|
configureFlags = (if stdenv.isDarwin then [
|
2016-03-29 17:04:46 +01:00
|
|
|
"--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"
|
2020-03-30 21:42:55 +01:00
|
|
|
)) ++ optional (!x11Support) "--disable-xlib";
|
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'
|
2019-03-28 21:23:31 +00:00
|
|
|
substituteInPlace configure --replace strings $STRINGS
|
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
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails
|
|
|
|
|
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).
|
|
|
|
'';
|
|
|
|
|
2020-04-01 02:11:51 +01: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
|
|
|
}
|