diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-06 10:12:45 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:04 +0800 |
commit | 4fc809124f593a24e26771eef7cdfff47fbd09ff (patch) | |
tree | d079f37ecaa1800a0ffe34181034df3c985f5a47 /gnu/packages/kde-frameworks.scm | |
parent | 3ef8db27f8282ec73badc7b3a9508c9732f2f533 (diff) | |
download | guix-4fc809124f593a24e26771eef7cdfff47fbd09ff.tar.gz guix-4fc809124f593a24e26771eef7cdfff47fbd09ff.zip |
gnu: qqc2-desktop-style: Update to 6.3.0.
* gnu/packages/kde-frameworks.scm (qqc2-desktop-style): Update to 6.3.0.
[build-system]: Switch to qt-build-system.
[inputs]: Remove kconfigwidgets, qtbase-5, qtdeclarative-5,
qtquickcontrols2-5, and qtx11extras; add kconfig and qtdeclarative.
[native-inputs]: Add dbus and qttools.
[arguments]: Set #:qtbase to qtbase; Wrap test with dbus-launch.
Change-Id: I7eb79694a383484047bfbb1c513ba251d038486e
Diffstat (limited to 'gnu/packages/kde-frameworks.scm')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 72da594b8a..0bf82a02f1 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1448,7 +1448,7 @@ libpulse.") (define-public qqc2-desktop-style (package (name "qqc2-desktop-style") - (version "5.114.0") + (version "6.3.0") (source (origin (method url-fetch) (uri (string-append @@ -1457,20 +1457,26 @@ libpulse.") name "-" version ".tar.xz")) (sha256 (base32 - "1y5g91vybjvhwmzpfwrc70q5j7jxf5b972f9fh2vzb930jir6c8g")))) - (build-system cmake-build-system) + "1c5wy4a8x2lslc3dkqpn7k479jfpam63c93sqgyd4iingyxnjzly")))) + (build-system qt-build-system) + (arguments + (list + #:qtbase qtbase + #:phases #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "dbus-launch" "ctest" + "--rerun-failed" "--output-on-failure"))))))) (native-inputs - (list extra-cmake-modules pkg-config)) + (list extra-cmake-modules dbus pkg-config qttools)) (inputs (list kauth - kconfigwidgets ; optional + kconfig ; optional kcoreaddons kiconthemes ; optional kirigami - qtbase-5 - qtdeclarative-5 - qtquickcontrols2-5 - qtx11extras ; optional + qtdeclarative sonnet)) ; optional (home-page "https://community.kde.org/Frameworks") (synopsis "QtQuickControls2 style that integrates with the desktop") |