Hello,
"(" writes:
> SOURCE-MODULE-CLOSURE only works for modules provided by Guix or Guix
> channels ;) Modules included in Guile don't need it at all, and for
> modules provided by third-party Guile libraries like guile-ini or
> guile-json, you need to use WITH-EXTENSIONS:
>
> (use-modules
Hi,
I seem to be having two issues with writing a G-exp that computes a
file. The first issue I ran into is that source-module-closure returns
null no matter what modules I give it.
```
scheme@(guile-user)> (source-module-closure '((ice-9 popen) (ice-9 atomic)
(ini) (json)))
$8 = ()
```
This se
Liliana Marie Prikler writes:
> I think you should try to pin the kernel modules as well. If that
> still doesn't work as intended (it very well might), we have a proper
> case of something that should work but doesn't.
>
> Cheers
Thanks for the suggestion. I tested with the following:
```
(d
Hi,
I use an inferior to pin my kernel version, but it seems like I cannot
use modules with it. The following works fine:
```
(use-package-modules linux)
(operating-system
...
(kernel linux-libre)
(kernel-loadable-modules (list v4l2loopback-linux-module))
...)
```
As does the following:
Hi,
I've noticed tcc seems to be failing for me on the current master branch
of guix (commit b2ae164b211f4da6a3cc5dcb97eeeff3c6c7ebed according to
guix describe).
I tried to see if I could debug the issue, but I've reached the limit of
my knowledge.
The issue occurs on line 168 of tcc_run.c. Tha