feedbackd: add comment explaining why introspection is disabled for cross

This commit is contained in:
Rick van Schijndel 2022-06-03 18:50:22 +02:00
parent e1f72ee81b
commit 322a6cc95b

View file

@ -65,6 +65,8 @@ stdenv.mkDerivation rec {
mesonFlags = [
"-Dgtk_doc=${lib.boolToString (stdenv.buildPlatform == stdenv.hostPlatform)}"
"-Dman=true"
# TODO(mindavi): introspection broken due to https://github.com/NixOS/nixpkgs/issues/72868
# can be removed if cross-compiling gobject-introspection works.
"-Dintrospection=${if (stdenv.buildPlatform == stdenv.hostPlatform) then "enabled" else "disabled"}"
];