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