Hi,
On Sat, 17 Jun 2023 at 17:27, "(" wrote:
> Robby Zambito writes:
>> Strangely with-extensions doesn't seem to be including the whole
>> dependency tree for me. Should it?
>
> No, I don't think it should. It *would* be possible to traverse the
> package inputs and add all the GUILE-BUILD-SYST
Robby Zambito writes:
> Strangely with-extensions doesn't seem to be including the whole
> dependency tree for me. Should it?
No, I don't think it should. It *would* be possible to traverse the
package inputs and add all the GUILE-BUILD-SYSTEM-using packages, but
then you get the problem that not
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!
Robby Zambito writes:
> scheme@(guile-user)> (source-module-closure '((ice-9 popen) (ice-9 atomic)
> (ini) (json)))
> $8 = ()
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-p
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