{ stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11 , jasper, libintlOrEmpty, gobjectIntrospection, doCheck ? false }: let ver_maj = "2.32"; ver_min = "0"; in stdenv.mkDerivation rec { name = "gdk-pixbuf-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://gnome/sources/gdk-pixbuf/${ver_maj}/${name}.tar.xz"; sha256 = "0rqvj5gcs2zfyyg9llm289b0xkj4mrhzxfjpjja0wx1m6vn5axjk"; }; outputs = [ "dev" "out" "bin" "doc" ]; setupHook = ./setup-hook.sh; enableParallelBuilding = true; # !!! We might want to factor out the gdk-pixbuf-xlib subpackage. buildInputs = [ libX11 libintlOrEmpty ]; nativeBuildInputs = [ pkgconfig gobjectIntrospection ]; propagatedBuildInputs = [ glib libtiff libjpeg libpng jasper ]; configureFlags = "--with-libjasper --with-x11" + stdenv.lib.optionalString (gobjectIntrospection != null) " --enable-introspection=yes" ; # The tests take an excessive amount of time (> 1.5 hours) and memory (> 6 GB). inherit (doCheck); # propagate the bin output TODO: use propagatedOutputs instead postPhases = "postPostFixup"; postPostFixup = '' echo -n " $bin" >> "$dev"/nix-support/propagated-*build-inputs ''; meta = { description = "A library for image loading and manipulation"; homepage = http://library.gnome.org/devel/gdk-pixbuf/; maintainers = [ stdenv.lib.maintainers.eelco ]; platforms = stdenv.lib.platforms.unix; }; }