2013-10-05 19:21:13 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11
|
2013-08-04 19:59:05 +01:00
|
|
|
, jasper, libintlOrEmpty, gobjectIntrospection }:
|
2011-09-20 07:21:56 +01:00
|
|
|
|
2013-10-05 19:21:13 +01:00
|
|
|
let
|
2015-04-04 05:34:57 +01:00
|
|
|
ver_maj = "2.31";
|
2015-08-20 14:18:46 +01:00
|
|
|
ver_min = "6";
|
2013-10-05 19:21:13 +01:00
|
|
|
in
|
2012-05-16 22:58:57 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-10-05 19:21:13 +01:00
|
|
|
name = "gdk-pixbuf-${ver_maj}.${ver_min}";
|
2011-09-20 07:21:56 +01:00
|
|
|
|
2012-01-06 23:03:37 +00:00
|
|
|
src = fetchurl {
|
2013-10-05 19:21:13 +01:00
|
|
|
url = "mirror://gnome/sources/gdk-pixbuf/${ver_maj}/${name}.tar.xz";
|
2015-08-20 14:18:46 +01:00
|
|
|
sha256 = "062x2gqd7p6yxhxlib1ha4l3gk9ihcj080hrwwv9vmlmybb064hi";
|
2011-09-20 07:21:56 +01:00
|
|
|
};
|
|
|
|
|
2014-02-27 19:37:28 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
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
|
|
|
|
2015-08-21 11:56:55 +01:00
|
|
|
# The tests take an excessive amount of time (> 1.5 hours) and memory (> 6 GB).
|
|
|
|
doCheck = false;
|
2013-10-05 19:21:13 +01:00
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|