graphene: fix static

Meson doesn't support gtk-doc for static builds.

Link: https://github.com/mesonbuild/meson/pull/14257
This commit is contained in:
Alyssa Ross
2025-06-02 12:45:48 +02:00
parent 96ec055edb
commit ab1d367671
+5 -2
View File
@@ -13,8 +13,11 @@
nixosTests,
glib,
withDocumentation ?
stdenv.buildPlatform.canExecute stdenv.hostPlatform
|| stdenv.hostPlatform.emulatorAvailable buildPackages,
(
stdenv.buildPlatform.canExecute stdenv.hostPlatform
|| stdenv.hostPlatform.emulatorAvailable buildPackages
)
&& !stdenv.hostPlatform.isStatic,
gtk-doc,
docbook_xsl,
docbook_xml_dtd_43,