guix_mirror_bot pushed a commit to branch gnome-team
in repository guix.
commit 9ca3c1e3de5b510d43e0e63e403002a99e367c43
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Tue Nov 18 20:12:54 2025 +0100
gnu: accountsservice: Run checks after installation.
* gnu/packages/freedesktop.scm (accountsservice)[#:phases]: Move ‘check’
after
‘install’.
---
gnu/packages/freedesktop.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index a5084e1484..4934c1cd54 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -1941,7 +1941,10 @@ message bus.")
(lambda* (#:key outputs #:allow-other-keys)
(wrap-program (search-input-file outputs
"libexec/accounts-daemon")
'("XDG_DATA_DIRS" prefix
- ("/run/current-system/profile/share"))))))))
+ ("/run/current-system/profile/share")))))
+ (delete 'check)
+ (add-after 'install 'check
+ (assoc-ref %standard-phases 'check)))))
(native-inputs
(list docbook-xml-4.1.2
docbook-xsl