gdk_pixbuf: tests crash on Darwin with gcc 4.8.3

This commit is contained in:
John Wiegley 2014-06-21 23:53:13 -07:00
parent e07c7e773c
commit 640d09f8c7

View file

@ -4762,7 +4762,12 @@ let
pangox_compat = callPackage ../development/libraries/pangox-compat { };
gdk_pixbuf = callPackage ../development/libraries/gdk-pixbuf { };
gdk_pixbuf = callPackage ../development/libraries/gdk-pixbuf {
# workaround signal 10 in gdk_pixbuf tests
stdenv = if stdenv.isDarwin
then clangStdenv
else stdenv;
};
gtk2 = callPackage ../development/libraries/gtk+/2.x.nix {
cupsSupport = config.gtk2.cups or stdenv.isLinux;