me
/
guix
Archived
1
0
Fork 0

gnu: kleopatra: Allow skipping tests.

* gnu/packages/kde-pim.scm (kleopatra)[arguments]: Have custom 'check
phase honor #:tests?.
master
Efraim Flashner 2021-09-13 11:06:33 +03:00
parent 8e7c84fecc
commit 7890ba02df
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 3 additions and 2 deletions

View File

@ -1017,8 +1017,9 @@ protocol for querying and modifying directory services running over TCP/IP. ")
`(#: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")