graphviz: support building Quartz plugin on Darwin

Analogous to 023d279213, but disabled by
default so we can have it on master.
This commit is contained in:
Michael Daniels
2026-07-12 16:16:30 -04:00
parent 590506c76c
commit 3acfab615e

View File

@@ -22,6 +22,7 @@
libxrender,
python3,
withXorg ? true,
withQuartz ? false,
# for passthru.tests
exiv2,
@@ -75,7 +76,8 @@ stdenv.mkDerivation (finalAttrs: {
"--with-ltdl-lib=${libtool.lib}/lib"
"--with-ltdl-include=${libtool}/include"
(lib.withFeature withXorg "x")
];
]
++ optional withQuartz "--with-quartz";
enableParallelBuilding = true;
strictDeps = true;