2012-01-07 01:27:17 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11, xz
|
2012-01-07 00:03:37 +01:00
|
|
|
, jasper }:
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2012-01-07 00:03:37 +01:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "gdk-pixbuf-2.24.1";
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2012-01-07 00:03:37 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://gnome/sources/gdk-pixbuf/2.24/gdk-pixbuf-2.24.1.tar.xz;
|
|
|
|
sha256 = "1qdywh1r75lalb7z6s9pm6pmqx82chrrxqb8cdqi629nvc03yyns";
|
2011-09-20 08:21:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# !!! We might want to factor out the gdk-pixbuf-xlib subpackage.
|
2012-01-07 01:27:17 +01:00
|
|
|
buildInputs = [ libX11 ];
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2012-01-18 21:53:01 +01:00
|
|
|
buildNativeInputs = [ pkgconfig ];
|
2011-09-20 08:21:56 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ glib libtiff libjpeg libpng jasper ];
|
|
|
|
|
2012-01-07 01:27:17 +01:00
|
|
|
configureFlags = "--with-libjasper --with-x11";
|
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;
|
|
|
|
};
|
|
|
|
}
|