2013-01-29 07:11:34 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11, xz
|
2013-08-04 11:59:05 -07:00
|
|
|
, jasper, libintlOrEmpty, gobjectIntrospection }:
|
2011-09-19 23:21:56 -07:00
|
|
|
|
2012-05-16 14:58:57 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2013-08-03 00:45:22 -07:00
|
|
|
name = "gdk-pixbuf-2.28.2";
|
2011-09-19 23:21:56 -07:00
|
|
|
|
2012-01-06 15:03:37 -08:00
|
|
|
src = fetchurl {
|
2013-03-28 18:01:03 -07:00
|
|
|
url = "mirror://gnome/sources/gdk-pixbuf/2.28/${name}.tar.xz";
|
2013-08-03 00:45:22 -07:00
|
|
|
sha256 = "05s6ksvy1yan6h6zny9n3bmvygcnzma6ljl6i0z9cci2xg116c8q";
|
2011-09-19 23:21:56 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
# !!! We might want to factor out the gdk-pixbuf-xlib subpackage.
|
2013-06-12 23:36:45 -07:00
|
|
|
buildInputs = [ libX11 libintlOrEmpty ];
|
2011-09-19 23:21:56 -07:00
|
|
|
|
2013-08-04 11:59:05 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig gobjectIntrospection ];
|
2011-09-19 23:21:56 -07:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ glib libtiff libjpeg libpng jasper ];
|
|
|
|
|
2013-08-04 11:59:05 -07:00
|
|
|
configureFlags = "--with-libjasper --with-x11"
|
|
|
|
+ stdenv.lib.optionalString (gobjectIntrospection != null) " --enable-introspection=yes"
|
|
|
|
;
|
2011-09-19 23:21:56 -07: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;
|
|
|
|
};
|
|
|
|
}
|