Merge pull request #10568 from datakurre/datakurre-graphviz

darwin: graphviz: remove -lstdc++ on darwin

+7
+7
pkgs/tools/graphics/graphviz/default.nix
··· 38 38 ] 39 39 ++ stdenv.lib.optional (xorg == null) "--without-x"; 40 40 41 + prePatch = stdenv.lib.optionalString stdenv.isDarwin '' 42 + substituteInPlace cmd/dot/Makefile.in --replace "-lstdc++" "" 43 + substituteInPlace cmd/edgepaint/Makefile.in --replace "-lstdc++" "" 44 + substituteInPlace cmd/mingle/Makefile.in --replace "-lstdc++" "" 45 + substituteInPlace plugin/gdiplus/Makefile.in --replace "-lstdc++" "" 46 + ''; 47 + 41 48 preBuild = '' 42 49 sed -e 's@am__append_5 *=.*@am_append_5 =@' -i lib/gvc/Makefile 43 50 '';