2013-10-05 20:21:13 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11
|
2013-08-04 20:59:05 +02:00
|
|
|
, jasper, libintlOrEmpty, gobjectIntrospection }:
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2013-10-05 20:21:13 +02:00
|
|
|
let
|
|
|
|
ver_maj = "2.30";
|
2014-03-24 22:39:42 +01:00
|
|
|
ver_min = "6";
|
2013-10-05 20:21:13 +02:00
|
|
|
in
|
2012-05-16 23:58:57 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2013-10-05 20:21:13 +02:00
|
|
|
name = "gdk-pixbuf-${ver_maj}.${ver_min}";
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2012-01-07 00:03:37 +01:00
|
|
|
src = fetchurl {
|
2013-10-05 20:21:13 +02:00
|
|
|
url = "mirror://gnome/sources/gdk-pixbuf/${ver_maj}/${name}.tar.xz";
|
2014-03-24 22:39:42 +01:00
|
|
|
sha256 = "0nkz19xlh60bf9bqylh98n8rynpjyx1nzp1gcr6zljgvmnj4yfa3";
|
2011-09-20 08:21:56 +02:00
|
|
|
};
|
|
|
|
|
2014-02-27 20:37:28 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
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
|
|
|
|
2014-02-02 10:42:53 +01:00
|
|
|
doCheck = true;
|
2013-10-05 20:21:13 +02:00
|
|
|
|
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 ];
|
2013-11-06 10:58:20 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-09-20 08:21:56 +02:00
|
|
|
};
|
|
|
|
}
|