b1104d6082
The tests take an excessive amount of time (> 1.5 hours) and memory (> 6 GB). http://hydra.nixos.org/build/24911713 http://hydra.nixos.org/build/24470055#tabs-buildsteps
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11
|
|
, jasper, libintlOrEmpty, gobjectIntrospection }:
|
|
|
|
let
|
|
ver_maj = "2.31";
|
|
ver_min = "6";
|
|
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 = "062x2gqd7p6yxhxlib1ha4l3gk9ihcj080hrwwv9vmlmybb064hi";
|
|
};
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
# !!! 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).
|
|
doCheck = false;
|
|
|
|
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 ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|