Nikita Karetnikov <[email protected]> skribis: >>> # ./pre-inst-env guix download >>> https://launchpad.net/bzr/2.5/2.5.1/+download/bzr-2.5.1.tar.gz >>> >>> [...] >>> >>> ERROR: missing interface for module (gnutls) > >> That’s because GnuTLS is not available on your system. You must install >> it if you want to be able to use ‘guix download’ with https. >> Fortunately, you just have to type ‘guix package -i gnutls’. :-) > > Sadly, it didn't help. Should I somehow indicate that I want to use a > program from my profile?
Well, gnutls.scm must be in the search path. So for Guile, you must have $GUILE_LOAD_PATH set to point to that: export GUILE_LOAD_PATH=$HOME/.guix-profile/share/guile/site/2.0 HTH, Ludo’.
