Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 708 Bytes

HACKING

File metadata and controls

22 lines (16 loc) · 708 Bytes

Hacking the Guile Config library

-*- mode: org; coding: utf-8; -*-

Contributing

By far the easiest way to hack on Guile config is to develop using Guix:

git clone https://gitlab.com/guile-projects/guile-config.git
cd guile-config
guix environment --pure --container -l guix.scm
# In the new shell, run:
./bootstrap && ./configure && make check

You can now hack the Config files to your heart’s content, whilst testing them from your `guix environment’ shell.

If you are so unlucky as to not be using Guix, you will have to install the dependencies listed in the “guix.scm” file manually, after which you can run ./bootstrap && ./configure && make check.