mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 23:20:29 -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
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(invoke "dbus-launch" "ctest" ".")
|
(when tests?
|
||||||
|
(invoke "dbus-launch" "ctest" "."))
|
||||||
#t)))))
|
#t)))))
|
||||||
(home-page "https://kde.org/applications/utilities/org.kde.kleopatra")
|
(home-page "https://kde.org/applications/utilities/org.kde.kleopatra")
|
||||||
(synopsis "Certificate Manager and Unified Crypto GUI")
|
(synopsis "Certificate Manager and Unified Crypto GUI")
|
||||||
|
|
Loading…
Reference in a new issue