mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: kmail: Allow skipping tests.
* gnu/packages/kde-pim.scm (kmail)[arguments]: Have custom 'check phase honor #:tests?.
This commit is contained in:
parent
5bde487831
commit
8e7c84fecc
1 changed files with 3 additions and 2 deletions
|
@ -1107,8 +1107,9 @@ (define-public kmail
|
|||
`(#: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://kontact.kde.org/components/kmail.html")
|
||||
(synopsis "Full featured graphical email client")
|
||||
|
|
Loading…
Reference in a new issue