2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libiconv
|
2018-03-14 12:15:06 -07:00
|
|
|
, libintl, expat, zlib, libpng, pixman, fontconfig, freetype, xorg
|
2011-09-19 23:22:14 -07:00
|
|
|
, gobjectSupport ? true, glib
|
2013-05-30 05:43:26 -07:00
|
|
|
, xcbSupport ? true # no longer experimental since 1.12
|
2018-02-24 05:12:44 -08:00
|
|
|
, glSupport ? true, libGL ? null # libGLU_combined is no longer a big dependency
|
2013-06-13 13:11:34 -07:00
|
|
|
, pdfSupport ? true
|
2016-03-29 09:04:46 -07:00
|
|
|
, darwin
|
2005-10-12 07:00:20 -07:00
|
|
|
}:
|
|
|
|
|
2018-02-24 04:06:44 -08:00
|
|
|
assert glSupport -> libGL != null;
|
2013-05-30 05:43:26 -07:00
|
|
|
|
2018-04-06 09:59:30 -07:00
|
|
|
let
|
2018-09-25 05:40:30 -07:00
|
|
|
version = "1.15.14";
|
2018-04-06 09:59:30 -07:00
|
|
|
inherit (stdenv.lib) optional optionals;
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "cairo-${version}";
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2005-10-12 07:00:20 -07:00
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://cairographics.org/${if stdenv.lib.mod (builtins.fromJSON (stdenv.lib.versions.minor version)) 2 == 0 then "releases" else "snapshots"}/${name}.tar.xz";
|
2018-09-25 05:40:30 -07:00
|
|
|
sha256 = "1399jfdpdhn4hf812hxlj1gyi3bznxwzhp2rnyq1nxjs05n6nmhn";
|
2005-10-12 07:00:20 -07:00
|
|
|
};
|
2008-03-07 07:43:43 -08:00
|
|
|
|
2016-09-01 02:07:23 -07:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2015-10-28 11:38:17 -07:00
|
|
|
outputBin = "dev"; # very small
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2016-03-29 09:04:46 -07:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
libiconv
|
2018-03-14 12:15:06 -07:00
|
|
|
libintl
|
|
|
|
] ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
2016-03-29 09:04:46 -07:00
|
|
|
CoreGraphics
|
2016-12-23 13:10:06 -08:00
|
|
|
CoreText
|
2017-01-09 11:58:16 -08:00
|
|
|
ApplicationServices
|
2016-03-29 09:04:46 -07:00
|
|
|
Carbon
|
|
|
|
]);
|
2008-10-14 05:08:07 -07:00
|
|
|
|
2008-03-07 07:43:43 -08:00
|
|
|
propagatedBuildInputs =
|
2016-04-19 09:05:40 -07:00
|
|
|
with xorg; [ libXext fontconfig expat freetype pixman zlib libpng libXrender ]
|
2013-05-30 05:43:26 -07:00
|
|
|
++ optionals xcbSupport [ libxcb xcbutil ]
|
|
|
|
++ optional gobjectSupport glib
|
2018-02-24 04:06:44 -08:00
|
|
|
++ optional glSupport libGL
|
2015-10-06 10:57:45 -07:00
|
|
|
; # TODO: maybe liblzo but what would it be for here?
|
2013-05-30 05:43:26 -07:00
|
|
|
|
2016-03-29 09:04:46 -07: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 05:43:26 -07:00
|
|
|
++ optional xcbSupport "--enable-xcb"
|
|
|
|
++ optional glSupport "--enable-gl"
|
2013-06-13 06:12:43 -07:00
|
|
|
++ optional pdfSupport "--enable-pdf"
|
2016-03-29 09:04:46 -07:00
|
|
|
);
|
2008-03-07 07:43:43 -08:00
|
|
|
|
2013-01-29 04:48:25 -08:00
|
|
|
preConfigure =
|
2012-10-18 01:53:05 -07:00
|
|
|
# On FreeBSD, `-ldl' doesn't exist.
|
2015-10-06 10:57:45 -07:00
|
|
|
stdenv.lib.optionalString stdenv.isFreeBSD
|
2012-10-18 03:13:07 -07: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 10:57:45 -07:00
|
|
|
''
|
|
|
|
+
|
2013-06-13 06:12:43 -07:00
|
|
|
''
|
|
|
|
# Work around broken `Requires.private' that prevents Freetype
|
|
|
|
# `-I' flags to be propagated.
|
|
|
|
sed -i "src/cairo.pc.in" \
|
2015-10-28 11:38:17 -07:00
|
|
|
-es'|^Cflags:\(.*\)$|Cflags: \1 -I${freetype.dev}/include/freetype2 -I${freetype.dev}/include|g'
|
2013-06-13 06:12:43 -07:00
|
|
|
'';
|
2009-01-25 03:50:29 -08:00
|
|
|
|
2012-05-16 13:49:31 -07:00
|
|
|
enableParallelBuilding = true;
|
2009-01-25 03:50:29 -08:00
|
|
|
|
2018-04-24 20:20:18 -07:00
|
|
|
doCheck = false; # fails
|
|
|
|
|
2013-09-11 01:51:46 -07:00
|
|
|
postInstall = stdenv.lib.optionalString stdenv.isDarwin glib.flattenInclude;
|
2011-02-08 09:57:00 -08:00
|
|
|
|
2015-05-27 12:56:04 -07:00
|
|
|
meta = with stdenv.lib; {
|
2008-03-07 07:43:43 -08:00
|
|
|
description = "A 2D graphics library with support for multiple output devices";
|
2009-01-24 13:32:25 -08: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 07:43:43 -08:00
|
|
|
homepage = http://cairographics.org/;
|
2009-01-24 13:32:25 -08:00
|
|
|
|
2015-05-27 12:56:04 -07:00
|
|
|
license = with licenses; [ lgpl2Plus mpl10 ];
|
2011-09-26 05:07:24 -07:00
|
|
|
|
2015-05-27 12:56:04 -07:00
|
|
|
platforms = platforms.all;
|
2008-03-07 07:43:43 -08:00
|
|
|
};
|
2005-10-12 07:00:20 -07:00
|
|
|
}
|