Hi, On Thu, Dec 19 2024, Divya Ranjan wrote:
> why doesn’t Guix [...] have a purely Guile-based build tool?
A year ago, I rewrote Guix's Makefile recipes in GNU Guile. They look
like the example below. Would the maintainers accept such a patch?
It would be a small step for a human but a big step for humankind.
Kind regards
Felix
* * *
export SHELL = /run/current-system/profile/bin/guile
.SILENT: all
all:
(format #t "Hello, Guix!")
