Hey Ludo, thank you for taking a moment to look at this. I have guile_load_path set in both a .guile and .bashrc for a few custom path references.
I will check and see what guile_load_path is returning when I get a chance.
Sent from my Sprint Phone.
Hello,
brettg@posteo.net skribis:
> I reference the newt module in this file of my channel
> https://git.sr.ht/~brettgilio/guix-system/tree/master/guile-modules/gscale/screen.scm
>
> However, when I `guix pull` it fails to build citing that there is no
> code available for that module. I have guile-newt installed system
> wide, and to my local profile manifest, but neither of those fix the
> issue.
When Guile and Guile-Newt are in the same profile, the GUILE_LOAD_PATH
and GUILE_LOAD_COMPILED_PATH are automatically set appropriately:
guix environment -C --ad-hoc guile guile-newt -- guile -c '(use-modules (newt))'
# success
So it looks like GUILE_LOAD_PATH may be unset or wrong in your case.
Ludo’.