Email or username:

Password:

Forgot your password?
Andrew Tropin

Thanks to @daviwil's stream I finally allocated time to start migration to more complete REPL-driven workflow for #guix and #rde development.

youtu.be/KNXOZtbfslY

It still requires a lot of work to make it really pleasant, but I already build store items for different parts of rde from repl rather than makefiles, which is a way faster (in terms of build time, the required amount of code is not that small yet).

guix.gnu.org/manual/devel/en/h

2 comments
David Wilson

@abcdw Nice! It is pretty convenient building derivations at the REPL.

The one thing I really need to figure out is how to quickly open the output file or folder of a build in Emacs so that I can inspect it without copy/pasting the path.

Probably not that hard to do, just needs a few moments to try it!

Andrew Tropin

@daviwil I use the following trick to open a file under the cursor: C-x C-f M-n C-m

trop.in/rde/manual#Completing-

Go Up