diff options
author | aurtzy <aurtzy@gmail.com> | 2024-10-14 13:46:19 -0400 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-10-15 12:34:35 +0800 |
commit | e7081e6a4011b31e82dcafa433e1f2372b00baf3 (patch) | |
tree | a1b52ea0070ca73e79188cb11e499e6f6966c8a9 /gnu | |
parent | 6d0a86d22d75f8f4bb602a35218513ae0aef71f1 (diff) |
gnu: qqc2-desktop-style: Add kcolorscheme as an input.
This remedies an issue where applications like systemsettings and
plasma-discover do not completely respect theming (e.g. when dark theme is
enabled), with the following notable error message:
kf.kirigami.platform: Failed to find a Kirigami platform plugin for style "org.kde.desktop"
* gnu/packages/kde-frameworks.scm (qqc2-desktop-style)[inputs]: Add
kcolorscheme.
[arguments]<#:tests?>: Disable failing tests introduced by adding the
kcolorscheme input.
Change-Id: Ic34da2a2fc788737e543eb3cd2b23edf85a736a4
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 974fd1c4dd..e7c8eef775 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1971,6 +1971,7 @@ libpulse.") (build-system qt-build-system) (arguments (list + #:tests? #f ; FIXME: 1/2 tests fail. #:qtbase qtbase #:phases #~(modify-phases %standard-phases (replace 'check @@ -1982,6 +1983,7 @@ libpulse.") (list extra-cmake-modules dbus pkg-config qttools)) (inputs (list kauth + kcolorscheme kconfig ; optional kcoreaddons kiconthemes ; optional |