diff options
author | Zheng Junjie <873216071@qq.com> | 2023-07-13 14:57:14 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2023-08-02 22:27:40 +0800 |
commit | b8aa7f16e022132b9ef15228ab950f8bd7aba61d (patch) | |
tree | 47b008c2e5104d81258bdf4e00de86378409eb39 /gnu/packages | |
parent | 2d19e1e966a02fda09f00974c992de7b52bca50f (diff) | |
download | guix-b8aa7f16e022132b9ef15228ab950f8bd7aba61d.tar.gz |
gnu: kemoticons: Use G-expressions.
* gnu/packages/kde-frameworks.scm (kemoticons)[arguments]: Rewrite as G-expressions. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 14 |
1 files 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 |