summaryrefslogtreecommitdiff
path: root/gnu/packages/kde-pim.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2021-09-13 11:05:35 +0300
committerEfraim Flashner <efraim@flashner.co.il>2021-09-13 15:04:33 +0300
commit8e7c84feccf9653307de2c3fcfc2c856fe21a97a (patch)
tree0c1add94d930cdb375a14d1aac6e1557562ff275 /gnu/packages/kde-pim.scm
parent5bde487831b8227afa185bb13c2444833036d66c (diff)
downloadguix-patches-8e7c84feccf9653307de2c3fcfc2c856fe21a97a.tar
guix-patches-8e7c84feccf9653307de2c3fcfc2c856fe21a97a.tar.gz
gnu: kmail: Allow skipping tests.
* gnu/packages/kde-pim.scm (kmail)[arguments]: Have custom 'check phase honor #:tests?.
Diffstat (limited to 'gnu/packages/kde-pim.scm')
-rw-r--r--gnu/packages/kde-pim.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 5d610143a7..b5966f0515 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -1107,8 +1107,9 @@ and retrieving certificates from LDAP servers.")
`(#: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")