#Guix Packager 📦 supports a couple more languages and build systems as of… today!
https://guix-hpc.gitlabpages.inria.fr/guix-packager/

Kudos to Philippe Virouleau for the good hack.

Guix Packager

Generate a Guix package definition interactively.

Someone asked during Café Guix whether we could use Hoot to run bits of Guix such as importers in the browser, which would nicely complement Guix Packager.

I suppose we’re still far from it because of C bindings these modules depend on, such as Guile-Gcrypt and POSIX sockets (for the HTTP client). But maybe someday these interfaces could be implemented in JS/wasm to allow for seamless integration?

@civodul And what about the Guile standard library implemented in C? What is under libguile/ say.
@zimoun @civodul anything that's needed either needs a pure scheme implementation or a wasm implementation with a scheme wrapper. we have some stuff now but it's basically r7rs-small plus a few of the more important guile extensions.

@dthompson Is this « r7rs-small plus a few of the more important guile extensions » released with Guile-Hoot under module/hoot?

https://gitlab.com/spritely/guile-hoot/-/tree/ad2a7bb63b104beb09bf8689576c4e73f1cb8066/module/hoot

Modulo benchmarking and bootstrapping, it could be nice to replace C implementation by pure Scheme directly in libguile. Well, “could be” because integration is a piece of work. :-)

Working on https://simon.tournier.info/posts/2024-02-05-guile-sort I’ve started to think about libguile/list.c and others. Cool if it’s already done. :-)

@civodul

module/hoot · ad2a7bb63b104beb09bf8689576c4e73f1cb8066 · spritely / Guile Hoot · GitLab

GitLab.com

GitLab
@zimoun @civodul yeah the (hoot ...) namespace is where all of that stuff is right now. this namespace mixes the standard library with the compiler currently so we'll be splitting it up soon.