2013-09-07 02:09:11 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, gdk_pixbuf, pango, cairo, libxml2, libgsf
|
|
|
|
, bzip2, libcroco
|
2013-02-04 23:35:20 +01:00
|
|
|
, gtk2 ? null, gtk3 ? null
|
|
|
|
, gobjectIntrospection ? null, enableIntrospection ? false }:
|
2009-09-30 07:27:34 +02:00
|
|
|
|
2013-01-29 02:39:15 +01:00
|
|
|
# no introspection by default, it's too big
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-11-18 20:51:06 +01:00
|
|
|
name = "librsvg-2.36.4"; # 2.37 needs pango 1.32.6, 2.40 doesn't support gtk2
|
2012-03-08 23:45:42 +01:00
|
|
|
|
2009-09-30 07:27:34 +02:00
|
|
|
src = fetchurl {
|
2013-09-07 02:09:11 +02:00
|
|
|
url = "mirror://gnome/sources/librsvg/2.36/${name}.tar.xz";
|
2013-01-29 02:39:15 +01:00
|
|
|
sha256 = "1hp6325gdkzx8yqn2d2r915ak3k6hfshjjh0sc54z3vr0i99688h";
|
2009-09-30 07:27:34 +02:00
|
|
|
};
|
2013-09-07 02:09:11 +02:00
|
|
|
|
2013-09-15 17:55:33 +02:00
|
|
|
buildInputs = [ libxml2 libgsf bzip2 libcroco pango ]
|
2013-02-04 23:35:20 +01:00
|
|
|
++ stdenv.lib.optional enableIntrospection [ gobjectIntrospection ];
|
2013-09-07 02:09:11 +02:00
|
|
|
|
2013-09-15 17:55:33 +02:00
|
|
|
propagatedBuildInputs = [ glib gdk_pixbuf cairo gtk2 gtk3 ];
|
2013-09-07 02:09:11 +02:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-03-08 23:45:42 +01:00
|
|
|
|
2013-09-07 02:09:11 +02:00
|
|
|
configureFlags = [ "--enable-introspection=auto" ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin "--disable-Bsymbolic";
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE
|
|
|
|
= stdenv.lib.optionalString stdenv.isDarwin "-I${cairo}/include/cairo";
|
2013-01-29 02:39:15 +01:00
|
|
|
|
2012-11-11 18:02:27 +01:00
|
|
|
# It wants to add loaders and update the loaders.cache in gdk-pixbuf
|
|
|
|
# Patching the Makefiles to it creates rsvg specific loaders and the
|
|
|
|
# relevant loader.cache here.
|
|
|
|
# The loaders.cache can be used by setting GDK_PIXBUF_MODULE_FILE to
|
|
|
|
# point to this file in a wrapper.
|
|
|
|
postConfigure = ''
|
|
|
|
GDK_PIXBUF=$out/lib/gdk-pixbuf
|
|
|
|
mkdir -p $GDK_PIXBUF/loaders
|
|
|
|
sed -e "s#gdk_pixbuf_moduledir = .*#gdk_pixbuf_moduledir = $GDK_PIXBUF/loaders#" \
|
|
|
|
-i gdk-pixbuf-loader/Makefile
|
|
|
|
sed -e "s#gdk_pixbuf_cache_file = .*#gdk_pixbuf_cache_file = $GDK_PIXBUF/loaders.cache#" \
|
|
|
|
-i gdk-pixbuf-loader/Makefile
|
|
|
|
sed -e "s#\$(GDK_PIXBUF_QUERYLOADERS)#GDK_PIXBUF_MODULEDIR=$GDK_PIXBUF/loaders \$(GDK_PIXBUF_QUERYLOADERS)#" \
|
|
|
|
-i gdk-pixbuf-loader/Makefile
|
|
|
|
'';
|
2009-09-30 07:27:34 +02:00
|
|
|
}
|