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

commit 9d09b3fb10c8ec3a6d3b39c4edcb4954a3f7a2eb
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Sun Sep 7 10:05:51 2025 +0200

    gnu: gtk: Check after install.
    
    * gnu/packages/gtk.scm (gtk)[#:phases]: Move ‘check’ after ‘install’.
---
 gnu/packages/gtk.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index c22989c996..737bb014f4 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1310,7 +1310,11 @@ application suites.")
               ;; Move HTML documentation to output 'doc'.
               (rename-file
                (string-append #$output "/share/doc")
-               (string-append #$output:doc "/share/doc")))))))
+               (string-append #$output:doc "/share/doc"))))
+          ;; Introspection test requires installed libraries
+          (delete 'check)
+          (add-after 'install 'check
+            (assoc-ref %standard-phases 'check)))))
     (native-inputs
      (list docbook-xml-4.3
            docbook-xsl

Reply via email to