2013-10-05 20:21:13 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11
|
2015-09-20 09:04:22 +02:00
|
|
|
, jasper, libintlOrEmpty, gobjectIntrospection, doCheck ? false }:
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2013-10-05 20:21:13 +02:00
|
|
|
let
|
2016-09-22 15:58:15 +02:00
|
|
|
ver_maj = "2.36";
|
2017-08-14 09:15:10 +02:00
|
|
|
ver_min = "7";
|
|
|
|
# TODO: since 2.36.8 gdk-pixbuf gets configured to use mime-type sniffing,
|
|
|
|
# which apparently requires access to shared_mime_info files during runtime.
|
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";
|
2017-08-14 09:15:10 +02:00
|
|
|
sha256 = "1b6e5eef09d98f05f383014ecd3503e25dfb03d7e5b5f5904e5a65b049a6a4d8";
|
2011-09-20 08:21:56 +02:00
|
|
|
};
|
|
|
|
|
2016-09-01 11:07:23 +02:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2012-08-27 04:53:19 +02:00
|
|
|
|
2014-02-27 20:37:28 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2012-08-27 04:53:19 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-09-20 08:21:56 +02:00
|
|
|
# !!! We might want to factor out the gdk-pixbuf-xlib subpackage.
|
2015-10-28 12:05:37 +01:00
|
|
|
buildInputs = [ libX11 gobjectIntrospection ] ++ libintlOrEmpty;
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2015-10-28 12:05:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-09-20 08:21:56 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ glib libtiff libjpeg libpng jasper ];
|
|
|
|
|
2016-12-28 20:16:12 +01:00
|
|
|
configureFlags = "--with-libjasper --with-x11"
|
|
|
|
+ stdenv.lib.optionalString (gobjectIntrospection != null) " --enable-introspection=yes"
|
|
|
|
;
|
|
|
|
|
2015-10-19 19:12:01 +02:00
|
|
|
# on darwin, tests don't link
|
|
|
|
preBuild = stdenv.lib.optionalString (stdenv.isDarwin && !doCheck) ''
|
|
|
|
substituteInPlace Makefile --replace "docs tests" "docs"
|
|
|
|
'';
|
|
|
|
|
2016-12-28 20:16:12 +01:00
|
|
|
postInstall =
|
|
|
|
# All except one utility seem to be only useful during building.
|
|
|
|
''
|
|
|
|
moveToOutput "bin" "$dev"
|
|
|
|
moveToOutput "bin/gdk-pixbuf-thumbnailer" "$out"
|
|
|
|
'';
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2015-08-21 12:56:55 +02:00
|
|
|
# The tests take an excessive amount of time (> 1.5 hours) and memory (> 6 GB).
|
2015-09-20 09:04:22 +02:00
|
|
|
inherit (doCheck);
|
2013-10-05 20:21:13 +02:00
|
|
|
|
2015-10-28 12:05:37 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-09-20 08:21:56 +02:00
|
|
|
description = "A library for image loading and manipulation";
|
|
|
|
homepage = http://library.gnome.org/devel/gdk-pixbuf/;
|
2015-10-28 12:05:37 +01:00
|
|
|
maintainers = [ maintainers.eelco ];
|
|
|
|
platforms = platforms.unix;
|
2011-09-20 08:21:56 +02:00
|
|
|
};
|
|
|
|
}
|
2015-10-28 12:05:37 +01:00
|
|
|
|