guix_mirror_bot pushed a commit to branch gnome-team
in repository guix.

commit 9bafb5e92b73ce905c3d041dd49c1b62b2fdbf28
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 46a67ec5b9..3a31645032 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -1902,7 +1902,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

Reply via email to