summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/gnome.scm11
1 files changed, 10 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 71a1ef9cd5..9a6783d0fe 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -6066,7 +6066,16 @@ faster results and to avoid unnecessary server load.")
(("assertEqual(.*)40\\.0" _ middle)
(string-append
"assertAlmostEqual" middle "40.0"))))
- '()))))))
+ '())))
+ (delete 'check) ;moved after install
+ (add-after 'install 'set-gi-typelib-path
+ (lambda* (#:key outputs #:allow-other-keys)
+ (setenv "GI_TYPELIB_PATH"
+ (string-append
+ (search-input-directory outputs "lib/girepository-1.0")
+ ":" (getenv "GI_TYPELIB_PATH")))))
+ (add-after 'set-gi-typelib-path 'check
+ (assoc-ref %standard-phases 'check)))))
(native-inputs
(list `(,glib "bin") ; for gdbus-codegen
gobject-introspection