From b1104d60827330cb77e6eb0e327a3ab13aab5c0d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 21 Aug 2015 12:56:55 +0200 Subject: [PATCH] gdk-pixbuf: Disable tests 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 --- pkgs/development/libraries/gdk-pixbuf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gdk-pixbuf/default.nix b/pkgs/development/libraries/gdk-pixbuf/default.nix index 722da0c89fc..5f5a0496954 100644 --- a/pkgs/development/libraries/gdk-pixbuf/default.nix +++ b/pkgs/development/libraries/gdk-pixbuf/default.nix @@ -26,8 +26,8 @@ stdenv.mkDerivation rec { + stdenv.lib.optionalString (gobjectIntrospection != null) " --enable-introspection=yes" ; - # Seems to randomly fail sometimes with a bus error. FIXME - doCheck = !stdenv.isDarwin; + # The tests take an excessive amount of time (> 1.5 hours) and memory (> 6 GB). + doCheck = false; postInstall = "rm -rf $out/share/gtk-doc";