iyzsong pushed a commit to branch kde-updates
in repository guix.
commit b5ed7b2201b8ca25f90a53e07edd529b4cba2d7c
Author: Zheng Junjie <[email protected]>
AuthorDate: Wed Jul 12 11:54:12 2023 +0800
gnu: kwidgetsaddons: Use G-expressions.
* gnu/packages/kde-frameworks.scm (kwidgetsaddons)[arguments]:
Rewrite as G-expressions.
Signed-off-by: 宋文武 <[email protected]>
---
gnu/packages/kde-frameworks.scm | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 22046d1b8c..8526c39074 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1148,13 +1148,15 @@ represented by a QPoint or a QSize.")
(inputs
(list qtbase-5))
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (setenv "XDG_CACHE_HOME" "/tmp/xdg-cache")
- (invoke "ctest" "-E" "(ksqueezedtextlabelautotest|\
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (setenv "XDG_CACHE_HOME" "/tmp/xdg-cache")
+ (invoke "ctest" "-E"
+ "(ksqueezedtextlabelautotest|\
kwidgetsaddons-kcolumnresizertest)")))))))
(home-page "https://community.kde.org/Frameworks")
(synopsis "Large set of desktop widgets")