From 28fe618626ed6a5d6cbbb274dd210911f5ef400e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Pastor=20P=C3=A9rez?= Date: Sun, 11 May 2025 13:43:58 +0200 Subject: [PATCH] gnu: system-settings: Adjust inputs. * gnu/packages/kde-plasma.scm (system-settings) [inputs]: Add missing inputs for online accounts integration. `qtwebengine' propagates the `QTWEBENGINEPROCESS_PATH' to the `qt-wrap' phase, this is required as an input of `system-settings' because the NextCloud account integration, provided `kaccounts-providers', relies on the `systemsettings' binary invoking `QtWebEngineProcess'. Change-Id: I5af522af5c8ebd271165316ea41ada8a71c1ecfe Signed-off-by: Zheng Junjie --- gnu/packages/kde-plasma.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index 8991dcf974b..5b544079876 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -3103,7 +3103,9 @@ of a Plasma shell.") "18vx02nwd7fq3r3smrq3yviz6x4n17b8kidrnfkmkdycfxi2dsn0")))) (build-system qt-build-system) (native-inputs (list extra-cmake-modules)) - (inputs (list kauth + (inputs (list kaccounts-integration + kaccounts-providers + kauth kcrash kitemviews kitemmodels @@ -3125,7 +3127,8 @@ of a Plasma shell.") knotifications krunner plasma-workspace - qtdeclarative)) + qtdeclarative + qtwebengine)) (arguments (list #:qtbase qtbase)) (synopsis "Control center to configure Plasma Desktop") (description "This package provides configuration UI for Plasma Desktop.")