Merge pull request #34640 from knedlsepp/reduce-graphviz-impurity

graphviz: Explicitly specify libltdl directories

authored by Frederik Rietdijk and committed by GitHub 8754d641 2f8f967a

+4 -1
+4 -1
pkgs/tools/graphics/graphviz/base.nix
··· 31 CPPFLAGS = stdenv.lib.optionalString (xorg != null && stdenv.isDarwin) 32 "-I${cairo.dev}/include/cairo"; 33 34 - configureFlags = optional (xorg == null) "--without-x"; 35 36 postPatch = '' 37 for f in $(find . -name Makefile.in); do
··· 31 CPPFLAGS = stdenv.lib.optionalString (xorg != null && stdenv.isDarwin) 32 "-I${cairo.dev}/include/cairo"; 33 34 + configureFlags = [ 35 + "--with-ltdl-lib=${libtool.lib}/lib" 36 + "--with-ltdl-include=${libtool}/include" 37 + ] ++ stdenv.lib.optional (xorg == null) [ "--without-x" ]; 38 39 postPatch = '' 40 for f in $(find . -name Makefile.in); do