gnu: kemoticons: Use G-expressions.
* gnu/packages/kde-frameworks.scm (kemoticons)[arguments]: Rewrite as G-expressions. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
2d19e1e966
commit
b8aa7f16e0
1 changed files with 7 additions and 7 deletions
|
@ -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
|
||||
|
|
Reference in a new issue