Go to file
retropikzel 1e6f4128ca Fixing the build 2024-10-12 08:52:10 +03:00
packages Update readme to use new path 2024-10-11 22:13:34 +03:00
.gitignore Made this 2024-10-06 16:33:19 +03:00
.guix-channel Added search paths to libraries 2024-10-11 21:45:11 +03:00
Dockerfile.jenkins Fixing the build 2024-10-12 08:51:52 +03:00
Jenkinsfile Fixing the build 2024-10-12 08:50:55 +03:00
Makefile Added search paths to libraries 2024-10-11 21:45:11 +03:00
README.md Update readme 2024-10-11 23:04:00 +03:00
build.scm Update readme to use new path 2024-10-11 22:13:34 +03:00
ensure-hashes.sh Fixing the build 2024-10-12 08:52:10 +03:00
get-package-urls.scm Added search paths to libraries 2024-10-11 21:45:11 +03:00
licenses.scm Added search paths to libraries 2024-10-11 21:45:42 +03:00
news.txt Added news 2024-10-06 16:36:53 +03:00

README.md

Snow fort packages as Guix channel.

The relevant part of Guix manual is Additional Channels. But here are short instructions anyway.

Note about dependencies

Only libraries which are in snow-fort and not (scheme ...) or (srfi ...) are added to the Guix package as dependency.

See the part about installing srfi-libraries for more details.

Add the Guix channell

Copy this:

(cons (channel
       (name 'snow-fort)
       (url "https://gitea.scheme.org/Rinne/snow-fort-guix-channel.git"))
 %default-channels)

Into:

~/.config/guix/channels.scm

Update the channels

Run:

guix pull

Installing packages

The packages have been prefixed with "snow-", and spaces replaced with "-".

So for example to install package (arvyy mustache) run:

guix install snow-arvyy-mustache

or:

guix shell snow-arvyy-mustache

Using the libraries

When using Guix system on Guix shell environment variable SNOW_LIBRARY_PATH will be set.

To use the libraries add the environment variable into your implementations load path.

Example with Guile:

guix install snow-arvyy-mustache
guile --r7rs -L ${SNOW_LIBRARY_PATH}

Example with Gauche:

guix install snow-arvyy-mustache
gosh -r7 -A ${SNOW_LIBRARY_PATH}

Example with Sagittarius:

guix install snow-arvyy-mustache
sash -r7 -L ${SNOW_LIBRARY_PATH}

Installing SRFI libraries

SRFI libraries are not yet packaged into this channel. See related issue.