build ModemManager with introspection

as the files it creates are required by Satellite

I thought originally that this was stopping it from cross-compiling,
but it must have been something else
This commit is contained in:
Daniel Barlow 2024-07-22 14:49:31 +01:00
parent d83cce069c
commit f0de997680
1 changed files with 4 additions and 2 deletions

View File

@ -15,6 +15,7 @@
pkg-config, pkg-config,
python3, python3,
systemd, systemd,
gobject-introspection,
pkgsBuildBuild, pkgsBuildBuild,
buildPackages buildPackages
}: stdenv.mkDerivation rec { }: stdenv.mkDerivation rec {
@ -34,7 +35,7 @@
nativeBuildInputs = [ nativeBuildInputs = [
meson meson
ninja ninja
# gobject-introspection gobject-introspection
gettext gettext
pkg-config pkg-config
libxslt libxslt
@ -73,10 +74,11 @@
"-Dqrtr=false" "-Dqrtr=false"
"-Dpolkit=no" "-Dpolkit=no"
"-Dplugin_foxconn=disabled" "-Dplugin_foxconn=disabled"
"-Dplugin_quectel=disabled"
"-Dman=false" "-Dman=false"
"-Dexamples=false" "-Dexamples=false"
"-Dtests=false" "-Dtests=false"
"-Dintrospection=false" # "-Dintrospection=false"
]; ];
} }