2013-01-29 16:11:34 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11, xz
|
2013-08-04 20:59:05 +02:00
|
|
|
, jasper, libintlOrEmpty, gobjectIntrospection }:
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2012-05-16 23:58:57 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2013-08-03 09:45:22 +02:00
|
|
|
name = "gdk-pixbuf-2.28.2";
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2012-01-07 00:03:37 +01:00
|
|
|
src = fetchurl {
|
2013-03-29 02:01:03 +01:00
|
|
|
url = "mirror://gnome/sources/gdk-pixbuf/2.28/${name}.tar.xz";
|
2013-08-03 09:45:22 +02:00
|
|
|
sha256 = "05s6ksvy1yan6h6zny9n3bmvygcnzma6ljl6i0z9cci2xg116c8q";
|
2011-09-20 08:21:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# !!! We might want to factor out the gdk-pixbuf-xlib subpackage.
|
2013-06-13 08:36:45 +02:00
|
|
|
buildInputs = [ libX11 libintlOrEmpty ];
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2013-08-04 20:59:05 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig gobjectIntrospection ];
|
2011-09-20 08:21:56 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ glib libtiff libjpeg libpng jasper ];
|
|
|
|
|
2013-08-04 20:59:05 +02:00
|
|
|
configureFlags = "--with-libjasper --with-x11"
|
|
|
|
+ stdenv.lib.optionalString (gobjectIntrospection != null) " --enable-introspection=yes"
|
|
|
|
;
|
2011-09-20 08:21:56 +02:00
|
|
|
|
|
|
|
postInstall = "rm -rf $out/share/gtk-doc";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A library for image loading and manipulation";
|
|
|
|
|
|
|
|
homepage = http://library.gnome.org/devel/gdk-pixbuf/;
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|