nixpkgs/pkgs/development/libraries/cairo/default.nix

125 lines
4.1 KiB
Nix
Raw Normal View History

{ config, lib, stdenv, fetchurl, fetchpatch, pkg-config, libiconv
, libintl, expat, zlib, libpng, pixman, fontconfig, freetype
, x11Support? !stdenv.isDarwin, libXext, libXrender
, gobjectSupport ? true, glib
, xcbSupport ? x11Support, libxcb, xcbutil # no longer experimental since 1.12
2021-01-23 17:15:07 +00:00
, libGLSupported ? lib.elem stdenv.hostPlatform.system lib.platforms.mesaPlatforms
, glSupport ? x11Support && 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
, pdfSupport ? true
2016-03-29 16:04:46 +00:00
, darwin
}:
assert glSupport -> x11Support && libGL != null;
2018-04-06 16:59:30 +00:00
let
2018-10-20 01:41:37 +00:00
version = "1.16.0";
inherit (lib) optional optionals;
2018-04-06 16:59:30 +00:00
in stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "cairo";
inherit version;
src = fetchurl {
2021-01-23 17:15:07 +00:00
url = "https://cairographics.org/${if lib.mod (builtins.fromJSON (lib.versions.minor version)) 2 == 0 then "releases" else "snapshots"}/${pname}-${version}.tar.xz";
2018-10-20 01:41:37 +00:00
sha256 = "0c930mk5xr2bshbdljv005j3j8zr47gqmkry3q6qgvqky6rjjysy";
};
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";
})
2020-10-17 21:22:46 +00:00
] ++ optionals stdenv.hostPlatform.isDarwin [
# Workaround https://gitlab.freedesktop.org/cairo/cairo/-/issues/121
./skip-configure-stderr-check.patch
];
outputs = [ "out" "dev" "devdoc" ];
outputBin = "dev"; # very small
2016-03-29 16:04:46 +00:00
nativeBuildInputs = [
pkg-config
2019-03-02 07:17:21 +00:00
];
buildInputs = [
2016-03-29 16:04:46 +00:00
libiconv
2018-03-14 19:15:06 +00:00
libintl
] ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
2016-03-29 16:04:46 +00:00
CoreGraphics
CoreText
ApplicationServices
2016-03-29 16:04:46 +00:00
Carbon
]);
propagatedBuildInputs = [ fontconfig expat freetype pixman zlib libpng ]
++ optionals x11Support [ libXext libXrender ]
++ optionals xcbSupport [ libxcb xcbutil ]
++ optional gobjectSupport glib
++ optional glSupport libGL
2015-10-06 17:57:45 +00:00
; # TODO: maybe liblzo but what would it be for here?
configureFlags = (if stdenv.isDarwin then [
2016-03-29 16:04:46 +00:00
"--disable-dependency-tracking"
"--enable-quartz"
"--enable-quartz-font"
"--enable-quartz-image"
"--enable-ft"
] else ([ "--enable-tee" ]
++ optional xcbSupport "--enable-xcb"
++ optional glSupport "--enable-gl"
++ optional pdfSupport "--enable-pdf"
)) ++ optional (!x11Support) "--disable-xlib";
preConfigure =
2012-10-18 08:53:05 +00:00
# On FreeBSD, `-ldl' doesn't exist.
lib.optionalString stdenv.isFreeBSD
'' for i in "util/"*"/Makefile.in" boilerplate/Makefile.in
do
cat "$i" | sed -es/-ldl//g > t
mv t "$i"
done
2015-10-06 17:57:45 +00:00
''
+
''
# Work around broken `Requires.private' that prevents Freetype
# `-I' flags to be propagated.
sed -i "src/cairo.pc.in" \
-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
'';
enableParallelBuilding = true;
doCheck = false; # fails
postInstall = lib.optionalString stdenv.isDarwin glib.flattenInclude;
meta = with lib; {
description = "A 2D graphics library with support for multiple output devices";
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).
'';
homepage = "http://cairographics.org/";
license = with licenses; [ lgpl2Plus mpl10 ];
platforms = platforms.all;
};
}