"N. Y." writes:
> Hi all,
>
> I was wondering what is the meaning of symbols prefixed with "#$", for
> example "#$version" in Guix package definitions.
G-Expressions in Guix are created using #~, similar to how
S-Expressions are created using ' or ` in Scheme (and
other Lisps). The single quot
Hi all,
I was wondering what is the meaning of symbols prefixed with "#$", for
example "#$version" in Guix package definitions.
I was trying to write a package definition for a python package whose
version number was intended to be inferred from git metadata during build
time via versioneer. Howe