I am missing something very basic. There is an unexported procedure in the Guix source module (guix build-system python)
I want to use. I thought I could just use @@
to get it. Yet, when I try that I get an error.
> (define pwep (@@ (guix build-system python) package-with-explicit-python))
ice-9/boot-9.scm:1685:16: In procedure raise-exception:
error: package-with-explicit-python: unbound variable
I am starting guile from a guix repl
so I know can import it with (use-modules (guix build-system python))
. Of course, that doesn't give me access to this particular procedure.
What am I missing?