Compare commits
No commits in common. "64e7ee811763d73551eeba3ba0d8ce06eb2207df" and "b338d565bc2b8218bf5bf562500f4f34e0cf678d" have entirely different histories.
64e7ee8117
...
b338d565bc
14
README.md
14
README.md
|
|
@ -47,28 +47,26 @@ or:
|
||||||
|
|
||||||
## Using the libraries
|
## Using the libraries
|
||||||
|
|
||||||
When using Guix system on Guix shell environment variable **SNOW_LIBRARY_PATH** will be set.
|
When you install a library it will be in path:
|
||||||
|
|
||||||
If you are using Guix as package manager you need to set it yourself, for example in bashrc:
|
${SNOW_LIBRARY_PATH}/usr/lib/snow
|
||||||
|
|
||||||
export SNOW_LIBRARY_PATH=${HOME}/.guix-profile/current
|
To use the libraries add the installation path into your implementations load path.
|
||||||
|
|
||||||
To use the libraries add the environment variable into your implementations load path.
|
|
||||||
|
|
||||||
Example with Guile:
|
Example with Guile:
|
||||||
|
|
||||||
guix install snow-arvyy-mustache
|
guix install snow-arvyy-mustache
|
||||||
guile --r7rs -L ${SNOW_LIBRARY_PATH}
|
guile --r7rs -L ${SNOW_LIBRARY_PATH}/usr/lib/snow
|
||||||
|
|
||||||
Example with Gauche:
|
Example with Gauche:
|
||||||
|
|
||||||
guix install snow-arvyy-mustache
|
guix install snow-arvyy-mustache
|
||||||
gosh -r7 -A ${SNOW_LIBRARY_PATH}
|
gosh -r7 -A ${SNOW_LIBRARY_PATH}/usr/lib/snow
|
||||||
|
|
||||||
Example with Sagittarius:
|
Example with Sagittarius:
|
||||||
|
|
||||||
guix install snow-arvyy-mustache
|
guix install snow-arvyy-mustache
|
||||||
sash -r7 -L ${SNOW_LIBRARY_PATH}
|
sash -r7 -L ${SNOW_LIBRARY_PATH}/usr/lib/snow
|
||||||
|
|
||||||
## Installing SRFI libraries
|
## Installing SRFI libraries
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue