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