gnu: wpa-supplicant: Install man pages.
[jackhill/guix/guix.git] / HACKING
CommitLineData
450ccdc3
LC
1-*- mode: org; coding: utf-8; -*-
2
08ba7ff3 3#+TITLE: Hacking GNU Guix and Its Incredible Distro
450ccdc3 4
5ff3c4b8 5Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
84dbbc76 6Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
5ff3c4b8 7Copyright © 2014 Pierre-Antoine Rault <par@rigelk.eu>
450ccdc3
LC
8
9 Copying and distribution of this file, with or without modification,
10 are permitted in any medium without royalty provided the copyright
11 notice and this notice are preserved.
12
13
84dbbc76
NK
14* Building from Git
15
8b2d9e5d
LC
16When building Guix from a checkout, the following packages are required in
17addition to those mentioned in the installation instructions:
18
19 - [[http://www.gnu.org/software/autoconf/][GNU Autoconf]]
20 - [[http://www.gnu.org/software/automake/][GNU Automake]]
21 - [[http://www.gnu.org/software/gettext/][GNU Gettext]]
22 - [[http://www.graphviz.org/][Graphviz]]
23
24Run ‘./bootstrap’ to download the Nix daemon source code and to generate the
25build system infrastructure using autoconf. It reports an error if an
26inappropriate version of the above packages is being used.
27
28The ‘bootstrap’ script, among other things, invokes ‘git submodule update’; if
29you didn’t run it, you may get the following error:
84dbbc76
NK
30
31 make: *** No rule to make target `nix/libstore/schema.sql', needed by
32 `nix/libstore/schema.sql.hh'
33
25ed6edb 34If you get an error like this one:
84dbbc76 35
25ed6edb 36 configure.ac:46: error: possibly undefined macro: PKG_CHECK_MODULES
84dbbc76
NK
37
38it probably means that Autoconf couldn’t find ‘pkg.m4’, which is provided by
39pkg-config. Make sure that ‘pkg.m4’ is available. For instance, if you
40installed Automake in ‘/usr/local’, it wouldn’t look for ‘.m4’ files in
41‘/usr/share’. So you have to invoke the following command in that case
42
43 $ export ACLOCAL_PATH=/usr/share/aclocal
44
45See “info '(automake) Macro Search Path'” for more information.
46
25ed6edb
LC
47Then, run ‘./configure’ as usual.
48
84dbbc76
NK
49Finally, you have to invoke ‘make check’ to run tests. If anything fails,
50take a look at “info '(guix) Installation'” or send a message to
8b2d9e5d 51<guix-devel@gnu.org>.
84dbbc76 52
08ba7ff3
LC
53* Running Guix before it is installed
54
55Command-line tools can be used even if you have not run "make install".
56To do that, prefix each command with ‘./pre-inst-env’, as in:
57
9bf3c1a7 58 ./pre-inst-env guix build --help
08ba7ff3
LC
59
60Similarly, for a Guile session using the Guix modules:
61
62 ./pre-inst-env guile -c '(use-modules (guix utils)) (pk (%current-system))'
63
64The ‘pre-inst-env’ script sets up all the environment variables
65necessary to support this.
66
c6dbd505
LC
67* The Perfect Setup
68
69The Perfect Setup to hack on Guix is basically the perfect setup used
70for Guile hacking (info "(guile) Using Guile in Emacs"). First, you
71need more than an editor, you need [[http://www.gnu.org/software/emacs][Emacs]], empowered by the wonderful
72[[http://nongnu.org/geiser/][Geiser]].
73
74Geiser allows for interactive and incremental development from within
75Emacs: code compilation and evaluation from within buffers, access to
76on-line documentation (docstrings), context-sensitive completion, M-. to
77jump to an object definition, a REPL to try out your code, and more.
78
79To actually edit the code, Emacs already has a neat Scheme mode. But in
80addition to that, you must not miss [[http://www.emacswiki.org/emacs/ParEdit][Paredit]]. It provides facilities to
81directly operate on the syntax tree, such as raising an s-expression or
82wrapping it, swallowing or rejecting the following s-expression, etc.
83
9bf3c1a7
LC
84* Submitting Patches
85
86Development is done using the Git distributed version control system. Thus,
87access to the repository is not strictly necessary. We welcome contributions
88in the form of patches as produced by ‘git format-patch’ sent to
5ff3c4b8
PAR
89guix-devel@gnu.org. Please write commit logs in the [[http://www.gnu.org/prep/standards/html_node/Change-Logs.html#Change-Logs][GNU ChangeLog
90format]]; you can check the commit history for examples.
91
141360b5
LC
92Before submitting a patch that adds or modifies a package definition, please
93run ‘guix lint PACKAGE’, where PACKAGE is the name of the new or modified
94package, and fix any errors it reports. In addition, please make sure the
95package builds on your platform, using ‘guix build’. You may also want to
96check that dependent package (if applicable) are not affected by the change;
97‘guix refresh --list-dependent PACKAGE’ will help you do that.
98
5ff3c4b8
PAR
99When posting a patch to the mailing list, use "[PATCH] ..." as a subject. You
100may use your email client or the ‘git send-mail’ command.
9bf3c1a7
LC
101
102As you become a regular contributor, you may find it convenient to have write
103access to the repository (see below.)
104
e1c5a835
LC
105* Coding Style
106
107In general our code follows the [[info:standards][GNU Coding Standards]] (GCS). However, the GCS
108do not say much about Scheme, so here are some additional rules.
109
110** Programming Paradigm
111
112Scheme code in Guix is written in a purely functional style. One exception is
113code that involves input/output, and procedures that implement low-level
114concepts, such as the ‘memoize’ procedure.
115
116** Modules
117
118Guile modules that are meant to be used on the builder side must live in the
119(guix build …) name space. They must not refer to other Guix or GNU modules.
120However, it is OK for a “host-side” module to use a build-side module.
121
122Modules that deal with the broader GNU system should be in the (gnu …) name
123space rather than (guix …).
124
2df74ac1
LC
125** Data Types and Pattern Matching
126
127The tendency in classical Lisp is to use lists to represent everything, and
128then to browse them “by hand” using ‘car’, ‘cdr’, ‘cadr’, and co. There are
129several problems with that style, notably the fact that it is hard to read,
130error-prone, and a hindrance to proper type error reports.
131
132Guix code should define appropriate data types (for instance, using
133‘define-record-type*’) rather than abuse lists. In addition, it should use
134pattern matching, via Guile’s (ice-9 match) module, especially when matching
135lists.
136
e1c5a835
LC
137** Formatting Code
138
139When writing Scheme code, we follow common wisdom among Scheme programmers.
140In general, we follow the [[http://mumble.net/~campbell/scheme/style.txt][Riastradh's Lisp Style Rules]]. This document happens
141to describe the conventions mostly used in Guile’s code too. It is very
142thoughtful and well written, so please do read it.
143
1a2e6495
LC
144Some special forms introduced in Guix, such as the ‘substitute*’ macro, have
145special indentation rules. These are defined in the .dir-locals.el file,
146which Emacs automatically uses. If you do not use Emacs, please make sure to
147let your editor know the rules.
148
149We require all top-level procedures to carry a docstring. This requirement
150can be relaxed for simple private procedures in the (guix build …) name space,
151though.
e1c5a835
LC
152
153Procedures should not have more than four positional parameters. Use keyword
154parameters for procedures that take more than four parameters.
155
9bf3c1a7
LC
156* Commit Access
157
158For frequent contributors, having write access to the repository is
159convenient. When you deem it necessary, feel free to ask for it on the
160mailing list. When you get commit access, please make sure to follow the
2d2ad989 161policy below (discussions of the policy can take place on guix-devel@gnu.org.)
9bf3c1a7 162
2d2ad989 163Non-trivial patches should always be posted to guix-devel@gnu.org (trivial
9bf3c1a7
LC
164patches include fixing typos, etc.)
165
166For patches that just add a new package, and a simple one, it’s OK to commit,
e20ec9cc
LC
167if you’re confident (which means you successfully built it in a chroot setup,
168and have done a reasonable copyright and license auditing.) Likewise for
d0c64188
LC
169package upgrades, except upgrades that trigger a lot of rebuilds (for example,
170upgrading GnuTLS or GLib.) We have a mailing list for commit notifications
e20ec9cc
LC
171(guix-commits@gnu.org), so people can notice. Before pushing your changes,
172make sure to run ‘git pull --rebase’.
9bf3c1a7 173
2d2ad989 174For anything else, please post to guix-devel@gnu.org and leave time for a
9bf3c1a7
LC
175review, without committing anything. If you didn’t receive any reply
176after two weeks, and if you’re confident, it’s OK to commit.
177
178That last part is subject to being adjusted, allowing individuals to commit
179directly on non-controversial changes on parts they’re familiar with.