From f0de997680c0fdd2f8f12b2fbdc724f5d9aa3a3a Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Mon, 22 Jul 2024 14:49:31 +0100 Subject: [PATCH] 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 --- pkgs/modem-manager/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/modem-manager/default.nix b/pkgs/modem-manager/default.nix index f2e0c5f..29754cb 100644 --- a/pkgs/modem-manager/default.nix +++ b/pkgs/modem-manager/default.nix @@ -15,6 +15,7 @@ pkg-config, python3, systemd, + gobject-introspection, pkgsBuildBuild, buildPackages }: stdenv.mkDerivation rec { @@ -34,7 +35,7 @@ nativeBuildInputs = [ meson ninja - # gobject-introspection + gobject-introspection gettext pkg-config libxslt @@ -73,10 +74,11 @@ "-Dqrtr=false" "-Dpolkit=no" "-Dplugin_foxconn=disabled" + "-Dplugin_quectel=disabled" "-Dman=false" "-Dexamples=false" "-Dtests=false" - "-Dintrospection=false" +# "-Dintrospection=false" ]; }