* glib-networking not found by Gnome ?
@ 2021-02-21 22:52 Jérémy Korwin-Zmijowski
2021-02-22 7:24 ` Pierre Neidhardt
0 siblings, 1 reply; 5+ messages in thread
From: Jérémy Korwin-Zmijowski @ 2021-02-21 22:52 UTC (permalink / raw)
To: Guix Help
Hello Guixters !
I want to use the Gnome feature to synchronize data from/to a NextCloud
account.
So I filled the required fields (server, username, password) in Gnome
parameters.
Then in Nautilus, I tried to open the remote file system which is
listed in the list of the left but all I got is this pop-up saying :
"TLS/SSL support not available : Install glib-networking"
OK let's install glib-networking, reboot, but still the pop-up spawns.
Looking for informations online, I read it can be because some libs are
not in the expected path. Maybe something related to GIO_EXTRA_MODULES
?
Anyone had this issue and hopefully solved it ?
Cheers,
Jérémy
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: glib-networking not found by Gnome ?
2021-02-21 22:52 glib-networking not found by Gnome ? Jérémy Korwin-Zmijowski
@ 2021-02-22 7:24 ` Pierre Neidhardt
2021-02-22 13:29 ` Jérémy Korwin-Zmijowski
0 siblings, 1 reply; 5+ messages in thread
From: Pierre Neidhardt @ 2021-02-22 7:24 UTC (permalink / raw)
To: Jérémy Korwin-Zmijowski, Guix Help
[-- Attachment #1: Type: text/plain, Size: 173 bytes --]
Hi Jérémy,
You need to install glib as well :)
It should add a GIO_EXTRA_MODULES entry in the etc/profile.
Cheers!
--
Pierre Neidhardt
https://ambrevar.xyz/
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 511 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: glib-networking not found by Gnome ?
2021-02-22 7:24 ` Pierre Neidhardt
@ 2021-02-22 13:29 ` Jérémy Korwin-Zmijowski
2021-02-22 14:59 ` Pierre Neidhardt
0 siblings, 1 reply; 5+ messages in thread
From: Jérémy Korwin-Zmijowski @ 2021-02-22 13:29 UTC (permalink / raw)
To: Pierre Neidhardt, Guix Help
Hello Pierre,
Thank you for your help.
Despite the several package conflicts I had (meld, polari, gnucash) when installing glib, it didn't fix the issue. I still have the pop up with the error message.
Do I have to install glib as root maybe ?
Jérémy
Le 22 février 2021 08:24:42 GMT+01:00, Pierre Neidhardt <mail@ambrevar.xyz> a écrit :
>Hi Jérémy,
>
>You need to install glib as well :)
>It should add a GIO_EXTRA_MODULES entry in the etc/profile.
>
>Cheers!
>
>--
>Pierre Neidhardt
>https://ambrevar.xyz/
--
Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma brièveté.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: glib-networking not found by Gnome ?
2021-02-22 13:29 ` Jérémy Korwin-Zmijowski
@ 2021-02-22 14:59 ` Pierre Neidhardt
2021-02-22 16:06 ` Jérémy Korwin-Zmijowski
0 siblings, 1 reply; 5+ messages in thread
From: Pierre Neidhardt @ 2021-02-22 14:59 UTC (permalink / raw)
To: Jérémy Korwin-Zmijowski, Guix Help
[-- Attachment #1: Type: text/plain, Size: 1301 bytes --]
What's in the etc/profile of your profile?
It should have something like
--8<---------------cut here---------------start------------->8---
export GIO_EXTRA_MODULES=\
"${GUIX_PROFILE:-/gnu/store/2amj32ic81b9inf32a88y8gg5y7019wx-profile}/lib/gio/modules${GIO_EXTRA_MODULES:+:}$GIO_EXTRA_MODULES"
--8<---------------cut here---------------end--------------->8---
since the glib package definition has this:
--8<---------------cut here---------------start------------->8---
(native-search-paths
;; This variable is not really "owned" by GLib, but several related
;; packages refer to it: gobject-introspection's tools use it as a search
;; path for .gir files, and it's also a search path for schemas produced
;; by 'glib-compile-schemas'.
(list (search-path-specification
(variable "XDG_DATA_DIRS")
(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)
--8<---------------cut here---------------end--------------->8---
Maybe try to install gsettings-desktop-schemas, see if that helps.
--
Pierre Neidhardt
https://ambrevar.xyz/
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 511 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: glib-networking not found by Gnome ?
2021-02-22 14:59 ` Pierre Neidhardt
@ 2021-02-22 16:06 ` Jérémy Korwin-Zmijowski
0 siblings, 0 replies; 5+ messages in thread
From: Jérémy Korwin-Zmijowski @ 2021-02-22 16:06 UTC (permalink / raw)
To: Pierre Neidhardt, Guix Help
Le lundi 22 février 2021 à 15:59 +0100, Pierre Neidhardt a écrit :
> What's in the etc/profile of your profile?
>
> It should have something like
>
> --8<---------------cut here---------------start------------->8---
> export GIO_EXTRA_MODULES=\
> "${GUIX_PROFILE:-/gnu/store/2amj32ic81b9inf32a88y8gg5y7019wx-
> profile}/lib/gio/modules${GIO_EXTRA_MODULES:+:}$GIO_EXTRA_MODULES"
> --8<---------------cut here---------------end--------------->8---
Looks like it's here :
$ cat ~/.guix-profile/etc/profile | grep GIO
export GIO_EXTRA_MODULES="${GUIX_PROFILE:-
/gnu/store/z2d3rjsa97y2wh9amzhr577yi6snvv9d-
profile}/lib/gio/modules${GIO_EXTRA_MODULES:+:}$GIO_EXTRA_MODULES"
> Maybe try to install gsettings-desktop-schemas, see if that helps.
Still not OK, even after a reboot.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-02-22 16:06 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-21 22:52 glib-networking not found by Gnome ? Jérémy Korwin-Zmijowski
2021-02-22 7:24 ` Pierre Neidhardt
2021-02-22 13:29 ` Jérémy Korwin-Zmijowski
2021-02-22 14:59 ` Pierre Neidhardt
2021-02-22 16:06 ` Jérémy Korwin-Zmijowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).