From 5ecda401667e946540140b40f1cc809c2b1b1e57 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 4 Jul 2026 01:37:11 +0200 Subject: [PATCH] meson: fix libmm-glib dependency to use correct pkg-config name 'mm-glib' The ModemManager libmm-glib library installs its pkg-config file as mm-glib.pc (not libmm-glib.pc), so dependency('libmm-glib') never resolved and the nix-flake-check build failed with the wwan module enabled. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f1b9cb75..7bbad3fe 100644 --- a/meson.build +++ b/meson.build @@ -94,7 +94,7 @@ xkbregistry = dependency('xkbregistry') libjack = dependency('jack', required: get_option('jack')) libwireplumber = dependency('wireplumber-0.5', required: get_option('wireplumber')) libgps = dependency('libgps', required: get_option('gps')) -libmm_glib = dependency('libmm-glib', required: get_option('wwan')) +libmm_glib = dependency('mm-glib', required: get_option('wwan')) libsndio = compiler.find_library('sndio', required: get_option('sndio')) if libsndio.found()