On 3/13/22 1:47 PM, Matt Wette wrote:
Hi All,
I've put my "jump to debugger" code on github:
https://github.com/mwette/guile-jtd
jump-to-debugger is a procedure that, when called,
stops execution and fires up a REPL. It is much like
Python's pdb.set_trace() function.
Hi All,
I've pushed ve
Jérémy Korwin-Zmijowski schreef op za 19-03-2022 om 11:10 [+0100]:
> Hey Guilers !
>
> I would like to visualize all the modules a given module depend on.
>
> How do you achieve that ?
It's not 100% what you're asking for, but you can do
$ guix graph --type=module hello
to create a graph (in d
Le samedi 19 mars 2022 à 10:58 +, dsm...@roadrunner.com a écrit :
> > From: "Jérémy Korwin-Zmijowski"
> >
> > I would like to visualize all the modules a given module depend
> on.
> >
> > How do you achieve that ?
> >
> > Any existing tool ?
>
> Maybe this from the guile sources: module/
> From: "Jérémy Korwin-Zmijowski"
>
> I would like to visualize all the modules a given module depend on.
>
> How do you achieve that ?
>
> Any existing tool ?
Maybe this from the guile sources: module/scripts/use2dot.scm
-Dale
Hello Jérémy,
Le samedi 19 mars 2022 à 11:10 +0100, Jérémy Korwin-Zmijowski a écrit :
> I would like to visualize all the modules a given module depend on.
Guix seems to do it in (guix modules), see extract-dependencies, but
I’m not sure it’s very robust.
Hey Guilers !
I would like to visualize all the modules a given module depend on.
How do you achieve that ?
Any existing tool ?
Thanks
Jérémy