me
/
guix
Archived
1
0
Fork 0

gnu: glib: Add search path specification for 'GIO_EXTRA_MODULES'.

* gnu/packages/glib.scm (glib): Add specification for 'GIO_EXTRA_MODULES'.
master
宋文武 2015-04-05 23:10:19 +08:00 committed by Mark H Weaver
parent d8720c5045
commit 1b85e57f11
1 changed files with 5 additions and 1 deletions

View File

@ -189,7 +189,11 @@ shared NFS home directories.")
;; by 'glib-compile-schemas'.
(list (search-path-specification
(variable "XDG_DATA_DIRS")
(files '("share")))))
(files '("share")))
;; To load extra gio modules from glib-networking, etc.
(search-path-specification
(variable "GIO_EXTRA_MODULES")
(files '("lib/gio/modules")))))
(search-paths native-search-paths)
(synopsis "Thread-safe general utility library; basis of GTK+ and GNOME")