mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 00:52:55 -05:00
gnu: knotifications: Use G-expressions.
* gnu/packages/kde-frameworks.scm (knotifications)[arguments]: Rewrite as G-expressions. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
2845d9d6ac
commit
8456d2f990
1 changed files with 8 additions and 8 deletions
|
@ -1888,14 +1888,14 @@ (define-public knotifications
|
|||
qtspeech
|
||||
qtx11extras))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(setenv "HOME" (getcwd))
|
||||
(setenv "DBUS_FATAL_WARNINGS" "0")
|
||||
(invoke "dbus-launch" "ctest")))))))
|
||||
(list #:phases #~(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(setenv "HOME"
|
||||
(getcwd))
|
||||
(setenv "DBUS_FATAL_WARNINGS" "0")
|
||||
(invoke "dbus-launch" "ctest")))))))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "Desktop notifications")
|
||||
(description "KNotification is used to notify the user of an event. It
|
||||
|
|
Loading…
Reference in a new issue