iyzsong pushed a commit to branch kde-updates
in repository guix.

commit b8aa7f16e022132b9ef15228ab950f8bd7aba61d
Author: Zheng Junjie <[email protected]>
AuthorDate: Thu Jul 13 14:57:14 2023 +0800

    gnu: kemoticons: Use G-expressions.
    
    * gnu/packages/kde-frameworks.scm (kemoticons)[arguments]:
    Rewrite as G-expressions.
    
    Signed-off-by: 宋文武 <[email protected]>
---
 gnu/packages/kde-frameworks.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 53a5a42fd1..8b34f944ad 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2472,13 +2472,13 @@ with su and ssh respectively.")
     (inputs
      (list karchive kconfig kcoreaddons qtbase-5))
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-before 'check 'check-setup
-           (lambda _
-             (setenv "HOME" (getcwd))
-             ;; make Qt render "offscreen", required for tests
-             (setenv "QT_QPA_PLATFORM" "offscreen"))))))
+     (list #:phases #~(modify-phases %standard-phases
+                        (add-before 'check 'check-setup
+                          (lambda _
+                            (setenv "HOME"
+                                    (getcwd))
+                            ;; make Qt render "offscreen", required for tests
+                            (setenv "QT_QPA_PLATFORM" "offscreen"))))))
     (home-page "https://community.kde.org/Frameworks";)
     (synopsis "Convert text emoticons to graphical emoticons")
     (description "KEmoticons converts emoticons from text to a graphical

Reply via email to