mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: kleopatra: Allow skipping tests.
* gnu/packages/kde-pim.scm (kleopatra)[arguments]: Have custom 'check phase honor #:tests?.
This commit is contained in:
parent
8e7c84fecc
commit
7890ba02df
1 changed files with 3 additions and 2 deletions
|
@ -1017,8 +1017,9 @@ (define-public kleopatra
|
|||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "dbus-launch" "ctest" ".")
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "dbus-launch" "ctest" "."))
|
||||
#t)))))
|
||||
(home-page "https://kde.org/applications/utilities/org.kde.kleopatra")
|
||||
(synopsis "Certificate Manager and Unified Crypto GUI")
|
||||
|
|
Loading…
Reference in a new issue