2013-10-05 18:21:13 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11
|
2015-09-20 07:04:22 +00:00
|
|
|
, jasper, libintlOrEmpty, gobjectIntrospection, doCheck ? false }:
|
2011-09-20 06:21:56 +00:00
|
|
|
|
2013-10-05 18:21:13 +00:00
|
|
|
let
|
2015-09-23 10:15:05 +00:00
|
|
|
ver_maj = "2.32";
|
2015-12-30 10:57:33 +00:00
|
|
|
ver_min = "3";
|
2013-10-05 18:21:13 +00:00
|
|
|
in
|
2012-05-16 21:58:57 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-10-05 18:21:13 +00:00
|
|
|
name = "gdk-pixbuf-${ver_maj}.${ver_min}";
|
2011-09-20 06:21:56 +00:00
|
|
|
|
2012-01-06 23:03:37 +00:00
|
|
|
src = fetchurl {
|
2013-10-05 18:21:13 +00:00
|
|
|
url = "mirror://gnome/sources/gdk-pixbuf/${ver_maj}/${name}.tar.xz";
|
2015-12-30 10:57:33 +00:00
|
|
|
sha256 = "0cfh87aqyqbfcwpbv1ihgmgfcn66il5q2n8yjyl8gxkjmkqp2rrb";
|
2011-09-20 06:21:56 +00:00
|
|
|
};
|
|
|
|
|
2015-10-28 11:05:37 +00:00
|
|
|
outputs = [ "dev" "out" "docdev" ];
|
|
|
|
outputBin = "dev";
|
2012-08-27 02:53:19 +00:00
|
|
|
|
2014-02-27 19:37:28 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2012-08-27 02:53:19 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-09-20 06:21:56 +00:00
|
|
|
# !!! We might want to factor out the gdk-pixbuf-xlib subpackage.
|
2015-10-28 11:05:37 +00:00
|
|
|
buildInputs = [ libX11 gobjectIntrospection ] ++ libintlOrEmpty;
|
2011-09-20 06:21:56 +00:00
|
|
|
|
2015-10-28 11:05:37 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-09-20 06:21:56 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ glib libtiff libjpeg libpng jasper ];
|
|
|
|
|
2015-10-19 17:12:01 +00:00
|
|
|
# on darwin, tests don't link
|
|
|
|
preBuild = stdenv.lib.optionalString (stdenv.isDarwin && !doCheck) ''
|
|
|
|
substituteInPlace Makefile --replace "docs tests" "docs"
|
|
|
|
'';
|
|
|
|
|
2013-08-04 18:59:05 +00:00
|
|
|
configureFlags = "--with-libjasper --with-x11"
|
|
|
|
+ stdenv.lib.optionalString (gobjectIntrospection != null) " --enable-introspection=yes"
|
|
|
|
;
|
2011-09-20 06:21:56 +00:00
|
|
|
|
2015-08-21 10:56:55 +00:00
|
|
|
# The tests take an excessive amount of time (> 1.5 hours) and memory (> 6 GB).
|
2015-09-20 07:04:22 +00:00
|
|
|
inherit (doCheck);
|
2013-10-05 18:21:13 +00:00
|
|
|
|
2015-10-28 11:05:37 +00:00
|
|
|
meta = with stdenv.lib; {
|
2011-09-20 06:21:56 +00:00
|
|
|
description = "A library for image loading and manipulation";
|
|
|
|
homepage = http://library.gnome.org/devel/gdk-pixbuf/;
|
2015-10-28 11:05:37 +00:00
|
|
|
maintainers = [ maintainers.eelco ];
|
|
|
|
platforms = platforms.unix;
|
2011-09-20 06:21:56 +00:00
|
|
|
};
|
|
|
|
}
|
2015-10-28 11:05:37 +00:00
|
|
|
|