Fix imagemagick compilation on darwin, because it still includes ghostscript which should not be the case

+2 -2
+2 -2
pkgs/applications/graphics/ImageMagick/default.nix
··· 35 35 export DVIDecodeDelegate=${tetex}/bin/dvips 36 36 '' else ""; 37 37 38 - configureFlags = "" + stdenv.lib.optionalString (ghostscript != null && stdenv.system != "x86_64-darwin") '' 38 + configureFlags = "" + stdenv.lib.optionalString (stdenv.system != "x86_64-darwin") '' 39 39 --with-gs-font-dir=${ghostscript}/share/ghostscript/fonts 40 40 --with-gslib 41 41 '' + '' ··· 46 46 propagatedBuildInputs = 47 47 [ bzip2 fontconfig freetype libjpeg libpng libtiff libxml2 zlib librsvg 48 48 libtool jasper libX11 49 - ] ++ stdenv.lib.optional (ghostscript != null && stdenv.system != "x86_64-darwin") ghostscript; 49 + ] ++ stdenv.lib.optional (stdenv.system != "x86_64-darwin") ghostscript; 50 50 51 51 buildInputs = [ tetex pkgconfig ]; 52 52