c68e2915d170bfe9076f302587fb9a7380a0467c
[jackhill/guix/guix.git] / doc / guix.texi
1 \input texinfo
2 @c -*-texinfo-*-
3
4 @c %**start of header
5 @setfilename guix.info
6 @documentencoding UTF-8
7 @settitle GNU Guix Reference Manual
8 @c %**end of header
9
10 @include version.texi
11
12 @copying
13 Copyright @copyright{} 2012, 2013, 2014, 2015 Ludovic Courtès@*
14 Copyright @copyright{} 2013, 2014 Andreas Enge@*
15 Copyright @copyright{} 2013 Nikita Karetnikov
16
17 Permission is granted to copy, distribute and/or modify this document
18 under the terms of the GNU Free Documentation License, Version 1.3 or
19 any later version published by the Free Software Foundation; with no
20 Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
21 copy of the license is included in the section entitled ``GNU Free
22 Documentation License''.
23 @end copying
24
25 @dircategory Package management
26 @direntry
27 * guix: (guix). Guix, the functional package manager.
28 * guix package: (guix)Invoking guix package
29 Managing packages with Guix.
30 * guix build: (guix)Invoking guix build
31 Building packages with Guix.
32 * guix system: (guix)Invoking guix system
33 Managing the operating system configuration.
34 @end direntry
35
36 @dircategory Software development
37 @direntry
38 * guix environment: (guix)Invoking guix environment
39 Building development environments with Guix.
40 @end direntry
41
42 @titlepage
43 @title GNU Guix Reference Manual
44 @subtitle Using the GNU Guix Functional Package Manager
45 @author Ludovic Courtès
46 @author Andreas Enge
47 @author Nikita Karetnikov
48
49 @page
50 @vskip 0pt plus 1filll
51 Edition @value{EDITION} @*
52 @value{UPDATED} @*
53
54 @insertcopying
55 @end titlepage
56
57 @contents
58
59 @c *********************************************************************
60 @node Top
61 @top GNU Guix
62
63 This document describes GNU Guix version @value{VERSION}, a functional
64 package management tool written for the GNU system.
65
66 @menu
67 * Introduction:: What is Guix about?
68 * Installation:: Installing Guix.
69 * Package Management:: Package installation, upgrade, etc.
70 * Programming Interface:: Using Guix in Scheme.
71 * Utilities:: Package management commands.
72 * GNU Distribution:: Software for your friendly GNU system.
73 * Contributing:: Your help needed!
74
75 * Acknowledgments:: Thanks!
76 * GNU Free Documentation License:: The license of this manual.
77 * Concept Index:: Concepts.
78 * Programming Index:: Data types, functions, and variables.
79
80 @detailmenu
81 --- The Detailed Node Listing ---
82
83 Installation
84
85 * Requirements:: Software needed to build and run Guix.
86 * Running the Test Suite:: Testing Guix.
87 * Setting Up the Daemon:: Preparing the build daemon's environment.
88 * Invoking guix-daemon:: Running the build daemon.
89
90 Setting Up the Daemon
91
92 * Build Environment Setup:: Preparing the isolated build environment.
93 * Daemon Offload Setup:: Offloading builds to remote machines.
94
95 Package Management
96
97 * Features:: How Guix will make your life brighter.
98 * Invoking guix package:: Package installation, removal, etc.
99 * Emacs Interface:: Package management from Emacs.
100 * Substitutes:: Downloading pre-built binaries.
101 * Packages with Multiple Outputs:: Single source package, multiple outputs.
102 * Invoking guix gc:: Running the garbage collector.
103 * Invoking guix pull:: Fetching the latest Guix and distribution.
104 * Invoking guix archive:: Exporting and importing store files.
105
106 Programming Interface
107
108 * Defining Packages:: Defining new packages.
109 * Build Systems:: Specifying how packages are built.
110 * The Store:: Manipulating the package store.
111 * Derivations:: Low-level interface to package derivations.
112 * The Store Monad:: Purely functional interface to the store.
113 * G-Expressions:: Manipulating build expressions.
114
115 Utilities
116
117 * Invoking guix build:: Building packages from the command line.
118 * Invoking guix download:: Downloading a file and printing its hash.
119 * Invoking guix hash:: Computing the cryptographic hash of a file.
120 * Invoking guix import:: Importing package definitions.
121 * Invoking guix refresh:: Updating package definitions.
122 * Invoking guix lint:: Finding errors in package definitions.
123 * Invoking guix environment:: Setting up development environments.
124 * Invoking guix publish:: Sharing substitutes.
125
126 GNU Distribution
127
128 * System Installation:: Installing the whole operating system.
129 * System Configuration:: Configuring the operating system.
130 * Installing Debugging Files:: Feeding the debugger.
131 * Security Updates:: Deploying security fixes quickly.
132 * Package Modules:: Packages from the programmer's viewpoint.
133 * Packaging Guidelines:: Growing the distribution.
134 * Bootstrapping:: GNU/Linux built from scratch.
135 * Porting:: Targeting another platform or kernel.
136
137 System Configuration
138
139 * Using the Configuration System:: Customizing your GNU system.
140 * operating-system Reference:: Detail of operating-system declarations.
141 * File Systems:: Configuring file system mounts.
142 * Mapped Devices:: Block device extra processing.
143 * User Accounts:: Specifying user accounts.
144 * Locales:: Language and cultural convention settings.
145 * Services:: Specifying system services.
146 * Setuid Programs:: Programs running with root privileges.
147 * Name Service Switch:: Configuring libc's name service switch.
148 * Initial RAM Disk:: Linux-Libre bootstrapping.
149 * GRUB Configuration:: Configuring the boot loader.
150 * Invoking guix system:: Instantiating a system configuration.
151 * Defining Services:: Adding new service definitions.
152
153 Services
154
155 * Base Services:: Essential system services.
156 * Networking Services:: Network setup, SSH daemon, etc.
157 * X Window:: Graphical display.
158 * Various Services:: Other services.
159
160 Packaging Guidelines
161
162 * Software Freedom:: What may go into the distribution.
163 * Package Naming:: What's in a name?
164 * Version Numbers:: When the name is not enough.
165 * Python Modules:: Taming the snake.
166 * Perl Modules:: Little pearls.
167 * Fonts:: Fond of fonts.
168
169 @end detailmenu
170 @end menu
171
172 @c *********************************************************************
173 @node Introduction
174 @chapter Introduction
175
176 GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks''
177 using the international phonetic alphabet (IPA).} is a functional
178 package management tool for the GNU system. Package management consists
179 of all activities that relate to building packages from sources,
180 honoring their build-time and run-time dependencies,
181 installing packages in user environments, upgrading installed packages
182 to new versions or rolling back to a previous set, removing unused
183 software packages, etc.
184
185 @cindex functional package management
186 The term @dfn{functional} refers to a specific package management
187 discipline. In Guix, the package build and installation process is seen
188 as a function, in the mathematical sense. That function takes inputs,
189 such as build scripts, a compiler, and libraries, and
190 returns an installed package. As a pure function, its result depends
191 solely on its inputs---for instance, it cannot refer to software or
192 scripts that were not explicitly passed as inputs. A build function
193 always produces the same result when passed a given set of inputs. It
194 cannot alter the system's environment in
195 any way; for instance, it cannot create, modify, or delete files outside
196 of its build and installation directories. This is achieved by running
197 build processes in isolated environments (or @dfn{containers}), where only their
198 explicit inputs are visible.
199
200 @cindex store
201 The result of package build functions is @dfn{cached} in the file
202 system, in a special directory called @dfn{the store} (@pxref{The
203 Store}). Each package is installed in a directory of its own, in the
204 store---by default under @file{/gnu/store}. The directory name contains
205 a hash of all the inputs used to build that package; thus, changing an
206 input yields a different directory name.
207
208 This approach is the foundation of Guix's salient features: support for
209 transactional package upgrade and rollback, per-user installation, and
210 garbage collection of packages (@pxref{Features}).
211
212 Guix has a command-line interface, which allows users to build, install,
213 upgrade, and remove packages, as well as a Scheme programming interface.
214
215 @cindex Guix System Distribution
216 @cindex GSD
217 Last but not least, Guix is used to build a distribution of the GNU
218 system, with many GNU and non-GNU free software packages. The Guix
219 System Distribution, or GNU@tie{}GSD, takes advantage of the core
220 properties of Guix at the system level. With GNU@tie{}GSD, users
221 @emph{declare} all aspects of the operating system configuration, and
222 Guix takes care of instantiating that configuration in a reproducible,
223 stateless fashion. @xref{GNU Distribution}.
224
225 @c *********************************************************************
226 @node Installation
227 @chapter Installation
228
229 GNU Guix is available for download from its website at
230 @url{http://www.gnu.org/software/guix/}. This section describes the
231 software requirements of Guix, as well as how to install it and get
232 ready to use it.
233
234 Note that this section is concerned with the installation of the package
235 manager, which can be done on top of a running GNU/Linux system. If,
236 instead, you want to install the complete GNU operating system,
237 @pxref{System Installation}.
238
239 @menu
240 * Binary Installation:: Getting Guix running in no time!
241 * Requirements:: Software needed to build and run Guix.
242 * Running the Test Suite:: Testing Guix.
243 * Setting Up the Daemon:: Preparing the build daemon's environment.
244 * Invoking guix-daemon:: Running the build daemon.
245 @end menu
246
247 @node Binary Installation
248 @section Binary Installation
249
250 This section describes how to install Guix on an arbitrary system from a
251 self-contained tarball providing binaries for Guix and for all its
252 dependencies. This is often quicker than installing from source, which
253 is described in the next sections. The only requirement is to have
254 GNU@tie{}tar and Xz.
255
256 Installing goes along these lines:
257
258 @enumerate
259 @item
260 Download the binary tarball from
261 @code{ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz}@footnote{As
262 usual, make sure to download the associated @file{.sig} file and to
263 verify the authenticity of the tarball against it!}, where @var{system}
264 is @code{x86_64-linux} for an @code{x86_64} machine already running the
265 kernel Linux, and so on.
266
267 @item
268 As @code{root}, run:
269
270 @example
271 # cd /
272 # tar xf guix-binary-@value{VERSION}.@var{system}.tar.xz
273 @end example
274
275 This creates @file{/gnu/store} (@pxref{The Store}), @file{/var/guix},
276 and @file{/root/.guix-profile}. @file{/root/.guix-profile} is a
277 ready-to-use profile for @code{root} where Guix is installed.
278
279 Do @emph{not} unpack the tarball on a working Guix system since that
280 would overwrite its own essential files.
281
282 @item
283 Set up the daemon as explained below (@pxref{Setting Up the Daemon}), and
284 run it:
285
286 @example
287 # /root/.guix-profile/bin/guix-daemon --build-users-group=guix-builder
288 @end example
289
290 @item
291 Make the @command{guix} command available to other users on the machine,
292 for instance with:
293
294 @example
295 # mkdir -p /usr/local/bin
296 # cd /usr/local/bin
297 # ln -s /root/.guix-profile/bin/guix
298 @end example
299 @end enumerate
300
301 And that's it!
302
303 The @code{guix} package must remain available in @code{root}'s
304 profile, or it would become subject to garbage collection---in which
305 case you would find yourself badly handicapped by the lack of the
306 @command{guix} command.
307
308 The tarball in question can be (re)produced simply by running the
309 following command in the Guix source tree:
310
311 @example
312 make guix-binary.@var{system}.tar.xz
313 @end example
314
315
316 @node Requirements
317 @section Requirements
318
319 This section lists requirements when building Guix from source. The
320 build procedure for Guix is the same as for other GNU software, and is
321 not covered here. Please see the files @file{README} and @file{INSTALL}
322 in the Guix source tree for additional details.
323
324 GNU Guix depends on the following packages:
325
326 @itemize
327 @item @url{http://gnu.org/software/guile/, GNU Guile}, version 2.0.5 or later;
328 @item @url{http://gnupg.org/, GNU libgcrypt};
329 @end itemize
330
331 The following dependencies are optional:
332
333 @itemize
334 @item
335 Installing
336 @url{http://savannah.nongnu.org/projects/guile-json/, Guile-JSON} will
337 allow you to use the @command{guix import pypi} command (@pxref{Invoking
338 guix import}). It is of
339 interest primarily for developers and not for casual users.
340 @item
341 Installing @uref{http://gnutls.org/, GnuTLS-Guile} will
342 allow you to access @code{https} URLs with the @command{guix download}
343 command (@pxref{Invoking guix download}), the @command{guix import pypi}
344 command, and the @command{guix import cpan} command. This is primarily
345 of interest to developers. @xref{Guile Preparations, how to install the
346 GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}.
347 @end itemize
348
349 Unless @code{--disable-daemon} was passed to @command{configure}, the
350 following packages are also needed:
351
352 @itemize
353 @item @url{http://sqlite.org, SQLite 3}
354 @item @url{http://www.bzip.org, libbz2}
355 @item @url{http://gcc.gnu.org, GCC's g++}
356 @end itemize
357
358 When a working installation of @url{http://nixos.org/nix/, the Nix package
359 manager} is available, you
360 can instead configure Guix with @code{--disable-daemon}. In that case,
361 Nix replaces the three dependencies above.
362
363 Guix is compatible with Nix, so it is possible to share the same store
364 between both. To do so, you must pass @command{configure} not only the
365 same @code{--with-store-dir} value, but also the same
366 @code{--localstatedir} value. The latter is essential because it
367 specifies where the database that stores metadata about the store is
368 located, among other things. The default values for Nix are
369 @code{--with-store-dir=/nix/store} and @code{--localstatedir=/nix/var}.
370 Note that @code{--disable-daemon} is not required if
371 your goal is to share the store with Nix.
372
373 @node Running the Test Suite
374 @section Running the Test Suite
375
376 After a successful @command{configure} and @code{make} run, it is a good
377 idea to run the test suite. It can help catch issues with the setup or
378 environment, or bugs in Guix itself---and really, reporting test
379 failures is a good way to help improve the software. To run the test
380 suite, type:
381
382 @example
383 make check
384 @end example
385
386 Test cases can run in parallel: you can use the @code{-j} option of
387 GNU@tie{}make to speed things up. The first run may take a few minutes
388 on a recent machine; subsequent runs will be faster because the store
389 that is created for test purposes will already have various things in
390 cache.
391
392 Upon failure, please email @email{bug-guix@@gnu.org} and attach the
393 @file{test-suite.log} file. When @file{tests/@var{something}.scm}
394 fails, please also attach the @file{@var{something}.log} file available
395 in the top-level build directory. Please specify the Guix version being
396 used as well as version numbers of the dependencies
397 (@pxref{Requirements}) in your message.
398
399 @node Setting Up the Daemon
400 @section Setting Up the Daemon
401
402 @cindex daemon
403 Operations such as building a package or running the garbage collector
404 are all performed by a specialized process, the @dfn{build daemon}, on
405 behalf of clients. Only the daemon may access the store and its
406 associated database. Thus, any operation that manipulates the store
407 goes through the daemon. For instance, command-line tools such as
408 @command{guix package} and @command{guix build} communicate with the
409 daemon (@i{via} remote procedure calls) to instruct it what to do.
410
411 The following sections explain how to prepare the build daemon's
412 environment. Also @ref{Substitutes}, for information on how to allow
413 the daemon to download pre-built binaries.
414
415 @menu
416 * Build Environment Setup:: Preparing the isolated build environment.
417 * Daemon Offload Setup:: Offloading builds to remote machines.
418 @end menu
419
420 @node Build Environment Setup
421 @subsection Build Environment Setup
422
423 In a standard multi-user setup, Guix and its daemon---the
424 @command{guix-daemon} program---are installed by the system
425 administrator; @file{/gnu/store} is owned by @code{root} and
426 @command{guix-daemon} runs as @code{root}. Unprivileged users may use
427 Guix tools to build packages or otherwise access the store, and the
428 daemon will do it on their behalf, ensuring that the store is kept in a
429 consistent state, and allowing built packages to be shared among users.
430
431 @cindex build users
432 When @command{guix-daemon} runs as @code{root}, you may not want package
433 build processes themselves to run as @code{root} too, for obvious
434 security reasons. To avoid that, a special pool of @dfn{build users}
435 should be created for use by build processes started by the daemon.
436 These build users need not have a shell and a home directory: they will
437 just be used when the daemon drops @code{root} privileges in build
438 processes. Having several such users allows the daemon to launch
439 distinct build processes under separate UIDs, which guarantees that they
440 do not interfere with each other---an essential feature since builds are
441 regarded as pure functions (@pxref{Introduction}).
442
443 On a GNU/Linux system, a build user pool may be created like this (using
444 Bash syntax and the @code{shadow} commands):
445
446 @c See http://lists.gnu.org/archive/html/bug-guix/2013-01/msg00239.html
447 @c for why `-G' is needed.
448 @example
449 # groupadd guix-builder
450 # for i in `seq 1 10`;
451 do
452 useradd -g guix-builder -G guix-builder \
453 -d /var/empty -s `which nologin` \
454 -c "Guix build user $i" --system \
455 guix-builder$i;
456 done
457 @end example
458
459 @noindent
460 The @code{guix-daemon} program may then be run as @code{root} with:
461
462 @example
463 # guix-daemon --build-users-group=guix-builder
464 @end example
465
466 @cindex chroot
467 @noindent
468 This way, the daemon starts build processes in a chroot, under one of
469 the @code{guix-builder} users. On GNU/Linux, by default, the chroot
470 environment contains nothing but:
471
472 @c Keep this list in sync with libstore/build.cc! -----------------------
473 @itemize
474 @item
475 a minimal @code{/dev} directory, created mostly independently from the
476 host @code{/dev}@footnote{``Mostly'', because while the set of files
477 that appear in the chroot's @code{/dev} is fixed, most of these files
478 can only be created if the host has them.};
479
480 @item
481 the @code{/proc} directory; it only shows the container's processes
482 since a separate PID name space is used;
483
484 @item
485 @file{/etc/passwd} with an entry for the current user and an entry for
486 user @file{nobody};
487
488 @item
489 @file{/etc/group} with an entry for the user's group;
490
491 @item
492 @file{/etc/hosts} with an entry that maps @code{localhost} to
493 @code{127.0.0.1};
494
495 @item
496 a writable @file{/tmp} directory.
497 @end itemize
498
499 If you are installing Guix as an unprivileged user, it is still
500 possible to run @command{guix-daemon}. However, build processes will
501 not be isolated from one another, and not from the rest of the system.
502 Thus, build processes may interfere with each other, and may access
503 programs, libraries, and other files available on the system---making it
504 much harder to view them as @emph{pure} functions.
505
506
507 @node Daemon Offload Setup
508 @subsection Using the Offload Facility
509
510 @cindex offloading
511 @cindex build hook
512 When desired, the build daemon can @dfn{offload}
513 derivation builds to other machines
514 running Guix, using the @code{offload} @dfn{build hook}. When that
515 feature is enabled, a list of user-specified build machines is read from
516 @file{/etc/guix/machines.scm}; anytime a build is requested, for
517 instance via @code{guix build}, the daemon attempts to offload it to one
518 of the machines that satisfies the derivation's constraints, in
519 particular its system type---e.g., @file{x86_64-linux}. Missing
520 prerequisites for the build are copied over SSH to the target machine,
521 which then proceeds with the build; upon success the output(s) of the
522 build are copied back to the initial machine.
523
524 The @file{/etc/guix/machines.scm} file typically looks like this:
525
526 @example
527 (list (build-machine
528 (name "eightysix.example.org")
529 (system "x86_64-linux")
530 (user "bob")
531 (speed 2.)) ; incredibly fast!
532
533 (build-machine
534 (name "meeps.example.org")
535 (system "mips64el-linux")
536 (user "alice")
537 (private-key
538 (string-append (getenv "HOME")
539 "/.ssh/id-rsa-for-guix"))))
540 @end example
541
542 @noindent
543 In the example above we specify a list of two build machines, one for
544 the @code{x86_64} architecture and one for the @code{mips64el}
545 architecture.
546
547 In fact, this file is---not surprisingly!---a Scheme file that is
548 evaluated when the @code{offload} hook is started. Its return value
549 must be a list of @code{build-machine} objects. While this example
550 shows a fixed list of build machines, one could imagine, say, using
551 DNS-SD to return a list of potential build machines discovered in the
552 local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using
553 Avahi in Guile Scheme Programs}). The @code{build-machine} data type is
554 detailed below.
555
556 @deftp {Data Type} build-machine
557 This data type represents build machines the daemon may offload builds
558 to. The important fields are:
559
560 @table @code
561
562 @item name
563 The remote machine's host name.
564
565 @item system
566 The remote machine's system type---e.g., @code{"x86_64-linux"}.
567
568 @item user
569 The user account to use when connecting to the remote machine over SSH.
570 Note that the SSH key pair must @emph{not} be passphrase-protected, to
571 allow non-interactive logins.
572
573 @end table
574
575 A number of optional fields may be specified:
576
577 @table @code
578
579 @item port
580 Port number of the machine's SSH server (default: 22).
581
582 @item private-key
583 The SSH private key file to use when connecting to the machine.
584
585 @item parallel-builds
586 The number of builds that may run in parallel on the machine (1 by
587 default.)
588
589 @item speed
590 A ``relative speed factor''. The offload scheduler will tend to prefer
591 machines with a higher speed factor.
592
593 @item features
594 A list of strings denoting specific features supported by the machine.
595 An example is @code{"kvm"} for machines that have the KVM Linux modules
596 and corresponding hardware support. Derivations can request features by
597 name, and they will be scheduled on matching build machines.
598
599 @end table
600 @end deftp
601
602 The @code{guix} command must be in the search path on the build
603 machines, since offloading works by invoking the @code{guix archive} and
604 @code{guix build} commands.
605
606 There's one last thing to do once @file{machines.scm} is in place. As
607 explained above, when offloading, files are transferred back and forth
608 between the machine stores. For this to work, you need to generate a
609 key pair to allow the daemon to export signed archives of files from the
610 store (@pxref{Invoking guix archive}):
611
612 @example
613 # guix archive --generate-key
614 @end example
615
616 @noindent
617 Thus, when receiving files, a machine's build daemon can make sure they
618 are genuine, have not been tampered with, and that they are signed by an
619 authorized key.
620
621
622 @node Invoking guix-daemon
623 @section Invoking @command{guix-daemon}
624
625 The @command{guix-daemon} program implements all the functionality to
626 access the store. This includes launching build processes, running the
627 garbage collector, querying the availability of a build result, etc. It
628 is normally run as @code{root} like this:
629
630 @example
631 # guix-daemon --build-users-group=guix-builder
632 @end example
633
634 @noindent
635 For details on how to set it up, @pxref{Setting Up the Daemon}.
636
637 @cindex chroot
638 @cindex container, build environment
639 @cindex build environment
640 @cindex reproducible builds
641 By default, @command{guix-daemon} launches build processes under
642 different UIDs, taken from the build group specified with
643 @code{--build-users-group}. In addition, each build process is run in a
644 chroot environment that only contains the subset of the store that the
645 build process depends on, as specified by its derivation
646 (@pxref{Programming Interface, derivation}), plus a set of specific
647 system directories. By default, the latter contains @file{/dev} and
648 @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a
649 @dfn{container}: in addition to having its own file system tree, it has
650 a separate mount name space, its own PID name space, network name space,
651 etc. This helps achieve reproducible builds (@pxref{Features}).
652
653 When the daemon performs a build on behalf of the user, it creates a
654 build directory under @file{/tmp} or under the directory specified by
655 its @code{TMPDIR} environment variable; this directory is shared with
656 the container for the duration of the build. Be aware that using a
657 directory other than @file{/tmp} can affect build results---for example,
658 with a longer directory name, a build process that uses Unix-domain
659 sockets might hit the name length limitation for @code{sun_path}, which
660 it would otherwise not hit.
661
662 The build directory is automatically deleted upon completion, unless the
663 build failed and the client specified @option{--keep-failed}
664 (@pxref{Invoking guix build, @option{--keep-failed}}).
665
666 The following command-line options are supported:
667
668 @table @code
669 @item --build-users-group=@var{group}
670 Take users from @var{group} to run build processes (@pxref{Setting Up
671 the Daemon, build users}).
672
673 @item --no-substitutes
674 @cindex substitutes
675 Do not use substitutes for build products. That is, always build things
676 locally instead of allowing downloads of pre-built binaries
677 (@pxref{Substitutes}).
678
679 By default substitutes are used, unless the client---such as the
680 @command{guix package} command---is explicitly invoked with
681 @code{--no-substitutes}.
682
683 When the daemon runs with @code{--no-substitutes}, clients can still
684 explicitly enable substitution @i{via} the @code{set-build-options}
685 remote procedure call (@pxref{The Store}).
686
687 @item --substitute-urls=@var{urls}
688 Consider @var{urls} the default whitespace-separated list of substitute
689 source URLs. When this option is omitted, @code{http://hydra.gnu.org}
690 is used.
691
692 This means that substitutes may be downloaded from @var{urls}, as long
693 as they are signed by a trusted signature (@pxref{Substitutes}).
694
695 @cindex build hook
696 @item --no-build-hook
697 Do not use the @dfn{build hook}.
698
699 The build hook is a helper program that the daemon can start and to
700 which it submits build requests. This mechanism is used to offload
701 builds to other machines (@pxref{Daemon Offload Setup}).
702
703 @item --cache-failures
704 Cache build failures. By default, only successful builds are cached.
705
706 @item --cores=@var{n}
707 @itemx -c @var{n}
708 Use @var{n} CPU cores to build each derivation; @code{0} means as many
709 as available.
710
711 The default value is @code{0}, but it may be overridden by clients, such
712 as the @code{--cores} option of @command{guix build} (@pxref{Invoking
713 guix build}).
714
715 The effect is to define the @code{NIX_BUILD_CORES} environment variable
716 in the build process, which can then use it to exploit internal
717 parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}.
718
719 @item --max-jobs=@var{n}
720 @itemx -M @var{n}
721 Allow at most @var{n} build jobs in parallel. The default value is
722 @code{1}. Setting it to @code{0} means that no builds will be performed
723 locally; instead, the daemon will offload builds (@pxref{Daemon Offload
724 Setup}), or simply fail.
725
726 @item --debug
727 Produce debugging output.
728
729 This is useful to debug daemon start-up issues, but then it may be
730 overridden by clients, for example the @code{--verbosity} option of
731 @command{guix build} (@pxref{Invoking guix build}).
732
733 @item --chroot-directory=@var{dir}
734 Add @var{dir} to the build chroot.
735
736 Doing this may change the result of build processes---for instance if
737 they use optional dependencies found in @var{dir} when it is available,
738 and not otherwise. For that reason, it is not recommended to do so.
739 Instead, make sure that each derivation declares all the inputs that it
740 needs.
741
742 @item --disable-chroot
743 Disable chroot builds.
744
745 Using this option is not recommended since, again, it would allow build
746 processes to gain access to undeclared dependencies.
747
748 @item --disable-log-compression
749 Disable compression of the build logs.
750
751 Unless @code{--lose-logs} is used, all the build logs are kept in the
752 @var{localstatedir}. To save space, the daemon automatically compresses
753 them with bzip2 by default. This option disables that.
754
755 @item --disable-deduplication
756 @cindex deduplication
757 Disable automatic file ``deduplication'' in the store.
758
759 By default, files added to the store are automatically ``deduplicated'':
760 if a newly added file is identical to another one found in the store,
761 the daemon makes the new file a hard link to the other file. This can
762 noticeably reduce disk usage, at the expense of slightly increasde
763 input/output load at the end of a build process. This option disables
764 this optimization.
765
766 @item --gc-keep-outputs[=yes|no]
767 Tell whether the garbage collector (GC) must keep outputs of live
768 derivations.
769
770 When set to ``yes'', the GC will keep the outputs of any live derivation
771 available in the store---the @code{.drv} files. The default is ``no'',
772 meaning that derivation outputs are kept only if they are GC roots.
773
774 @item --gc-keep-derivations[=yes|no]
775 Tell whether the garbage collector (GC) must keep derivations
776 corresponding to live outputs.
777
778 When set to ``yes'', as is the case by default, the GC keeps
779 derivations---i.e., @code{.drv} files---as long as at least one of their
780 outputs is live. This allows users to keep track of the origins of
781 items in their store. Setting it to ``no'' saves a bit of disk space.
782
783 Note that when both @code{--gc-keep-derivations} and
784 @code{--gc-keep-outputs} are used, the effect is to keep all the build
785 prerequisites (the sources, compiler, libraries, and other build-time
786 tools) of live objects in the store, regardless of whether these
787 prerequisites are live. This is convenient for developers since it
788 saves rebuilds or downloads.
789
790 @item --impersonate-linux-2.6
791 On Linux-based systems, impersonate Linux 2.6. This means that the
792 kernel's @code{uname} system call will report 2.6 as the release number.
793
794 This might be helpful to build programs that (usually wrongfully) depend
795 on the kernel version number.
796
797 @item --lose-logs
798 Do not keep build logs. By default they are kept under
799 @code{@var{localstatedir}/guix/log}.
800
801 @item --system=@var{system}
802 Assume @var{system} as the current system type. By default it is the
803 architecture/kernel pair found at configure time, such as
804 @code{x86_64-linux}.
805
806 @item --listen=@var{socket}
807 Listen for connections on @var{socket}, the file name of a Unix-domain
808 socket. The default socket is
809 @file{@var{localstatedir}/daemon-socket/socket}. This option is only
810 useful in exceptional circumstances, such as if you need to run several
811 daemons on the same machine.
812 @end table
813
814
815 @c *********************************************************************
816 @node Package Management
817 @chapter Package Management
818
819 The purpose of GNU Guix is to allow users to easily install, upgrade, and
820 remove software packages, without having to know about their build
821 procedure or dependencies. Guix also goes beyond this obvious set of
822 features.
823
824 This chapter describes the main features of Guix, as well as the package
825 management tools it provides. Two user interfaces are provided for
826 routine package management tasks: a command-line interface
827 (@pxref{Invoking guix package, @code{guix package}}), and a visual user
828 interface in Emacs (@pxref{Emacs Interface}).
829
830 @menu
831 * Features:: How Guix will make your life brighter.
832 * Invoking guix package:: Package installation, removal, etc.
833 * Emacs Interface:: Package management from Emacs.
834 * Substitutes:: Downloading pre-built binaries.
835 * Packages with Multiple Outputs:: Single source package, multiple outputs.
836 * Invoking guix gc:: Running the garbage collector.
837 * Invoking guix pull:: Fetching the latest Guix and distribution.
838 * Invoking guix archive:: Exporting and importing store files.
839 @end menu
840
841 @node Features
842 @section Features
843
844 When using Guix, each package ends up in the @dfn{package store}, in its
845 own directory---something that resembles
846 @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string
847 (note that Guix comes with an Emacs extension to shorten those file
848 names, @pxref{Emacs Prettify}.)
849
850 Instead of referring to these directories, users have their own
851 @dfn{profile}, which points to the packages that they actually want to
852 use. These profiles are stored within each user's home directory, at
853 @code{$HOME/.guix-profile}.
854
855 For example, @code{alice} installs GCC 4.7.2. As a result,
856 @file{/home/alice/.guix-profile/bin/gcc} points to
857 @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine,
858 @code{bob} had already installed GCC 4.8.0. The profile of @code{bob}
859 simply continues to point to
860 @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC
861 coexist on the same system without any interference.
862
863 The @command{guix package} command is the central tool to manage
864 packages (@pxref{Invoking guix package}). It operates on those per-user
865 profiles, and can be used @emph{with normal user privileges}.
866
867 The command provides the obvious install, remove, and upgrade
868 operations. Each invocation is actually a @emph{transaction}: either
869 the specified operation succeeds, or nothing happens. Thus, if the
870 @command{guix package} process is terminated during the transaction,
871 or if a power outage occurs during the transaction, then the user's
872 profile remains in its previous state, and remains usable.
873
874 In addition, any package transaction may be @emph{rolled back}. So, if,
875 for example, an upgrade installs a new version of a package that turns
876 out to have a serious bug, users may roll back to the previous instance
877 of their profile, which was known to work well. Similarly, the global
878 system configuration is subject to transactional upgrades and roll-back
879 (@pxref{Using the Configuration System}).
880
881 All those packages in the package store may be @emph{garbage-collected}.
882 Guix can determine which packages are still referenced by the user
883 profiles, and remove those that are provably no longer referenced
884 (@pxref{Invoking guix gc}). Users may also explicitly remove old
885 generations of their profile so that the packages they refer to can be
886 collected.
887
888 @cindex reproducibility
889 @cindex reproducible builds
890 Finally, Guix takes a @dfn{purely functional} approach to package
891 management, as described in the introduction (@pxref{Introduction}).
892 Each @file{/gnu/store} package directory name contains a hash of all the
893 inputs that were used to build that package---compiler, libraries, build
894 scripts, etc. This direct correspondence allows users to make sure a
895 given package installation matches the current state of their
896 distribution. It also helps maximize @dfn{build reproducibility}:
897 thanks to the isolated build environments that are used, a given build
898 is likely to yield bit-identical files when performed on different
899 machines (@pxref{Invoking guix-daemon, container}).
900
901 @cindex substitutes
902 This foundation allows Guix to support @dfn{transparent binary/source
903 deployment}. When a pre-built binary for a @file{/gnu/store} item is
904 available from an external source---a @dfn{substitute}, Guix just
905 downloads it and unpacks it;
906 otherwise, it builds the package from source, locally
907 (@pxref{Substitutes}).
908
909 Control over the build environment is a feature that is also useful for
910 developers. The @command{guix environment} command allows developers of
911 a package to quickly set up the right development environment for their
912 package, without having to manually install the package's dependencies
913 in their profile (@pxref{Invoking guix environment}).
914
915 @node Invoking guix package
916 @section Invoking @command{guix package}
917
918 The @command{guix package} command is the tool that allows users to
919 install, upgrade, and remove packages, as well as rolling back to
920 previous configurations. It operates only on the user's own profile,
921 and works with normal user privileges (@pxref{Features}). Its syntax
922 is:
923
924 @example
925 guix package @var{options}
926 @end example
927
928 Primarily, @var{options} specifies the operations to be performed during
929 the transaction. Upon completion, a new profile is created, but
930 previous generations of the profile remain available, should the user
931 want to roll back.
932
933 For example, to remove @code{lua} and install @code{guile} and
934 @code{guile-cairo} in a single transaction:
935
936 @example
937 guix package -r lua -i guile guile-cairo
938 @end example
939
940 For each user, a symlink to the user's default profile is automatically
941 created in @file{$HOME/.guix-profile}. This symlink always points to the
942 current generation of the user's default profile. Thus, users can add
943 @file{$HOME/.guix-profile/bin} to their @code{PATH} environment
944 variable, and so on.
945
946 In a multi-user setup, user profiles are stored in a place registered as
947 a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points
948 to (@pxref{Invoking guix gc}). That directory is normally
949 @code{@var{localstatedir}/profiles/per-user/@var{user}}, where
950 @var{localstatedir} is the value passed to @code{configure} as
951 @code{--localstatedir}, and @var{user} is the user name. The
952 @file{per-user} directory is created when @command{guix-daemon} is
953 started, and the @var{user} sub-directory is created by @command{guix
954 package}.
955
956 The @var{options} can be among the following:
957
958 @table @code
959
960 @item --install=@var{package} @dots{}
961 @itemx -i @var{package} @dots{}
962 Install the specified @var{package}s.
963
964 Each @var{package} may specify either a simple package name, such as
965 @code{guile}, or a package name followed by a hyphen and version number,
966 such as @code{guile-1.8.8} or simply @code{guile-1.8} (in the latter
967 case, the newest version prefixed by @code{1.8} is selected.)
968
969 If no version number is specified, the
970 newest available version will be selected. In addition, @var{package}
971 may contain a colon, followed by the name of one of the outputs of the
972 package, as in @code{gcc:doc} or @code{binutils-2.22:lib}
973 (@pxref{Packages with Multiple Outputs}). Packages with a corresponding
974 name (and optionally version) are searched for among the GNU
975 distribution modules (@pxref{Package Modules}).
976
977 @cindex propagated inputs
978 Sometimes packages have @dfn{propagated inputs}: these are dependencies
979 that automatically get installed along with the required package.
980
981 An example is the GNU MPC library: its C header files refer to those of
982 the GNU MPFR library, which in turn refer to those of the GMP library.
983 Thus, when installing MPC, the MPFR and GMP libraries also get installed
984 in the profile; removing MPC also removes MPFR and GMP---unless they had
985 also been explicitly installed independently.
986
987 Besides, packages sometimes rely on the definition of environment
988 variables for their search paths (see explanation of
989 @code{--search-paths} below). Any missing or possibly incorrect
990 environment variable definitions are reported here.
991
992 @c XXX: keep me up-to-date
993 Finally, when installing a GNU package, the tool reports the
994 availability of a newer upstream version. In the future, it may provide
995 the option of installing directly from the upstream version, even if
996 that version is not yet in the distribution.
997
998 @item --install-from-expression=@var{exp}
999 @itemx -e @var{exp}
1000 Install the package @var{exp} evaluates to.
1001
1002 @var{exp} must be a Scheme expression that evaluates to a
1003 @code{<package>} object. This option is notably useful to disambiguate
1004 between same-named variants of a package, with expressions such as
1005 @code{(@@ (gnu packages base) guile-final)}.
1006
1007 Note that this option installs the first output of the specified
1008 package, which may be insufficient when needing a specific output of a
1009 multiple-output package.
1010
1011 @item --remove=@var{package} @dots{}
1012 @itemx -r @var{package} @dots{}
1013 Remove the specified @var{package}s.
1014
1015 As for @code{--install}, each @var{package} may specify a version number
1016 and/or output name in addition to the package name. For instance,
1017 @code{-r glibc:debug} would remove the @code{debug} output of
1018 @code{glibc}.
1019
1020 @item --upgrade[=@var{regexp} @dots{}]
1021 @itemx -u [@var{regexp} @dots{}]
1022 Upgrade all the installed packages. If one or more @var{regexp}s are
1023 specified, upgrade only installed packages whose name matches a
1024 @var{regexp}. Also see the @code{--do-not-upgrade} option below.
1025
1026 Note that this upgrades package to the latest version of packages found
1027 in the distribution currently installed. To update your distribution,
1028 you should regularly run @command{guix pull} (@pxref{Invoking guix
1029 pull}).
1030
1031 @item --do-not-upgrade[=@var{regexp} @dots{}]
1032 When used together with the @code{--upgrade} option, do @emph{not}
1033 upgrade any packages whose name matches a @var{regexp}. For example, to
1034 upgrade all packages in the current profile except those containing the
1035 substring ``emacs'':
1036
1037 @example
1038 $ guix package --upgrade . --do-not-upgrade emacs
1039 @end example
1040
1041 @item --roll-back
1042 Roll back to the previous @dfn{generation} of the profile---i.e., undo
1043 the last transaction.
1044
1045 When combined with options such as @code{--install}, roll back occurs
1046 before any other actions.
1047
1048 When rolling back from the first generation that actually contains
1049 installed packages, the profile is made to point to the @dfn{zeroth
1050 generation}, which contains no files apart from its own meta-data.
1051
1052 Installing, removing, or upgrading packages from a generation that has
1053 been rolled back to overwrites previous future generations. Thus, the
1054 history of a profile's generations is always linear.
1055
1056 @item --switch-generation=@var{pattern}
1057 @itemx -S @var{pattern}
1058 Switch to a particular generation defined by @var{pattern}.
1059
1060 @var{pattern} may be either a generation number or a number prefixed
1061 with ``+'' or ``-''. The latter means: move forward/backward by a
1062 specified number of generations. For example, if you want to return to
1063 the latest generation after @code{--roll-back}, use
1064 @code{--switch-generation=+1}.
1065
1066 The difference between @code{--roll-back} and
1067 @code{--switch-generation=-1} is that @code{--switch-generation} will
1068 not make a zeroth generation, so if a specified generation does not
1069 exist, the current generation will not be changed.
1070
1071 @item --search-paths
1072 @cindex search paths
1073 Report environment variable definitions, in Bash syntax, that may be
1074 needed in order to use the set of installed packages. These environment
1075 variables are used to specify @dfn{search paths} for files used by some
1076 of the installed packages.
1077
1078 For example, GCC needs the @code{CPATH} and @code{LIBRARY_PATH}
1079 environment variables to be defined so it can look for headers and
1080 libraries in the user's profile (@pxref{Environment Variables,,, gcc,
1081 Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C
1082 library are installed in the profile, then @code{--search-paths} will
1083 suggest setting these variables to @code{@var{profile}/include} and
1084 @code{@var{profile}/lib}, respectively.
1085
1086 @item --profile=@var{profile}
1087 @itemx -p @var{profile}
1088 Use @var{profile} instead of the user's default profile.
1089
1090 @item --verbose
1091 Produce verbose output. In particular, emit the environment's build log
1092 on the standard error port.
1093
1094 @item --bootstrap
1095 Use the bootstrap Guile to build the profile. This option is only
1096 useful to distribution developers.
1097
1098 @end table
1099
1100 In addition to these actions @command{guix package} supports the
1101 following options to query the current state of a profile, or the
1102 availability of packages:
1103
1104 @table @option
1105
1106 @item --search=@var{regexp}
1107 @itemx -s @var{regexp}
1108 List the available packages whose name, synopsis, or description matches
1109 @var{regexp}. Print all the meta-data of matching packages in
1110 @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils,
1111 GNU recutils manual}).
1112
1113 This allows specific fields to be extracted using the @command{recsel}
1114 command, for instance:
1115
1116 @example
1117 $ guix package -s malloc | recsel -p name,version
1118 name: glibc
1119 version: 2.17
1120
1121 name: libgc
1122 version: 7.2alpha6
1123 @end example
1124
1125 Similarly, to show the name of all the packages available under the
1126 terms of the GNU@tie{}LGPL version 3:
1127
1128 @example
1129 $ guix package -s "" | recsel -p name -e 'license ~ "LGPL 3"'
1130 name: elfutils
1131
1132 name: gmp
1133 @dots{}
1134 @end example
1135
1136 @item --show=@var{package}
1137 Show details about @var{package}, taken from the list of available packages, in
1138 @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU
1139 recutils manual}).
1140
1141 @example
1142 $ guix package --show=python | recsel -p name,version
1143 name: python
1144 version: 2.7.6
1145
1146 name: python
1147 version: 3.3.5
1148 @end example
1149
1150 You may also specify the full name of a package to only get details about a
1151 specific version of it:
1152 @example
1153 $ guix package --show=python-3.3.5 | recsel -p name,version
1154 name: python
1155 version: 3.3.5
1156 @end example
1157
1158
1159
1160 @item --list-installed[=@var{regexp}]
1161 @itemx -I [@var{regexp}]
1162 List the currently installed packages in the specified profile, with the
1163 most recently installed packages shown last. When @var{regexp} is
1164 specified, list only installed packages whose name matches @var{regexp}.
1165
1166 For each installed package, print the following items, separated by
1167 tabs: the package name, its version string, the part of the package that
1168 is installed (for instance, @code{out} for the default output,
1169 @code{include} for its headers, etc.), and the path of this package in
1170 the store.
1171
1172 @item --list-available[=@var{regexp}]
1173 @itemx -A [@var{regexp}]
1174 List packages currently available in the distribution for this system
1175 (@pxref{GNU Distribution}). When @var{regexp} is specified, list only
1176 installed packages whose name matches @var{regexp}.
1177
1178 For each package, print the following items separated by tabs: its name,
1179 its version string, the parts of the package (@pxref{Packages with
1180 Multiple Outputs}), and the source location of its definition.
1181
1182 @item --list-generations[=@var{pattern}]
1183 @itemx -l [@var{pattern}]
1184 Return a list of generations along with their creation dates; for each
1185 generation, show the installed packages, with the most recently
1186 installed packages shown last. Note that the zeroth generation is never
1187 shown.
1188
1189 For each installed package, print the following items, separated by
1190 tabs: the name of a package, its version string, the part of the package
1191 that is installed (@pxref{Packages with Multiple Outputs}), and the
1192 location of this package in the store.
1193
1194 When @var{pattern} is used, the command returns only matching
1195 generations. Valid patterns include:
1196
1197 @itemize
1198 @item @emph{Integers and comma-separated integers}. Both patterns denote
1199 generation numbers. For instance, @code{--list-generations=1} returns
1200 the first one.
1201
1202 And @code{--list-generations=1,8,2} outputs three generations in the
1203 specified order. Neither spaces nor trailing commas are allowed.
1204
1205 @item @emph{Ranges}. @code{--list-generations=2..9} prints the
1206 specified generations and everything in between. Note that the start of
1207 a range must be lesser than its end.
1208
1209 It is also possible to omit the endpoint. For example,
1210 @code{--list-generations=2..}, returns all generations starting from the
1211 second one.
1212
1213 @item @emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks,
1214 or months by passing an integer along with the first letter of the
1215 duration. For example, @code{--list-generations=20d} lists generations
1216 that are up to 20 days old.
1217 @end itemize
1218
1219 @item --delete-generations[=@var{pattern}]
1220 @itemx -d [@var{pattern}]
1221 When @var{pattern} is omitted, delete all generations except the current
1222 one.
1223
1224 This command accepts the same patterns as @option{--list-generations}.
1225 When @var{pattern} is specified, delete the matching generations. When
1226 @var{pattern} specifies a duration, generations @emph{older} than the
1227 specified duration match. For instance, @code{--delete-generations=1m}
1228 deletes generations that are more than one month old.
1229
1230 If the current generation matches, it is @emph{not} deleted. Also, the
1231 zeroth generation is never deleted.
1232
1233 Note that deleting generations prevents roll-back to them.
1234 Consequently, this command must be used with care.
1235
1236 @end table
1237
1238 Finally, since @command{guix package} may actually start build
1239 processes, it supports all the common build options that @command{guix
1240 build} supports (@pxref{Invoking guix build, common build options}).
1241
1242 @include emacs.texi
1243
1244 @node Substitutes
1245 @section Substitutes
1246
1247 @cindex substitutes
1248 @cindex pre-built binaries
1249 Guix supports transparent source/binary deployment, which means that it
1250 can either build things locally, or download pre-built items from a
1251 server. We call these pre-built items @dfn{substitutes}---they are
1252 substitutes for local build results. In many cases, downloading a
1253 substitute is much faster than building things locally.
1254
1255 Substitutes can be anything resulting from a derivation build
1256 (@pxref{Derivations}). Of course, in the common case, they are
1257 pre-built package binaries, but source tarballs, for instance, which
1258 also result from derivation builds, can be available as substitutes.
1259
1260 The @code{hydra.gnu.org} server is a front-end to a build farm that
1261 builds packages from the GNU distribution continuously for some
1262 architectures, and makes them available as substitutes. This is the
1263 default source of substitutes; it can be overridden by passing
1264 @command{guix-daemon} the @code{--substitute-urls} option
1265 (@pxref{Invoking guix-daemon}).
1266
1267 @cindex security
1268 @cindex digital signatures
1269 To allow Guix to download substitutes from @code{hydra.gnu.org}, you
1270 must add its public key to the access control list (ACL) of archive
1271 imports, using the @command{guix archive} command (@pxref{Invoking guix
1272 archive}). Doing so implies that you trust @code{hydra.gnu.org} to not
1273 be compromised and to serve genuine substitutes.
1274
1275 This public key is installed along with Guix, in
1276 @code{@var{prefix}/share/guix/hydra.gnu.org.pub}, where @var{prefix} is
1277 the installation prefix of Guix. If you installed Guix from source,
1278 make sure you checked the GPG signature of
1279 @file{guix-@value{VERSION}.tar.gz}, which contains this public key file.
1280 Then, you can run something like this:
1281
1282 @example
1283 # guix archive --authorize < hydra.gnu.org.pub
1284 @end example
1285
1286 Once this is in place, the output of a command like @code{guix build}
1287 should change from something like:
1288
1289 @example
1290 $ guix build emacs --dry-run
1291 The following derivations would be built:
1292 /gnu/store/yr7bnx8xwcayd6j95r2clmkdl1qh688w-emacs-24.3.drv
1293 /gnu/store/x8qsh1hlhgjx6cwsjyvybnfv2i37z23w-dbus-1.6.4.tar.gz.drv
1294 /gnu/store/1ixwp12fl950d15h2cj11c73733jay0z-alsa-lib-1.0.27.1.tar.bz2.drv
1295 /gnu/store/nlma1pw0p603fpfiqy7kn4zm105r5dmw-util-linux-2.21.drv
1296 @dots{}
1297 @end example
1298
1299 @noindent
1300 to something like:
1301
1302 @example
1303 $ guix build emacs --dry-run
1304 The following files would be downloaded:
1305 /gnu/store/pk3n22lbq6ydamyymqkkz7i69wiwjiwi-emacs-24.3
1306 /gnu/store/2ygn4ncnhrpr61rssa6z0d9x22si0va3-libjpeg-8d
1307 /gnu/store/71yz6lgx4dazma9dwn2mcjxaah9w77jq-cairo-1.12.16
1308 /gnu/store/7zdhgp0n1518lvfn8mb96sxqfmvqrl7v-libxrender-0.9.7
1309 @dots{}
1310 @end example
1311
1312 @noindent
1313 This indicates that substitutes from @code{hydra.gnu.org} are usable and
1314 will be downloaded, when possible, for future builds.
1315
1316 Guix ignores substitutes that are not signed, or that are not signed by
1317 one of the keys listed in the ACL. It also detects and raises an error
1318 when attempting to use a substitute that has been tampered with.
1319
1320 The substitute mechanism can be disabled globally by running
1321 @code{guix-daemon} with @code{--no-substitutes} (@pxref{Invoking
1322 guix-daemon}). It can also be disabled temporarily by passing the
1323 @code{--no-substitutes} option to @command{guix package}, @command{guix
1324 build}, and other command-line tools.
1325
1326
1327 Today, each individual's control over their own computing is at the
1328 mercy of institutions, corporations, and groups with enough power and
1329 determination to subvert the computing infrastructure and exploit its
1330 weaknesses. While using @code{hydra.gnu.org} substitutes can be
1331 convenient, we encourage users to also build on their own, or even run
1332 their own build farm, such that @code{hydra.gnu.org} is less of an
1333 interesting target.
1334
1335 Guix has the foundations to maximize build reproducibility
1336 (@pxref{Features}). In most cases, independent builds of a given
1337 package or derivation should yield bit-identical results. Thus, through
1338 a diverse set of independent package builds, we can strengthen the
1339 integrity of our systems.
1340
1341 In the future, we want Guix to have support to publish and retrieve
1342 binaries to/from other users, in a peer-to-peer fashion. If you would
1343 like to discuss this project, join us on @email{guix-devel@@gnu.org}.
1344
1345
1346 @node Packages with Multiple Outputs
1347 @section Packages with Multiple Outputs
1348
1349 @cindex multiple-output packages
1350 @cindex package outputs
1351
1352 Often, packages defined in Guix have a single @dfn{output}---i.e., the
1353 source package leads exactly one directory in the store. When running
1354 @command{guix package -i glibc}, one installs the default output of the
1355 GNU libc package; the default output is called @code{out}, but its name
1356 can be omitted as shown in this command. In this particular case, the
1357 default output of @code{glibc} contains all the C header files, shared
1358 libraries, static libraries, Info documentation, and other supporting
1359 files.
1360
1361 Sometimes it is more appropriate to separate the various types of files
1362 produced from a single source package into separate outputs. For
1363 instance, the GLib C library (used by GTK+ and related packages)
1364 installs more than 20 MiB of reference documentation as HTML pages.
1365 To save space for users who do not need it, the documentation goes to a
1366 separate output, called @code{doc}. To install the main GLib output,
1367 which contains everything but the documentation, one would run:
1368
1369 @example
1370 guix package -i glib
1371 @end example
1372
1373 The command to install its documentation is:
1374
1375 @example
1376 guix package -i glib:doc
1377 @end example
1378
1379 Some packages install programs with different ``dependency footprints''.
1380 For instance, the WordNet package install both command-line tools and
1381 graphical user interfaces (GUIs). The former depend solely on the C
1382 library, whereas the latter depend on Tcl/Tk and the underlying X
1383 libraries. In this case, we leave the command-line tools in the default
1384 output, whereas the GUIs are in a separate output. This allows users
1385 who do not need the GUIs to save space.
1386
1387 There are several such multiple-output packages in the GNU distribution.
1388 Other conventional output names include @code{lib} for libraries and
1389 possibly header files, @code{bin} for stand-alone programs, and
1390 @code{debug} for debugging information (@pxref{Installing Debugging
1391 Files}). The outputs of a packages are listed in the third column of
1392 the output of @command{guix package --list-available} (@pxref{Invoking
1393 guix package}).
1394
1395
1396 @node Invoking guix gc
1397 @section Invoking @command{guix gc}
1398
1399 @cindex garbage collector
1400 Packages that are installed but not used may be @dfn{garbage-collected}.
1401 The @command{guix gc} command allows users to explicitly run the garbage
1402 collector to reclaim space from the @file{/gnu/store} directory. It is
1403 the @emph{only} way to remove files from @file{/gnu/store}---removing
1404 files or directories manually may break it beyond repair!
1405
1406 The garbage collector has a set of known @dfn{roots}: any file under
1407 @file{/gnu/store} reachable from a root is considered @dfn{live} and
1408 cannot be deleted; any other file is considered @dfn{dead} and may be
1409 deleted. The set of garbage collector roots includes default user
1410 profiles, and may be augmented with @command{guix build --root}, for
1411 example (@pxref{Invoking guix build}).
1412
1413 Prior to running @code{guix gc --collect-garbage} to make space, it is
1414 often useful to remove old generations from user profiles; that way, old
1415 package builds referenced by those generations can be reclaimed. This
1416 is achieved by running @code{guix package --delete-generations}
1417 (@pxref{Invoking guix package}).
1418
1419 The @command{guix gc} command has three modes of operation: it can be
1420 used to garbage-collect any dead files (the default), to delete specific
1421 files (the @code{--delete} option), or to print garbage-collector
1422 information. The available options are listed below:
1423
1424 @table @code
1425 @item --collect-garbage[=@var{min}]
1426 @itemx -C [@var{min}]
1427 Collect garbage---i.e., unreachable @file{/gnu/store} files and
1428 sub-directories. This is the default operation when no option is
1429 specified.
1430
1431 When @var{min} is given, stop once @var{min} bytes have been collected.
1432 @var{min} may be a number of bytes, or it may include a unit as a
1433 suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes
1434 (@pxref{Block size, size specifications,, coreutils, GNU Coreutils}).
1435
1436 When @var{min} is omitted, collect all the garbage.
1437
1438 @item --delete
1439 @itemx -d
1440 Attempt to delete all the store files and directories specified as
1441 arguments. This fails if some of the files are not in the store, or if
1442 they are still live.
1443
1444 @item --list-dead
1445 Show the list of dead files and directories still present in the
1446 store---i.e., files and directories no longer reachable from any root.
1447
1448 @item --list-live
1449 Show the list of live store files and directories.
1450
1451 @end table
1452
1453 In addition, the references among existing store files can be queried:
1454
1455 @table @code
1456
1457 @item --references
1458 @itemx --referrers
1459 List the references (respectively, the referrers) of store files given
1460 as arguments.
1461
1462 @item --requisites
1463 @itemx -R
1464 List the requisites of the store files passed as arguments. Requisites
1465 include the store files themselves, their references, and the references
1466 of these, recursively. In other words, the returned list is the
1467 @dfn{transitive closure} of the store files.
1468
1469 @end table
1470
1471
1472 @node Invoking guix pull
1473 @section Invoking @command{guix pull}
1474
1475 Packages are installed or upgraded to the latest version available in
1476 the distribution currently available on your local machine. To update
1477 that distribution, along with the Guix tools, you must run @command{guix
1478 pull}: the command downloads the latest Guix source code and package
1479 descriptions, and deploys it.
1480
1481 On completion, @command{guix package} will use packages and package
1482 versions from this just-retrieved copy of Guix. Not only that, but all
1483 the Guix commands and Scheme modules will also be taken from that latest
1484 version. New @command{guix} sub-commands added by the update also
1485 become available.
1486
1487 The @command{guix pull} command is usually invoked with no arguments,
1488 but it supports the following options:
1489
1490 @table @code
1491 @item --verbose
1492 Produce verbose output, writing build logs to the standard error output.
1493
1494 @item --url=@var{url}
1495 Download the source tarball of Guix from @var{url}.
1496
1497 By default, the tarball is taken from its canonical address at
1498 @code{gnu.org}, for the stable branch of Guix.
1499
1500 @item --bootstrap
1501 Use the bootstrap Guile to build the latest Guix. This option is only
1502 useful to Guix developers.
1503 @end table
1504
1505
1506 @node Invoking guix archive
1507 @section Invoking @command{guix archive}
1508
1509 The @command{guix archive} command allows users to @dfn{export} files
1510 from the store into a single archive, and to later @dfn{import} them.
1511 In particular, it allows store files to be transferred from one machine
1512 to another machine's store. For example, to transfer the @code{emacs}
1513 package to a machine connected over SSH, one would run:
1514
1515 @example
1516 guix archive --export -r emacs | ssh the-machine guix archive --import
1517 @end example
1518
1519 @noindent
1520 Similarly, a complete user profile may be transferred from one machine
1521 to another like this:
1522
1523 @example
1524 guix archive --export -r $(readlink -f ~/.guix-profile) | \
1525 ssh the-machine guix-archive --import
1526 @end example
1527
1528 @noindent
1529 However, note that, in both examples, all of @code{emacs} and the
1530 profile as well as all of their dependencies are transferred (due to
1531 @code{-r}), regardless of what is already available in the target
1532 machine's store. The @code{--missing} option can help figure out which
1533 items are missing from the target's store.
1534
1535 Archives are stored in the ``Nix archive'' or ``Nar'' format, which is
1536 comparable in spirit to `tar', but with a few noteworthy differences
1537 that make it more appropriate for our purposes. First, rather than
1538 recording all Unix meta-data for each file, the Nar format only mentions
1539 the file type (regular, directory, or symbolic link); Unix permissions
1540 and owner/group are dismissed. Second, the order in which directory
1541 entries are stored always follows the order of file names according to
1542 the C locale collation order. This makes archive production fully
1543 deterministic.
1544
1545 When exporting, the daemon digitally signs the contents of the archive,
1546 and that digital signature is appended. When importing, the daemon
1547 verifies the signature and rejects the import in case of an invalid
1548 signature or if the signing key is not authorized.
1549 @c FIXME: Add xref to daemon doc about signatures.
1550
1551 The main options are:
1552
1553 @table @code
1554 @item --export
1555 Export the specified store files or packages (see below.) Write the
1556 resulting archive to the standard output.
1557
1558 Dependencies are @emph{not} included in the output, unless
1559 @code{--recursive} is passed.
1560
1561 @item -r
1562 @itemx --recursive
1563 When combined with @code{--export}, this instructs @command{guix
1564 archive} to include dependencies of the given items in the archive.
1565 Thus, the resulting archive is self-contained: it contains the closure
1566 of the exported store items.
1567
1568 @item --import
1569 Read an archive from the standard input, and import the files listed
1570 therein into the store. Abort if the archive has an invalid digital
1571 signature, or if it is signed by a public key not among the authorized
1572 keys (see @code{--authorize} below.)
1573
1574 @item --missing
1575 Read a list of store file names from the standard input, one per line,
1576 and write on the standard output the subset of these files missing from
1577 the store.
1578
1579 @item --generate-key[=@var{parameters}]
1580 @cindex signing, archives
1581 Generate a new key pair for the daemons. This is a prerequisite before
1582 archives can be exported with @code{--export}. Note that this operation
1583 usually takes time, because it needs to gather enough entropy to
1584 generate the key pair.
1585
1586 The generated key pair is typically stored under @file{/etc/guix}, in
1587 @file{signing-key.pub} (public key) and @file{signing-key.sec} (private
1588 key, which must be kept secret.) When @var{parameters} is omitted,
1589 an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt
1590 versions before 1.6.0, it is a 4096-bit RSA key.
1591 Alternately, @var{parameters} can specify
1592 @code{genkey} parameters suitable for Libgcrypt (@pxref{General
1593 public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The
1594 Libgcrypt Reference Manual}).
1595
1596 @item --authorize
1597 @cindex authorizing, archives
1598 Authorize imports signed by the public key passed on standard input.
1599 The public key must be in ``s-expression advanced format''---i.e., the
1600 same format as the @file{signing-key.pub} file.
1601
1602 The list of authorized keys is kept in the human-editable file
1603 @file{/etc/guix/acl}. The file contains
1604 @url{http://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format
1605 s-expressions''} and is structured as an access-control list in the
1606 @url{http://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure
1607 (SPKI)}.
1608 @end table
1609
1610 To export store files as an archive to the standard output, run:
1611
1612 @example
1613 guix archive --export @var{options} @var{specifications}...
1614 @end example
1615
1616 @var{specifications} may be either store file names or package
1617 specifications, as for @command{guix package} (@pxref{Invoking guix
1618 package}). For instance, the following command creates an archive
1619 containing the @code{gui} output of the @code{git} package and the main
1620 output of @code{emacs}:
1621
1622 @example
1623 guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar
1624 @end example
1625
1626 If the specified packages are not built yet, @command{guix archive}
1627 automatically builds them. The build process may be controlled with the
1628 same options that can be passed to the @command{guix build} command
1629 (@pxref{Invoking guix build, common build options}).
1630
1631
1632 @c *********************************************************************
1633 @node Programming Interface
1634 @chapter Programming Interface
1635
1636 GNU Guix provides several Scheme programming interfaces (APIs) to
1637 define, build, and query packages. The first interface allows users to
1638 write high-level package definitions. These definitions refer to
1639 familiar packaging concepts, such as the name and version of a package,
1640 its build system, and its dependencies. These definitions can then be
1641 turned into concrete build actions.
1642
1643 Build actions are performed by the Guix daemon, on behalf of users. In a
1644 standard setup, the daemon has write access to the store---the
1645 @file{/gnu/store} directory---whereas users do not. The recommended
1646 setup also has the daemon perform builds in chroots, under a specific
1647 build users, to minimize interference with the rest of the system.
1648
1649 @cindex derivation
1650 Lower-level APIs are available to interact with the daemon and the
1651 store. To instruct the daemon to perform a build action, users actually
1652 provide it with a @dfn{derivation}. A derivation is a low-level
1653 representation of the build actions to be taken, and the environment in
1654 which they should occur---derivations are to package definitions what
1655 assembly is to C programs. The term ``derivation'' comes from the fact
1656 that build results @emph{derive} from them.
1657
1658 This chapter describes all these APIs in turn, starting from high-level
1659 package definitions.
1660
1661 @menu
1662 * Defining Packages:: Defining new packages.
1663 * Build Systems:: Specifying how packages are built.
1664 * The Store:: Manipulating the package store.
1665 * Derivations:: Low-level interface to package derivations.
1666 * The Store Monad:: Purely functional interface to the store.
1667 * G-Expressions:: Manipulating build expressions.
1668 @end menu
1669
1670 @node Defining Packages
1671 @section Defining Packages
1672
1673 The high-level interface to package definitions is implemented in the
1674 @code{(guix packages)} and @code{(guix build-system)} modules. As an
1675 example, the package definition, or @dfn{recipe}, for the GNU Hello
1676 package looks like this:
1677
1678 @example
1679 (define-module (gnu packages hello)
1680 #:use-module (guix packages)
1681 #:use-module (guix download)
1682 #:use-module (guix build-system gnu)
1683 #:use-module (guix licenses))
1684
1685 (define-public hello
1686 (package
1687 (name "hello")
1688 (version "2.8")
1689 (source (origin
1690 (method url-fetch)
1691 (uri (string-append "mirror://gnu/hello/hello-" version
1692 ".tar.gz"))
1693 (sha256
1694 (base32 "0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6"))))
1695 (build-system gnu-build-system)
1696 (arguments `(#:configure-flags '("--enable-silent-rules")))
1697 (inputs `(("gawk" ,gawk)))
1698 (synopsis "Hello, GNU world: An example GNU package")
1699 (description "Guess what GNU Hello prints!")
1700 (home-page "http://www.gnu.org/software/hello/")
1701 (license gpl3+)))
1702 @end example
1703
1704 @noindent
1705 Without being a Scheme expert, the reader may have guessed the meaning
1706 of the various fields here. This expression binds variable @code{hello}
1707 to a @code{<package>} object, which is essentially a record
1708 (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}).
1709 This package object can be inspected using procedures found in the
1710 @code{(guix packages)} module; for instance, @code{(package-name hello)}
1711 returns---surprise!---@code{"hello"}.
1712
1713 With luck, you may be able to import part or all of the definition of
1714 the package you are interested in from another repository, using the
1715 @code{guix import} command (@pxref{Invoking guix import}).
1716
1717 In the example above, @var{hello} is defined into a module of its own,
1718 @code{(gnu packages hello)}. Technically, this is not strictly
1719 necessary, but it is convenient to do so: all the packages defined in
1720 modules under @code{(gnu packages @dots{})} are automatically known to
1721 the command-line tools (@pxref{Package Modules}).
1722
1723 There are a few points worth noting in the above package definition:
1724
1725 @itemize
1726 @item
1727 The @code{source} field of the package is an @code{<origin>} object.
1728 Here, the @code{url-fetch} method from @code{(guix download)} is used,
1729 meaning that the source is a file to be downloaded over FTP or HTTP.
1730
1731 The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of
1732 the GNU mirrors defined in @code{(guix download)}.
1733
1734 The @code{sha256} field specifies the expected SHA256 hash of the file
1735 being downloaded. It is mandatory, and allows Guix to check the
1736 integrity of the file. The @code{(base32 @dots{})} form introduces the
1737 base32 representation of the hash. You can obtain this information with
1738 @code{guix download} (@pxref{Invoking guix download}) and @code{guix
1739 hash} (@pxref{Invoking guix hash}).
1740
1741 @cindex patches
1742 When needed, the @code{origin} form can also have a @code{patches} field
1743 listing patches to be applied, and a @code{snippet} field giving a
1744 Scheme expression to modify the source code.
1745
1746 @item
1747 @cindex GNU Build System
1748 The @code{build-system} field specifies the procedure to build the
1749 package (@pxref{Build Systems}). Here, @var{gnu-build-system}
1750 represents the familiar GNU Build System, where packages may be
1751 configured, built, and installed with the usual @code{./configure &&
1752 make && make check && make install} command sequence.
1753
1754 @item
1755 The @code{arguments} field specifies options for the build system
1756 (@pxref{Build Systems}). Here it is interpreted by
1757 @var{gnu-build-system} as a request run @file{configure} with the
1758 @code{--enable-silent-rules} flag.
1759
1760 @item
1761 The @code{inputs} field specifies inputs to the build process---i.e.,
1762 build-time or run-time dependencies of the package. Here, we define an
1763 input called @code{"gawk"} whose value is that of the @var{gawk}
1764 variable; @var{gawk} is itself bound to a @code{<package>} object.
1765
1766 Note that GCC, Coreutils, Bash, and other essential tools do not need to
1767 be specified as inputs here. Instead, @var{gnu-build-system} takes care
1768 of ensuring that they are present (@pxref{Build Systems}).
1769
1770 However, any other dependencies need to be specified in the
1771 @code{inputs} field. Any dependency not specified here will simply be
1772 unavailable to the build process, possibly leading to a build failure.
1773 @end itemize
1774
1775 Once a package definition is in place, the
1776 package may actually be built using the @code{guix build} command-line
1777 tool (@pxref{Invoking guix build}). @xref{Packaging Guidelines}, for
1778 more information on how to test package definitions, and
1779 @ref{Invoking guix lint}, for information on how to check a definition
1780 for style conformance.
1781
1782 Eventually, updating the package definition to a new upstream version
1783 can be partly automated by the @command{guix refresh} command
1784 (@pxref{Invoking guix refresh}).
1785
1786 Behind the scenes, a derivation corresponding to the @code{<package>}
1787 object is first computed by the @code{package-derivation} procedure.
1788 That derivation is stored in a @code{.drv} file under @file{/gnu/store}.
1789 The build actions it prescribes may then be realized by using the
1790 @code{build-derivations} procedure (@pxref{The Store}).
1791
1792 @deffn {Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]
1793 Return the @code{<derivation>} object of @var{package} for @var{system}
1794 (@pxref{Derivations}).
1795
1796 @var{package} must be a valid @code{<package>} object, and @var{system}
1797 must be a string denoting the target system type---e.g.,
1798 @code{"x86_64-linux"} for an x86_64 Linux-based GNU system. @var{store}
1799 must be a connection to the daemon, which operates on the store
1800 (@pxref{The Store}).
1801 @end deffn
1802
1803 @noindent
1804 @cindex cross-compilation
1805 Similarly, it is possible to compute a derivation that cross-builds a
1806 package for some other system:
1807
1808 @deffn {Scheme Procedure} package-cross-derivation @var{store} @
1809 @var{package} @var{target} [@var{system}]
1810 Return the @code{<derivation>} object of @var{package} cross-built from
1811 @var{system} to @var{target}.
1812
1813 @var{target} must be a valid GNU triplet denoting the target hardware
1814 and operating system, such as @code{"mips64el-linux-gnu"}
1815 (@pxref{Configuration Names, GNU configuration triplets,, configure, GNU
1816 Configure and Build System}).
1817 @end deffn
1818
1819
1820 @node Build Systems
1821 @section Build Systems
1822
1823 @cindex build system
1824 Each package definition specifies a @dfn{build system} and arguments for
1825 that build system (@pxref{Defining Packages}). This @code{build-system}
1826 field represents the build procedure of the package, as well implicit
1827 dependencies of that build procedure.
1828
1829 Build systems are @code{<build-system>} objects. The interface to
1830 create and manipulate them is provided by the @code{(guix build-system)}
1831 module, and actual build systems are exported by specific modules.
1832
1833 @cindex bag (low-level package representation)
1834 Under the hood, build systems first compile package objects to
1835 @dfn{bags}. A @dfn{bag} is like a package, but with less
1836 ornamentation---in other words, a bag is a lower-level representation of
1837 a package, which includes all the inputs of that package, including some
1838 that were implicitly added by the build system. This intermediate
1839 representation is then compiled to a derivation (@pxref{Derivations}).
1840
1841 Build systems accept an optional list of @dfn{arguments}. In package
1842 definitions, these are passed @i{via} the @code{arguments} field
1843 (@pxref{Defining Packages}). They are typically keyword arguments
1844 (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU
1845 Guile Reference Manual}). The value of these arguments is usually
1846 evaluated in the @dfn{build stratum}---i.e., by a Guile process launched
1847 by the daemon (@pxref{Derivations}).
1848
1849 The main build system is @var{gnu-build-system}, which implements the
1850 standard build procedure for GNU packages and many other packages. It
1851 is provided by the @code{(guix build-system gnu)} module.
1852
1853 @defvr {Scheme Variable} gnu-build-system
1854 @var{gnu-build-system} represents the GNU Build System, and variants
1855 thereof (@pxref{Configuration, configuration and makefile conventions,,
1856 standards, GNU Coding Standards}).
1857
1858 @cindex build phases
1859 In a nutshell, packages using it configured, built, and installed with
1860 the usual @code{./configure && make && make check && make install}
1861 command sequence. In practice, a few additional steps are often needed.
1862 All these steps are split up in separate @dfn{phases},
1863 notably@footnote{Please see the @code{(guix build gnu-build-system)}
1864 modules for more details about the build phases.}:
1865
1866 @table @code
1867 @item unpack
1868 Unpack the source tarball, and change the current directory to the
1869 extracted source tree. If the source is actually a directory, copy it
1870 to the build tree, and enter that directory.
1871
1872 @item patch-source-shebangs
1873 Patch shebangs encountered in source files so they refer to the right
1874 store file names. For instance, this changes @code{#!/bin/sh} to
1875 @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}.
1876
1877 @item configure
1878 Run the @file{configure} script with a number of default options, such
1879 as @code{--prefix=/gnu/store/@dots{}}, as well as the options specified
1880 by the @code{#:configure-flags} argument.
1881
1882 @item build
1883 Run @code{make} with the list of flags specified with
1884 @code{#:make-flags}. If the @code{#:parallel-builds?} argument is true
1885 (the default), build with @code{make -j}.
1886
1887 @item check
1888 Run @code{make check}, or some other target specified with
1889 @code{#:test-target}, unless @code{#:tests? #f} is passed. If the
1890 @code{#:parallel-tests?} argument is true (the default), run @code{make
1891 check -j}.
1892
1893 @item install
1894 Run @code{make install} with the flags listed in @code{#:make-flags}.
1895
1896 @item patch-shebangs
1897 Patch shebangs on the installed executable files.
1898
1899 @item strip
1900 Strip debugging symbols from ELF files (unless @code{#:strip-binaries?}
1901 is false), copying them to the @code{debug} output when available
1902 (@pxref{Installing Debugging Files}).
1903 @end table
1904
1905 @vindex %standard-phases
1906 The build-side module @code{(guix build gnu-build-system)} defines
1907 @var{%standard-phases} as the default list of build phases.
1908 @var{%standard-phases} is a list of symbol/procedure pairs, where the
1909 procedure implements the actual phase.
1910
1911 The list of phases used for a particular package can be changed with the
1912 @code{#:phases} parameter. For instance, passing:
1913
1914 @example
1915 #:phases (alist-delete 'configure %standard-phases)
1916 @end example
1917
1918 means that all the phases described above will be used, except the
1919 @code{configure} phase.
1920
1921 In addition, this build system ensures that the ``standard'' environment
1922 for GNU packages is available. This includes tools such as GCC, libc,
1923 Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix
1924 build-system gnu)} module for a complete list.) We call these the
1925 @dfn{implicit inputs} of a package, because package definitions don't
1926 have to mention them.
1927 @end defvr
1928
1929 Other @code{<build-system>} objects are defined to support other
1930 conventions and tools used by free software packages. They inherit most
1931 of @var{gnu-build-system}, and differ mainly in the set of inputs
1932 implicitly added to the build process, and in the list of phases
1933 executed. Some of these build systems are listed below.
1934
1935 @defvr {Scheme Variable} cmake-build-system
1936 This variable is exported by @code{(guix build-system cmake)}. It
1937 implements the build procedure for packages using the
1938 @url{http://www.cmake.org, CMake build tool}.
1939
1940 It automatically adds the @code{cmake} package to the set of inputs.
1941 Which package is used can be specified with the @code{#:cmake}
1942 parameter.
1943
1944 The @code{#:configure-flags} parameter is taken as a list of flags
1945 passed to the @command{cmake} command. The @code{#:build-type}
1946 parameter specifies in abstract terms the flags passed to the compiler;
1947 it defaults to @code{"RelWithDebInfo"} (short for ``release mode with
1948 debugging information''), which roughly means that code is compiled with
1949 @code{-O2 -g}, as is the case for Autoconf-based packages by default.
1950 @end defvr
1951
1952 @defvr {Scheme Variable} glib-or-gtk-build-system
1953 This variable is exported by @code{(guix build-system glib-or-gtk)}. It
1954 is intended for use with packages making use of GLib or GTK+.
1955
1956 This build system adds the following two phases to the ones defined by
1957 @var{gnu-build-system}:
1958
1959 @table @code
1960 @item glib-or-gtk-wrap
1961 The phase @code{glib-or-gtk-wrap} ensures that programs found under
1962 @file{bin/} are able to find GLib's ``schemas'' and
1963 @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+
1964 modules}. This is achieved by wrapping the programs in launch scripts
1965 that appropriately set the @code{XDG_DATA_DIRS} and @code{GTK_PATH}
1966 environment variables.
1967
1968 It is possible to exclude specific package outputs from that wrapping
1969 process by listing their names in the
1970 @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful
1971 when an output is known not to contain any GLib or GTK+ binaries, and
1972 where wrapping would gratuitously add a dependency of that output on
1973 GLib and GTK+.
1974
1975 @item glib-or-gtk-compile-schemas
1976 The phase @code{glib-or-gtk-compile-schemas} makes sure that all GLib's
1977 @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html,
1978 GSettings schemas} are compiled. Compilation is performed by the
1979 @command{glib-compile-schemas} program. It is provided by the package
1980 @code{glib:bin} which is automatically imported by the build system.
1981 The @code{glib} package providing @command{glib-compile-schemas} can be
1982 specified with the @code{#:glib} parameter.
1983 @end table
1984
1985 Both phases are executed after the @code{install} phase.
1986 @end defvr
1987
1988 @defvr {Scheme Variable} python-build-system
1989 This variable is exported by @code{(guix build-system python)}. It
1990 implements the more or less standard build procedure used by Python
1991 packages, which consists in running @code{python setup.py build} and
1992 then @code{python setup.py install --prefix=/gnu/store/@dots{}}.
1993
1994 For packages that install stand-alone Python programs under @code{bin/},
1995 it takes care of wrapping these programs so their @code{PYTHONPATH}
1996 environment variable points to all the Python libraries they depend on.
1997
1998 Which Python package is used can be specified with the @code{#:python}
1999 parameter.
2000 @end defvr
2001
2002 @defvr {Scheme Variable} perl-build-system
2003 This variable is exported by @code{(guix build-system perl)}. It
2004 implements the standard build procedure for Perl packages, which either
2005 consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}},
2006 followed by @code{Build} and @code{Build install}; or in running
2007 @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by
2008 @code{make} and @code{make install}; depending on which of
2009 @code{Build.PL} or @code{Makefile.PL} is present in the package
2010 distribution. Preference is given to the former if both @code{Build.PL}
2011 and @code{Makefile.PL} exist in the package distribution. This
2012 preference can be reversed by specifying @code{#t} for the
2013 @code{#:make-maker?} parameter.
2014
2015 The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation
2016 passes flags specified by the @code{#:make-maker-flags} or
2017 @code{#:module-build-flags} parameter, respectively.
2018
2019 Which Perl package is used can be specified with @code{#:perl}.
2020 @end defvr
2021
2022 @defvr {Scheme Variable} ruby-build-system
2023 This variable is exported by @code{(guix build-system ruby)}. It
2024 implements the RubyGems build procedure used by Ruby packages, which
2025 involves running @code{gem build} followed by @code{gem install}.
2026
2027 Which Ruby package is used can be specified with the @code{#:ruby}
2028 parameter.
2029 @end defvr
2030
2031 @defvr {Scheme Variable} waf-build-system
2032 This variable is exported by @code{(guix build-system waf)}. It
2033 implements a build procedure around the @code{waf} script. The common
2034 phases---@code{configure}, @code{build}, and @code{install}---are
2035 implemented by passing their names as arguments to the @code{waf}
2036 script.
2037
2038 The @code{waf} script is executed by the Python interpreter. Which
2039 Python package is used to run the script can be specified with the
2040 @code{#:python} parameter.
2041 @end defvr
2042
2043 @defvr {Scheme Variable} haskell-build-system
2044 This variable is exported by @code{(guix build-system haskell)}. It
2045 implements the Cabal build procedure used by Haskell packages, which
2046 involves running @code{runhaskell Setup.hs configure
2047 --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}.
2048 Instead of installing the package by running @code{runhaskell Setup.hs
2049 install}, to avoid trying to register libraries in the read-only
2050 compiler store directory, the build system uses @code{runhaskell
2051 Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In
2052 addition, the build system generates the package documentation by
2053 running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f}
2054 is passed. Optional Haddock parameters can be passed with the help of
2055 the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is
2056 not found, the build system looks for @code{Setup.lhs} instead.
2057
2058 Which Haskell compiler is used can be specified with the @code{#:haskell}
2059 parameter which defaults to @code{ghc}.
2060 @end defvr
2061
2062 Lastly, for packages that do not need anything as sophisticated, a
2063 ``trivial'' build system is provided. It is trivial in the sense that
2064 it provides basically no support: it does not pull any implicit inputs,
2065 and does not have a notion of build phases.
2066
2067 @defvr {Scheme Variable} trivial-build-system
2068 This variable is exported by @code{(guix build-system trivial)}.
2069
2070 This build system requires a @code{#:builder} argument. This argument
2071 must be a Scheme expression that builds the package's output(s)---as
2072 with @code{build-expression->derivation} (@pxref{Derivations,
2073 @code{build-expression->derivation}}).
2074 @end defvr
2075
2076 @node The Store
2077 @section The Store
2078
2079 @cindex store
2080 @cindex store paths
2081
2082 Conceptually, the @dfn{store} is where derivations that have been
2083 successfully built are stored---by default, under @file{/gnu/store}.
2084 Sub-directories in the store are referred to as @dfn{store paths}. The
2085 store has an associated database that contains information such has the
2086 store paths referred to by each store path, and the list of @emph{valid}
2087 store paths---paths that result from a successful build.
2088
2089 The store is always accessed by the daemon on behalf of its clients
2090 (@pxref{Invoking guix-daemon}). To manipulate the store, clients
2091 connect to the daemon over a Unix-domain socket, send it requests, and
2092 read the result---these are remote procedure calls, or RPCs.
2093
2094 The @code{(guix store)} module provides procedures to connect to the
2095 daemon, and to perform RPCs. These are described below.
2096
2097 @deffn {Scheme Procedure} open-connection [@var{file}] [#:reserve-space? #t]
2098 Connect to the daemon over the Unix-domain socket at @var{file}. When
2099 @var{reserve-space?} is true, instruct it to reserve a little bit of
2100 extra space on the file system so that the garbage collector can still
2101 operate, should the disk become full. Return a server object.
2102
2103 @var{file} defaults to @var{%default-socket-path}, which is the normal
2104 location given the options that were passed to @command{configure}.
2105 @end deffn
2106
2107 @deffn {Scheme Procedure} close-connection @var{server}
2108 Close the connection to @var{server}.
2109 @end deffn
2110
2111 @defvr {Scheme Variable} current-build-output-port
2112 This variable is bound to a SRFI-39 parameter, which refers to the port
2113 where build and error logs sent by the daemon should be written.
2114 @end defvr
2115
2116 Procedures that make RPCs all take a server object as their first
2117 argument.
2118
2119 @deffn {Scheme Procedure} valid-path? @var{server} @var{path}
2120 Return @code{#t} when @var{path} is a valid store path.
2121 @end deffn
2122
2123 @deffn {Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]
2124 Add @var{text} under file @var{name} in the store, and return its store
2125 path. @var{references} is the list of store paths referred to by the
2126 resulting store path.
2127 @end deffn
2128
2129 @deffn {Scheme Procedure} build-derivations @var{server} @var{derivations}
2130 Build @var{derivations} (a list of @code{<derivation>} objects or
2131 derivation paths), and return when the worker is done building them.
2132 Return @code{#t} on success.
2133 @end deffn
2134
2135 Note that the @code{(guix monads)} module provides a monad as well as
2136 monadic versions of the above procedures, with the goal of making it
2137 more convenient to work with code that accesses the store (@pxref{The
2138 Store Monad}).
2139
2140 @c FIXME
2141 @i{This section is currently incomplete.}
2142
2143 @node Derivations
2144 @section Derivations
2145
2146 @cindex derivations
2147 Low-level build actions and the environment in which they are performed
2148 are represented by @dfn{derivations}. A derivation contain the
2149 following pieces of information:
2150
2151 @itemize
2152 @item
2153 The outputs of the derivation---derivations produce at least one file or
2154 directory in the store, but may produce more.
2155
2156 @item
2157 The inputs of the derivations, which may be other derivations or plain
2158 files in the store (patches, build scripts, etc.)
2159
2160 @item
2161 The system type targeted by the derivation---e.g., @code{x86_64-linux}.
2162
2163 @item
2164 The file name of a build script in the store, along with the arguments
2165 to be passed.
2166
2167 @item
2168 A list of environment variables to be defined.
2169
2170 @end itemize
2171
2172 @cindex derivation path
2173 Derivations allow clients of the daemon to communicate build actions to
2174 the store. They exist in two forms: as an in-memory representation,
2175 both on the client- and daemon-side, and as files in the store whose
2176 name end in @code{.drv}---these files are referred to as @dfn{derivation
2177 paths}. Derivations paths can be passed to the @code{build-derivations}
2178 procedure to perform the build actions they prescribe (@pxref{The
2179 Store}).
2180
2181 The @code{(guix derivations)} module provides a representation of
2182 derivations as Scheme objects, along with procedures to create and
2183 otherwise manipulate derivations. The lowest-level primitive to create
2184 a derivation is the @code{derivation} procedure:
2185
2186 @deffn {Scheme Procedure} derivation @var{store} @var{name} @var{builder} @
2187 @var{args} [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
2188 [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @
2189 [#:system (%current-system)] [#:references-graphs #f] @
2190 [#:allowed-references #f] [#:leaked-env-vars #f] [#:local-build? #f]
2191 Build a derivation with the given arguments, and return the resulting
2192 @code{<derivation>} object.
2193
2194 When @var{hash} and @var{hash-algo} are given, a
2195 @dfn{fixed-output derivation} is created---i.e., one whose result is
2196 known in advance, such as a file download. If, in addition,
2197 @var{recursive?} is true, then that fixed output may be an executable
2198 file or a directory and @var{hash} must be the hash of an archive
2199 containing this output.
2200
2201 When @var{references-graphs} is true, it must be a list of file
2202 name/store path pairs. In that case, the reference graph of each store
2203 path is exported in the build environment in the corresponding file, in
2204 a simple text format.
2205
2206 When @var{allowed-references} is true, it must be a list of store items
2207 or outputs that the derivation's output may refer to.
2208
2209 When @var{leaked-env-vars} is true, it must be a list of strings
2210 denoting environment variables that are allowed to ``leak'' from the
2211 daemon's environment to the build environment. This is only applicable
2212 to fixed-output derivations---i.e., when @var{hash} is true. The main
2213 use is to allow variables such as @code{http_proxy} to be passed to
2214 derivations that download files.
2215
2216 When @var{local-build?} is true, declare that the derivation is not a
2217 good candidate for offloading and should rather be built locally
2218 (@pxref{Daemon Offload Setup}). This is the case for small derivations
2219 where the costs of data transfers would outweigh the benefits.
2220 @end deffn
2221
2222 @noindent
2223 Here's an example with a shell script as its builder, assuming
2224 @var{store} is an open connection to the daemon, and @var{bash} points
2225 to a Bash executable in the store:
2226
2227 @lisp
2228 (use-modules (guix utils)
2229 (guix store)
2230 (guix derivations))
2231
2232 (let ((builder ; add the Bash script to the store
2233 (add-text-to-store store "my-builder.sh"
2234 "echo hello world > $out\n" '())))
2235 (derivation store "foo"
2236 bash `("-e" ,builder)
2237 #:inputs `((,bash) (,builder))
2238 #:env-vars '(("HOME" . "/homeless"))))
2239 @result{} #<derivation /gnu/store/@dots{}-foo.drv => /gnu/store/@dots{}-foo>
2240 @end lisp
2241
2242 As can be guessed, this primitive is cumbersome to use directly. A
2243 better approach is to write build scripts in Scheme, of course! The
2244 best course of action for that is to write the build code as a
2245 ``G-expression'', and to pass it to @code{gexp->derivation}. For more
2246 information, @pxref{G-Expressions}.
2247
2248 Once upon a time, @code{gexp->derivation} did not exist and constructing
2249 derivations with build code written in Scheme was achieved with
2250 @code{build-expression->derivation}, documented below. This procedure
2251 is now deprecated in favor of the much nicer @code{gexp->derivation}.
2252
2253 @deffn {Scheme Procedure} build-expression->derivation @var{store} @
2254 @var{name} @var{exp} @
2255 [#:system (%current-system)] [#:inputs '()] @
2256 [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
2257 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
2258 [#:references-graphs #f] [#:allowed-references #f] @
2259 [#:local-build? #f] [#:guile-for-build #f]
2260 Return a derivation that executes Scheme expression @var{exp} as a
2261 builder for derivation @var{name}. @var{inputs} must be a list of
2262 @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted,
2263 @code{"out"} is assumed. @var{modules} is a list of names of Guile
2264 modules from the current search path to be copied in the store,
2265 compiled, and made available in the load path during the execution of
2266 @var{exp}---e.g., @code{((guix build utils) (guix build
2267 gnu-build-system))}.
2268
2269 @var{exp} is evaluated in an environment where @code{%outputs} is bound
2270 to a list of output/path pairs, and where @code{%build-inputs} is bound
2271 to a list of string/output-path pairs made from @var{inputs}.
2272 Optionally, @var{env-vars} is a list of string pairs specifying the name
2273 and value of environment variables visible to the builder. The builder
2274 terminates by passing the result of @var{exp} to @code{exit}; thus, when
2275 @var{exp} returns @code{#f}, the build is considered to have failed.
2276
2277 @var{exp} is built using @var{guile-for-build} (a derivation). When
2278 @var{guile-for-build} is omitted or is @code{#f}, the value of the
2279 @code{%guile-for-build} fluid is used instead.
2280
2281 See the @code{derivation} procedure for the meaning of
2282 @var{references-graphs}, @var{allowed-references}, and @var{local-build?}.
2283 @end deffn
2284
2285 @noindent
2286 Here's an example of a single-output derivation that creates a directory
2287 containing one file:
2288
2289 @lisp
2290 (let ((builder '(let ((out (assoc-ref %outputs "out")))
2291 (mkdir out) ; create /gnu/store/@dots{}-goo
2292 (call-with-output-file (string-append out "/test")
2293 (lambda (p)
2294 (display '(hello guix) p))))))
2295 (build-expression->derivation store "goo" builder))
2296
2297 @result{} #<derivation /gnu/store/@dots{}-goo.drv => @dots{}>
2298 @end lisp
2299
2300
2301 @node The Store Monad
2302 @section The Store Monad
2303
2304 @cindex monad
2305
2306 The procedures that operate on the store described in the previous
2307 sections all take an open connection to the build daemon as their first
2308 argument. Although the underlying model is functional, they either have
2309 side effects or depend on the current state of the store.
2310
2311 The former is inconvenient: the connection to the build daemon has to be
2312 carried around in all those functions, making it impossible to compose
2313 functions that do not take that parameter with functions that do. The
2314 latter can be problematic: since store operations have side effects
2315 and/or depend on external state, they have to be properly sequenced.
2316
2317 @cindex monadic values
2318 @cindex monadic functions
2319 This is where the @code{(guix monads)} module comes in. This module
2320 provides a framework for working with @dfn{monads}, and a particularly
2321 useful monad for our uses, the @dfn{store monad}. Monads are a
2322 construct that allows two things: associating ``context'' with values
2323 (in our case, the context is the store), and building sequences of
2324 computations (here computations include accesses to the store.) Values
2325 in a monad---values that carry this additional context---are called
2326 @dfn{monadic values}; procedures that return such values are called
2327 @dfn{monadic procedures}.
2328
2329 Consider this ``normal'' procedure:
2330
2331 @example
2332 (define (sh-symlink store)
2333 ;; Return a derivation that symlinks the 'bash' executable.
2334 (let* ((drv (package-derivation store bash))
2335 (out (derivation->output-path drv))
2336 (sh (string-append out "/bin/bash")))
2337 (build-expression->derivation store "sh"
2338 `(symlink ,sh %output))))
2339 @end example
2340
2341 Using @code{(guix monads)}, it may be rewritten as a monadic function:
2342
2343 @c FIXME: Find a better example, one that uses 'mlet'.
2344 @example
2345 (define (sh-symlink)
2346 ;; Same, but return a monadic value.
2347 (gexp->derivation "sh"
2348 #~(symlink (string-append #$bash "/bin/bash") #$output)))
2349 @end example
2350
2351 There are two things to note in the second version: the @code{store}
2352 parameter is now implicit, and the monadic value returned by
2353 @code{package-file}---a wrapper around @code{package-derivation} and
2354 @code{derivation->output-path}---is @dfn{bound} using @code{mlet}
2355 instead of plain @code{let}.
2356
2357 Calling the monadic @code{profile.sh} has no effect. To get the desired
2358 effect, one must use @code{run-with-store}:
2359
2360 @example
2361 (run-with-store (open-connection) (profile.sh))
2362 @result{} /gnu/store/...-profile.sh
2363 @end example
2364
2365 Note that the @code{(guix monad-repl)} module extends Guile's REPL with
2366 new ``meta-commands'' to make it easier to deal with monadic procedures:
2367 @code{run-in-store}, and @code{enter-store-monad}. The former, is used
2368 to ``run'' a single monadic value through the store:
2369
2370 @example
2371 scheme@@(guile-user)> ,run-in-store (package->derivation hello)
2372 $1 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
2373 @end example
2374
2375 The latter enters a recursive REPL, where all the return values are
2376 automatically run through the store:
2377
2378 @example
2379 scheme@@(guile-user)> ,enter-store-monad
2380 store-monad@@(guile-user) [1]> (package->derivation hello)
2381 $2 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
2382 store-monad@@(guile-user) [1]> (text-file "foo" "Hello!")
2383 $3 = "/gnu/store/@dots{}-foo"
2384 store-monad@@(guile-user) [1]> ,q
2385 scheme@@(guile-user)>
2386 @end example
2387
2388 @noindent
2389 Note that non-monadic values cannot be returned in the
2390 @code{store-monad} REPL.
2391
2392 The main syntactic forms to deal with monads in general are provided by
2393 the @code{(guix monads)} module and are described below.
2394
2395 @deffn {Scheme Syntax} with-monad @var{monad} @var{body} ...
2396 Evaluate any @code{>>=} or @code{return} forms in @var{body} as being
2397 in @var{monad}.
2398 @end deffn
2399
2400 @deffn {Scheme Syntax} return @var{val}
2401 Return a monadic value that encapsulates @var{val}.
2402 @end deffn
2403
2404 @deffn {Scheme Syntax} >>= @var{mval} @var{mproc}
2405 @dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic
2406 procedure @var{mproc}@footnote{This operation is commonly referred to as
2407 ``bind'', but that name denotes an unrelated procedure in Guile. Thus
2408 we use this somewhat cryptic symbol inherited from the Haskell
2409 language.}.
2410 @end deffn
2411
2412 @deffn {Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @
2413 @var{body} ...
2414 @deffnx {Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @
2415 @var{body} ...
2416 Bind the variables @var{var} to the monadic values @var{mval} in
2417 @var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the
2418 ``normal'' value @var{val}, as per @code{let}.
2419
2420 @code{mlet*} is to @code{mlet} what @code{let*} is to @code{let}
2421 (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual}).
2422 @end deffn
2423
2424 @deffn {Scheme System} mbegin @var{monad} @var{mexp} ...
2425 Bind @var{mexp} and the following monadic expressions in sequence,
2426 returning the result of the last expression.
2427
2428 This is akin to @code{mlet}, except that the return values of the
2429 monadic expressions are ignored. In that sense, it is analogous to
2430 @code{begin}, but applied to monadic expressions.
2431 @end deffn
2432
2433 @cindex state monad
2434 The @code{(guix monads)} module provides the @dfn{state monad}, which
2435 allows an additional value---the state---to be @emph{threaded} through
2436 monadic procedure calls.
2437
2438 @defvr {Scheme Variable} %state-monad
2439 The state monad. Procedures in the state monad can access and change
2440 the state that is threaded.
2441
2442 Consider the example below. The @code{square} procedure returns a value
2443 in the state monad. It returns the square of its argument, but also
2444 increments the current state value:
2445
2446 @example
2447 (define (square x)
2448 (mlet %state-monad ((count (current-state)))
2449 (mbegin %state-monad
2450 (set-current-state (+ 1 count))
2451 (return (* x x)))))
2452
2453 (run-with-state (sequence %state-monad (map square (iota 3))) 0)
2454 @result{} (0 1 4)
2455 @result{} 3
2456 @end example
2457
2458 When ``run'' through @var{%state-monad}, we obtain that additional state
2459 value, which is the number of @code{square} calls.
2460 @end defvr
2461
2462 @deffn {Monadic Procedure} current-state
2463 Return the current state as a monadic value.
2464 @end deffn
2465
2466 @deffn {Monadic Procedure} set-current-state @var{value}
2467 Set the current state to @var{value} and return the previous state as a
2468 monadic value.
2469 @end deffn
2470
2471 @deffn {Monadic Procedure} state-push @var{value}
2472 Push @var{value} to the current state, which is assumed to be a list,
2473 and return the previous state as a monadic value.
2474 @end deffn
2475
2476 @deffn {Monadic Procedure} state-pop
2477 Pop a value from the current state and return it as a monadic value.
2478 The state is assumed to be a list.
2479 @end deffn
2480
2481 @deffn {Scheme Procedure} run-with-state @var{mval} [@var{state}]
2482 Run monadic value @var{mval} starting with @var{state} as the initial
2483 state. Return two values: the resulting value, and the resulting state.
2484 @end deffn
2485
2486 The main interface to the store monad, provided by the @code{(guix
2487 store)} module, is as follows.
2488
2489 @defvr {Scheme Variable} %store-monad
2490 The store monad---an alias for @var{%state-monad}.
2491
2492 Values in the store monad encapsulate accesses to the store. When its
2493 effect is needed, a value of the store monad must be ``evaluated'' by
2494 passing it to the @code{run-with-store} procedure (see below.)
2495 @end defvr
2496
2497 @deffn {Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]
2498 Run @var{mval}, a monadic value in the store monad, in @var{store}, an
2499 open store connection.
2500 @end deffn
2501
2502 @deffn {Monadic Procedure} text-file @var{name} @var{text} [@var{references}]
2503 Return as a monadic value the absolute file name in the store of the file
2504 containing @var{text}, a string. @var{references} is a list of store items that the
2505 resulting text file refers to; it defaults to the empty list.
2506 @end deffn
2507
2508 @deffn {Monadic Procedure} interned-file @var{file} [@var{name}] @
2509 [#:recursive? #t]
2510 Return the name of @var{file} once interned in the store. Use
2511 @var{name} as its store name, or the basename of @var{file} if
2512 @var{name} is omitted.
2513
2514 When @var{recursive?} is true, the contents of @var{file} are added
2515 recursively; if @var{file} designates a flat file and @var{recursive?}
2516 is true, its contents are added, and its permission bits are kept.
2517
2518 The example below adds a file to the store, under two different names:
2519
2520 @example
2521 (run-with-store (open-connection)
2522 (mlet %store-monad ((a (interned-file "README"))
2523 (b (interned-file "README" "LEGU-MIN")))
2524 (return (list a b))))
2525
2526 @result{} ("/gnu/store/rwm@dots{}-README" "/gnu/store/44i@dots{}-LEGU-MIN")
2527 @end example
2528
2529 @end deffn
2530
2531 The @code{(guix packages)} module exports the following package-related
2532 monadic procedures:
2533
2534 @deffn {Monadic Procedure} package-file @var{package} [@var{file}] @
2535 [#:system (%current-system)] [#:target #f] @
2536 [#:output "out"] Return as a monadic
2537 value in the absolute file name of @var{file} within the @var{output}
2538 directory of @var{package}. When @var{file} is omitted, return the name
2539 of the @var{output} directory of @var{package}. When @var{target} is
2540 true, use it as a cross-compilation target triplet.
2541 @end deffn
2542
2543 @deffn {Monadic Procedure} package->derivation @var{package} [@var{system}]
2544 @deffnx {Monadic Procedure} package->cross-derivation @var{package} @
2545 @var{target} [@var{system}]
2546 Monadic version of @code{package-derivation} and
2547 @code{package-cross-derivation} (@pxref{Defining Packages}).
2548 @end deffn
2549
2550
2551 @node G-Expressions
2552 @section G-Expressions
2553
2554 @cindex G-expression
2555 @cindex build code quoting
2556 So we have ``derivations'', which represent a sequence of build actions
2557 to be performed to produce an item in the store (@pxref{Derivations}).
2558 Those build actions are performed when asking the daemon to actually
2559 build the derivations; they are run by the daemon in a container
2560 (@pxref{Invoking guix-daemon}).
2561
2562 @cindex strata of code
2563 It should come as no surprise that we like to write those build actions
2564 in Scheme. When we do that, we end up with two @dfn{strata} of Scheme
2565 code@footnote{The term @dfn{stratum} in this context was coined by
2566 Manuel Serrano et al.@: in the context of their work on Hop. Oleg
2567 Kiselyov, who has written insightful
2568 @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code
2569 on this topic}, refers to this kind of code generation as
2570 @dfn{staging}.}: the ``host code''---code that defines packages, talks
2571 to the daemon, etc.---and the ``build code''---code that actually
2572 performs build actions, such as making directories, invoking
2573 @command{make}, etc.
2574
2575 To describe a derivation and its build actions, one typically needs to
2576 embed build code inside host code. It boils down to manipulating build
2577 code as data, and Scheme's homoiconicity---code has a direct
2578 representation as data---comes in handy for that. But we need more than
2579 Scheme's normal @code{quasiquote} mechanism to construct build
2580 expressions.
2581
2582 The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of
2583 S-expressions adapted to build expressions. G-expressions, or
2584 @dfn{gexps}, consist essentially in three syntactic forms: @code{gexp},
2585 @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~},
2586 @code{#$}, and @code{#$@@}), which are comparable respectively to
2587 @code{quasiquote}, @code{unquote}, and @code{unquote-splicing}
2588 (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile
2589 Reference Manual}). However, there are major differences:
2590
2591 @itemize
2592 @item
2593 Gexps are meant to be written to a file and run or manipulated by other
2594 processes.
2595
2596 @item
2597 When a high-level object such as a package or derivation is unquoted
2598 inside a gexp, the result is as if its output file name had been
2599 introduced.
2600
2601 @item
2602 Gexps carry information about the packages or derivations they refer to,
2603 and these dependencies are automatically added as inputs to the build
2604 processes that use them.
2605 @end itemize
2606
2607 Actually this mechanism is not limited to package and derivation
2608 objects; @dfn{compilers} able to ``lower'' other high-level objects to
2609 derivations can be defined, such that these objects can also be inserted
2610 into gexps. Another useful type of high-level object that can be
2611 inserted in a gexp is @dfn{local files}, which allows files from the
2612 local file system to be added to the store and referred to by
2613 derivations and such (see @code{local-file} below.)
2614
2615 To illustrate the idea, here is an example of a gexp:
2616
2617 @example
2618 (define build-exp
2619 #~(begin
2620 (mkdir #$output)
2621 (chdir #$output)
2622 (symlink (string-append #$coreutils "/bin/ls")
2623 "list-files")))
2624 @end example
2625
2626 This gexp can be passed to @code{gexp->derivation}; we obtain a
2627 derivation that builds a directory containing exactly one symlink to
2628 @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:
2629
2630 @example
2631 (gexp->derivation "the-thing" build-exp)
2632 @end example
2633
2634 As one would expect, the @code{"/gnu/store/@dots{}-coreutils-8.22"} string is
2635 substituted to the reference to the @var{coreutils} package in the
2636 actual build code, and @var{coreutils} is automatically made an input to
2637 the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp
2638 output)}) is replaced by a string containing the derivation's output
2639 directory name.
2640
2641 @cindex cross compilation
2642 In a cross-compilation context, it is useful to distinguish between
2643 references to the @emph{native} build of a package---that can run on the
2644 host---versus references to cross builds of a package. To that end, the
2645 @code{#+} plays the same role as @code{#$}, but is a reference to a
2646 native package build:
2647
2648 @example
2649 (gexp->derivation "vi"
2650 #~(begin
2651 (mkdir #$output)
2652 (system* (string-append #+coreutils "/bin/ln")
2653 "-s"
2654 (string-append #$emacs "/bin/emacs")
2655 (string-append #$output "/bin/vi")))
2656 #:target "mips64el-linux")
2657 @end example
2658
2659 @noindent
2660 In the example above, the native build of @var{coreutils} is used, so
2661 that @command{ln} can actually run on the host; but then the
2662 cross-compiled build of @var{emacs} is referenced.
2663
2664 The syntactic form to construct gexps is summarized below.
2665
2666 @deffn {Scheme Syntax} #~@var{exp}
2667 @deffnx {Scheme Syntax} (gexp @var{exp})
2668 Return a G-expression containing @var{exp}. @var{exp} may contain one
2669 or more of the following forms:
2670
2671 @table @code
2672 @item #$@var{obj}
2673 @itemx (ungexp @var{obj})
2674 Introduce a reference to @var{obj}. @var{obj} may have one of the
2675 supported types, for example a package or a
2676 derivation, in which case the @code{ungexp} form is replaced by its
2677 output file name---e.g., @code{"/gnu/store/@dots{}-coreutils-8.22}.
2678
2679 If @var{obj} is a list, it is traversed and references to supported
2680 objects are substituted similarly.
2681
2682 If @var{obj} is another gexp, its contents are inserted and its
2683 dependencies are added to those of the containing gexp.
2684
2685 If @var{obj} is another kind of object, it is inserted as is.
2686
2687 @item #$@var{obj}:@var{output}
2688 @itemx (ungexp @var{obj} @var{output})
2689 This is like the form above, but referring explicitly to the
2690 @var{output} of @var{obj}---this is useful when @var{obj} produces
2691 multiple outputs (@pxref{Packages with Multiple Outputs}).
2692
2693 @item #+@var{obj}
2694 @itemx #+@var{obj}:output
2695 @itemx (ungexp-native @var{obj})
2696 @itemx (ungexp-native @var{obj} @var{output})
2697 Same as @code{ungexp}, but produces a reference to the @emph{native}
2698 build of @var{obj} when used in a cross compilation context.
2699
2700 @item #$output[:@var{output}]
2701 @itemx (ungexp output [@var{output}])
2702 Insert a reference to derivation output @var{output}, or to the main
2703 output when @var{output} is omitted.
2704
2705 This only makes sense for gexps passed to @code{gexp->derivation}.
2706
2707 @item #$@@@var{lst}
2708 @itemx (ungexp-splicing @var{lst})
2709 Like the above, but splices the contents of @var{lst} inside the
2710 containing list.
2711
2712 @item #+@@@var{lst}
2713 @itemx (ungexp-native-splicing @var{lst})
2714 Like the above, but refers to native builds of the objects listed in
2715 @var{lst}.
2716
2717 @end table
2718
2719 G-expressions created by @code{gexp} or @code{#~} are run-time objects
2720 of the @code{gexp?} type (see below.)
2721 @end deffn
2722
2723 @deffn {Scheme Procedure} gexp? @var{obj}
2724 Return @code{#t} if @var{obj} is a G-expression.
2725 @end deffn
2726
2727 G-expressions are meant to be written to disk, either as code building
2728 some derivation, or as plain files in the store. The monadic procedures
2729 below allow you to do that (@pxref{The Store Monad}, for more
2730 information about monads.)
2731
2732 @deffn {Monadic Procedure} gexp->derivation @var{name} @var{exp} @
2733 [#:system (%current-system)] [#:target #f] [#:graft? #t] @
2734 [#:hash #f] [#:hash-algo #f] @
2735 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
2736 [#:module-path @var{%load-path}] @
2737 [#:references-graphs #f] [#:allowed-references #f] @
2738 [#:leaked-env-vars #f] @
2739 [#:local-build? #f] [#:guile-for-build #f]
2740 Return a derivation @var{name} that runs @var{exp} (a gexp) with
2741 @var{guile-for-build} (a derivation) on @var{system}. When @var{target}
2742 is true, it is used as the cross-compilation target triplet for packages
2743 referred to by @var{exp}.
2744
2745 Make @var{modules} available in the evaluation context of @var{exp};
2746 @var{modules} is a list of names of Guile modules searched in
2747 @var{module-path} to be copied in the store, compiled, and made available in
2748 the load path during the execution of @var{exp}---e.g., @code{((guix
2749 build utils) (guix build gnu-build-system))}.
2750
2751 @var{graft?} determines whether packages referred to by @var{exp} should be grafted when
2752 applicable.
2753
2754 When @var{references-graphs} is true, it must be a list of tuples of one of the
2755 following forms:
2756
2757 @example
2758 (@var{file-name} @var{package})
2759 (@var{file-name} @var{package} @var{output})
2760 (@var{file-name} @var{derivation})
2761 (@var{file-name} @var{derivation} @var{output})
2762 (@var{file-name} @var{store-item})
2763 @end example
2764
2765 The right-hand-side of each element of @var{references-graphs} is automatically made
2766 an input of the build process of @var{exp}. In the build environment, each
2767 @var{file-name} contains the reference graph of the corresponding item, in a simple
2768 text format.
2769
2770 @var{allowed-references} must be either @code{#f} or a list of output names and packages.
2771 In the latter case, the list denotes store items that the result is allowed to
2772 refer to. Any reference to another store item will lead to a build error.
2773
2774 The other arguments are as for @code{derivation} (@pxref{Derivations}).
2775 @end deffn
2776
2777 @deffn {Scheme Procedure} local-file @var{file} [@var{name}] @
2778 [#:recursive? #t]
2779 Return an object representing local file @var{file} to add to the store; this
2780 object can be used in a gexp. @var{file} will be added to the store under @var{name}--by
2781 default the base name of @var{file}.
2782
2783 When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file}
2784 designates a flat file and @var{recursive?} is true, its contents are added, and its
2785 permission bits are kept.
2786
2787 This is the declarative counterpart of the @code{interned-file} monadic
2788 procedure (@pxref{The Store Monad, @code{interned-file}}).
2789 @end deffn
2790
2791 @deffn {Monadic Procedure} gexp->script @var{name} @var{exp}
2792 Return an executable script @var{name} that runs @var{exp} using
2793 @var{guile} with @var{modules} in its search path.
2794
2795 The example below builds a script that simply invokes the @command{ls}
2796 command:
2797
2798 @example
2799 (use-modules (guix gexp) (gnu packages base))
2800
2801 (gexp->script "list-files"
2802 #~(execl (string-append #$coreutils "/bin/ls")
2803 "ls"))
2804 @end example
2805
2806 When ``running'' it through the store (@pxref{The Store Monad,
2807 @code{run-with-store}}), we obtain a derivation that produces an
2808 executable file @file{/gnu/store/@dots{}-list-files} along these lines:
2809
2810 @example
2811 #!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds
2812 !#
2813 (execl (string-append "/gnu/store/@dots{}-coreutils-8.22"/bin/ls")
2814 "ls")
2815 @end example
2816 @end deffn
2817
2818 @deffn {Monadic Procedure} gexp->file @var{name} @var{exp}
2819 Return a derivation that builds a file @var{name} containing @var{exp}.
2820
2821 The resulting file holds references to all the dependencies of @var{exp}
2822 or a subset thereof.
2823 @end deffn
2824
2825 @deffn {Monadic Procedure} text-file* @var{name} @var{text} @dots{}
2826 Return as a monadic value a derivation that builds a text file
2827 containing all of @var{text}. @var{text} may list, in addition to
2828 strings, objects of any type that can be used in a gexp: packages,
2829 derivations, local file objects, etc. The resulting store file holds
2830 references to all these.
2831
2832 This variant should be preferred over @code{text-file} anytime the file
2833 to create will reference items from the store. This is typically the
2834 case when building a configuration file that embeds store file names,
2835 like this:
2836
2837 @example
2838 (define (profile.sh)
2839 ;; Return the name of a shell script in the store that
2840 ;; initializes the 'PATH' environment variable.
2841 (text-file* "profile.sh"
2842 "export PATH=" coreutils "/bin:"
2843 grep "/bin:" sed "/bin\n"))
2844 @end example
2845
2846 In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file
2847 will references @var{coreutils}, @var{grep}, and @var{sed}, thereby
2848 preventing them from being garbage-collected during its lifetime.
2849 @end deffn
2850
2851 Of course, in addition to gexps embedded in ``host'' code, there are
2852 also modules containing build tools. To make it clear that they are
2853 meant to be used in the build stratum, these modules are kept in the
2854 @code{(guix build @dots{})} name space.
2855
2856
2857 @c *********************************************************************
2858 @node Utilities
2859 @chapter Utilities
2860
2861 This section describes tools primarily targeted at developers and users
2862 who write new package definitions. They complement the Scheme
2863 programming interface of Guix in a convenient way.
2864
2865 @menu
2866 * Invoking guix build:: Building packages from the command line.
2867 * Invoking guix download:: Downloading a file and printing its hash.
2868 * Invoking guix hash:: Computing the cryptographic hash of a file.
2869 * Invoking guix import:: Importing package definitions.
2870 * Invoking guix refresh:: Updating package definitions.
2871 * Invoking guix lint:: Finding errors in package definitions.
2872 * Invoking guix environment:: Setting up development environments.
2873 * Invoking guix publish:: Sharing substitutes.
2874 @end menu
2875
2876 @node Invoking guix build
2877 @section Invoking @command{guix build}
2878
2879 The @command{guix build} command builds packages or derivations and
2880 their dependencies, and prints the resulting store paths. Note that it
2881 does not modify the user's profile---this is the job of the
2882 @command{guix package} command (@pxref{Invoking guix package}). Thus,
2883 it is mainly useful for distribution developers.
2884
2885 The general syntax is:
2886
2887 @example
2888 guix build @var{options} @var{package-or-derivation}@dots{}
2889 @end example
2890
2891 @var{package-or-derivation} may be either the name of a package found in
2892 the software distribution such as @code{coreutils} or
2893 @code{coreutils-8.20}, or a derivation such as
2894 @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a
2895 package with the corresponding name (and optionally version) is searched
2896 for among the GNU distribution modules (@pxref{Package Modules}).
2897
2898 Alternatively, the @code{--expression} option may be used to specify a
2899 Scheme expression that evaluates to a package; this is useful when
2900 disambiguation among several same-named packages or package variants is
2901 needed.
2902
2903 The @var{options} may be zero or more of the following:
2904
2905 @table @code
2906
2907 @item --expression=@var{expr}
2908 @itemx -e @var{expr}
2909 Build the package or derivation @var{expr} evaluates to.
2910
2911 For example, @var{expr} may be @code{(@@ (gnu packages guile)
2912 guile-1.8)}, which unambiguously designates this specific variant of
2913 version 1.8 of Guile.
2914
2915 Alternately, @var{expr} may be a G-expression, in which case it is used
2916 as a build program passed to @code{gexp->derivation}
2917 (@pxref{G-Expressions}).
2918
2919 Lastly, @var{expr} may refer to a zero-argument monadic procedure
2920 (@pxref{The Store Monad}). The procedure must return a derivation as a
2921 monadic value, which is then passed through @code{run-with-store}.
2922
2923 @item --source
2924 @itemx -S
2925 Build the packages' source derivations, rather than the packages
2926 themselves.
2927
2928 For instance, @code{guix build -S gcc} returns something like
2929 @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is GCC's source tarball.
2930
2931 The returned source tarball is the result of applying any patches and
2932 code snippets specified in the package's @code{origin} (@pxref{Defining
2933 Packages}).
2934
2935 @item --system=@var{system}
2936 @itemx -s @var{system}
2937 Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of
2938 the host's system type.
2939
2940 An example use of this is on Linux-based systems, which can emulate
2941 different personalities. For instance, passing
2942 @code{--system=i686-linux} on an @code{x86_64-linux} system allows users
2943 to build packages in a complete 32-bit environment.
2944
2945 @item --target=@var{triplet}
2946 @cindex cross-compilation
2947 Cross-build for @var{triplet}, which must be a valid GNU triplet, such
2948 as @code{"mips64el-linux-gnu"} (@pxref{Configuration Names, GNU
2949 configuration triplets,, configure, GNU Configure and Build System}).
2950
2951 @item --with-source=@var{source}
2952 Use @var{source} as the source of the corresponding package.
2953 @var{source} must be a file name or a URL, as for @command{guix
2954 download} (@pxref{Invoking guix download}).
2955
2956 The ``corresponding package'' is taken to be one specified on the
2957 command line whose name matches the base of @var{source}---e.g., if
2958 @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding
2959 package is @code{guile}. Likewise, the version string is inferred from
2960 @var{source}; in the previous example, it's @code{2.0.10}.
2961
2962 This option allows users to try out versions of packages other than the
2963 one provided by the distribution. The example below downloads
2964 @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for
2965 the @code{ed} package:
2966
2967 @example
2968 guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz
2969 @end example
2970
2971 As a developer, @code{--with-source} makes it easy to test release
2972 candidates:
2973
2974 @example
2975 guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz
2976 @end example
2977
2978 @item --no-grafts
2979 Do not ``graft'' packages. In practice, this means that package updates
2980 available as grafts are not applied. @xref{Security Updates}, for more
2981 information on grafts.
2982
2983 @item --derivations
2984 @itemx -d
2985 Return the derivation paths, not the output paths, of the given
2986 packages.
2987
2988 @item --root=@var{file}
2989 @itemx -r @var{file}
2990 Make @var{file} a symlink to the result, and register it as a garbage
2991 collector root.
2992
2993 @item --log-file
2994 Return the build log file names for the given
2995 @var{package-or-derivation}s, or raise an error if build logs are
2996 missing.
2997
2998 This works regardless of how packages or derivations are specified. For
2999 instance, the following invocations are equivalent:
3000
3001 @example
3002 guix build --log-file `guix build -d guile`
3003 guix build --log-file `guix build guile`
3004 guix build --log-file guile
3005 guix build --log-file -e '(@@ (gnu packages guile) guile-2.0)'
3006 @end example
3007
3008
3009 @end table
3010
3011 @cindex common build options
3012 In addition, a number of options that control the build process are
3013 common to @command{guix build} and other commands that can spawn builds,
3014 such as @command{guix package} or @command{guix archive}. These are the
3015 following:
3016
3017 @table @code
3018
3019 @item --load-path=@var{directory}
3020 @itemx -L @var{directory}
3021 Add @var{directory} to the front of the package module search path
3022 (@pxref{Package Modules}).
3023
3024 This allows users to define their own packages and make them visible to
3025 the command-line tools.
3026
3027 @item --keep-failed
3028 @itemx -K
3029 Keep the build tree of failed builds. Thus, if a build fail, its build
3030 tree is kept under @file{/tmp}, in a directory whose name is shown at
3031 the end of the build log. This is useful when debugging build issues.
3032
3033 @item --dry-run
3034 @itemx -n
3035 Do not build the derivations.
3036
3037 @item --fallback
3038 When substituting a pre-built binary fails, fall back to building
3039 packages locally.
3040
3041 @item --no-substitutes
3042 Do not use substitutes for build products. That is, always build things
3043 locally instead of allowing downloads of pre-built binaries
3044 (@pxref{Substitutes}).
3045
3046 @item --no-build-hook
3047 Do not attempt to offload builds @i{via} the daemon's ``build hook''
3048 (@pxref{Daemon Offload Setup}). That is, always build things locally
3049 instead of offloading builds to remote machines.
3050
3051 @item --max-silent-time=@var{seconds}
3052 When the build or substitution process remains silent for more than
3053 @var{seconds}, terminate it and report a build failure.
3054
3055 @item --timeout=@var{seconds}
3056 Likewise, when the build or substitution process lasts for more than
3057 @var{seconds}, terminate it and report a build failure.
3058
3059 By default there is no timeout. This behavior can be restored with
3060 @code{--timeout=0}.
3061
3062 @item --verbosity=@var{level}
3063 Use the given verbosity level. @var{level} must be an integer between 0
3064 and 5; higher means more verbose output. Setting a level of 4 or more
3065 may be helpful when debugging setup issues with the build daemon.
3066
3067 @item --cores=@var{n}
3068 @itemx -c @var{n}
3069 Allow the use of up to @var{n} CPU cores for the build. The special
3070 value @code{0} means to use as many CPU cores as available.
3071
3072 @item --max-jobs=@var{n}
3073 @itemx -M @var{n}
3074 Allow at most @var{n} build jobs in parallel. @xref{Invoking
3075 guix-daemon, @code{--max-jobs}}, for details about this option and the
3076 equivalent @command{guix-daemon} option.
3077
3078 @end table
3079
3080 Behind the scenes, @command{guix build} is essentially an interface to
3081 the @code{package-derivation} procedure of the @code{(guix packages)}
3082 module, and to the @code{build-derivations} procedure of the @code{(guix
3083 derivations)} module.
3084
3085 In addition to options explicitly passed on the command line,
3086 @command{guix build} and other @command{guix} commands that support
3087 building honor the @code{GUIX_BUILD_OPTIONS} environment variable.
3088
3089 @defvr {Environment Variable} GUIX_BUILD_OPTIONS
3090 Users can define this variable to a list of command line options that
3091 will automatically be used by @command{guix build} and other
3092 @command{guix} commands that can perform builds, as in the example
3093 below:
3094
3095 @example
3096 $ export GUIX_BUILD_OPTIONS="--no-substitutes -c 2 -L /foo/bar"
3097 @end example
3098
3099 These options are parsed independently, and the result is appended to
3100 the parsed command-line options.
3101 @end defvr
3102
3103
3104 @node Invoking guix download
3105 @section Invoking @command{guix download}
3106
3107 When writing a package definition, developers typically need to download
3108 the package's source tarball, compute its SHA256 hash, and write that
3109 hash in the package definition (@pxref{Defining Packages}). The
3110 @command{guix download} tool helps with this task: it downloads a file
3111 from the given URI, adds it to the store, and prints both its file name
3112 in the store and its SHA256 hash.
3113
3114 The fact that the downloaded file is added to the store saves bandwidth:
3115 when the developer eventually tries to build the newly defined package
3116 with @command{guix build}, the source tarball will not have to be
3117 downloaded again because it is already in the store. It is also a
3118 convenient way to temporarily stash files, which may be deleted
3119 eventually (@pxref{Invoking guix gc}).
3120
3121 The @command{guix download} command supports the same URIs as used in
3122 package definitions. In particular, it supports @code{mirror://} URIs.
3123 @code{https} URIs (HTTP over TLS) are supported @emph{provided} the
3124 Guile bindings for GnuTLS are available in the user's environment; when
3125 they are not available, an error is raised. @xref{Guile Preparations,
3126 how to install the GnuTLS bindings for Guile,, gnutls-guile,
3127 GnuTLS-Guile}, for more information.
3128
3129 The following option is available:
3130
3131 @table @code
3132 @item --format=@var{fmt}
3133 @itemx -f @var{fmt}
3134 Write the hash in the format specified by @var{fmt}. For more
3135 information on the valid values for @var{fmt}, @pxref{Invoking guix hash}.
3136 @end table
3137
3138 @node Invoking guix hash
3139 @section Invoking @command{guix hash}
3140
3141 The @command{guix hash} command computes the SHA256 hash of a file.
3142 It is primarily a convenience tool for anyone contributing to the
3143 distribution: it computes the cryptographic hash of a file, which can be
3144 used in the definition of a package (@pxref{Defining Packages}).
3145
3146 The general syntax is:
3147
3148 @example
3149 guix hash @var{option} @var{file}
3150 @end example
3151
3152 @command{guix hash} has the following option:
3153
3154 @table @code
3155
3156 @item --format=@var{fmt}
3157 @itemx -f @var{fmt}
3158 Write the hash in the format specified by @var{fmt}.
3159
3160 Supported formats: @code{nix-base32}, @code{base32}, @code{base16}
3161 (@code{hex} and @code{hexadecimal} can be used as well).
3162
3163 If the @option{--format} option is not specified, @command{guix hash}
3164 will output the hash in @code{nix-base32}. This representation is used
3165 in the definitions of packages.
3166
3167 @item --recursive
3168 @itemx -r
3169 Compute the hash on @var{file} recursively.
3170
3171 In this case, the hash is computed on an archive containing @var{file},
3172 including its children if it is a directory. Some of @var{file}'s
3173 meta-data is part of the archive; for instance, when @var{file} is a
3174 regular file, the hash is different depending on whether @var{file} is
3175 executable or not. Meta-data such as time stamps has no impact on the
3176 hash (@pxref{Invoking guix archive}).
3177 @c FIXME: Replace xref above with xref to an ``Archive'' section when
3178 @c it exists.
3179
3180 @end table
3181
3182 @node Invoking guix import
3183 @section Invoking @command{guix import}
3184
3185 @cindex importing packages
3186 @cindex package import
3187 @cindex package conversion
3188 The @command{guix import} command is useful for people willing to add a
3189 package to the distribution but who'd rather do as little work as
3190 possible to get there---a legitimate demand. The command knows of a few
3191 repositories from which it can ``import'' package meta-data. The result
3192 is a package definition, or a template thereof, in the format we know
3193 (@pxref{Defining Packages}).
3194
3195 The general syntax is:
3196
3197 @example
3198 guix import @var{importer} @var{options}@dots{}
3199 @end example
3200
3201 @var{importer} specifies the source from which to import package
3202 meta-data, and @var{options} specifies a package identifier and other
3203 options specific to @var{importer}. Currently, the available
3204 ``importers'' are:
3205
3206 @table @code
3207 @item gnu
3208 Import meta-data for the given GNU package. This provides a template
3209 for the latest version of that GNU package, including the hash of its
3210 source tarball, and its canonical synopsis and description.
3211
3212 Additional information such as the package's dependencies and its
3213 license needs to be figured out manually.
3214
3215 For example, the following command returns a package definition for
3216 GNU@tie{}Hello:
3217
3218 @example
3219 guix import gnu hello
3220 @end example
3221
3222 Specific command-line options are:
3223
3224 @table @code
3225 @item --key-download=@var{policy}
3226 As for @code{guix refresh}, specify the policy to handle missing OpenPGP
3227 keys when verifying the package's signature. @xref{Invoking guix
3228 refresh, @code{--key-download}}.
3229 @end table
3230
3231 @item pypi
3232 @cindex pypi
3233 Import meta-data from the @uref{https://pypi.python.org/, Python Package
3234 Index}@footnote{This functionality requires Guile-JSON to be installed.
3235 @xref{Requirements}.}. Information is taken from the JSON-formatted
3236 description available at @code{pypi.python.org} and usually includes all
3237 the relevant information, including package dependencies.
3238
3239 The command below imports meta-data for the @code{itsdangerous} Python
3240 package:
3241
3242 @example
3243 guix import pypi itsdangerous
3244 @end example
3245
3246 @item cpan
3247 @cindex CPAN
3248 Import meta-data from @uref{https://www.metacpan.org/, MetaCPAN}.
3249 Information is taken from the JSON-formatted meta-data provided through
3250 @uref{https://api.metacpan.org/, MetaCPAN's API} and includes most
3251 relevant information, such as module dependencies. License information
3252 should be checked closely. If Perl is available in the store, then the
3253 @code{corelist} utility will be used to filter core modules out of the
3254 list of dependencies.
3255
3256 The command command below imports meta-data for the @code{Acme::Boolean}
3257 Perl module:
3258
3259 @example
3260 guix import cpan Acme::Boolean
3261 @end example
3262
3263 @item nix
3264 Import meta-data from a local copy of the source of the
3265 @uref{http://nixos.org/nixpkgs/, Nixpkgs distribution}@footnote{This
3266 relies on the @command{nix-instantiate} command of
3267 @uref{http://nixos.org/nix/, Nix}.}. Package definitions in Nixpkgs are
3268 typically written in a mixture of Nix-language and Bash code. This
3269 command only imports the high-level package structure that is written in
3270 the Nix language. It normally includes all the basic fields of a
3271 package definition.
3272
3273 When importing a GNU package, the synopsis and descriptions are replaced
3274 by their canonical upstream variant.
3275
3276 As an example, the command below imports the package definition of
3277 LibreOffice (more precisely, it imports the definition of the package
3278 bound to the @code{libreoffice} top-level attribute):
3279
3280 @example
3281 guix import nix ~/path/to/nixpkgs libreoffice
3282 @end example
3283
3284 @item hackage
3285 @cindex hackage
3286 Import meta-data from Haskell community's central package archive
3287 @uref{https://hackage.haskell.org/, Hackage}. Information is taken from
3288 Cabal files and includes all the relevant information, including package
3289 dependencies.
3290
3291 Specific command-line options are:
3292
3293 @table @code
3294 @item --no-test-dependencies
3295 @itemx -t
3296 Do not include dependencies only required to run the test suite.
3297 @end table
3298
3299 The command below imports meta-data for the latest version of the
3300 @code{HTTP} Haskell package without including test dependencies:
3301
3302 @example
3303 guix import hackage -t HTTP
3304 @end example
3305
3306 A specific package version may optionally be specified by following the
3307 package name by a hyphen and a version number as in the following example:
3308
3309 @example
3310 guix import hackage mtl-2.1.3.1
3311 @end example
3312
3313 Currently only indentation structured Cabal files are supported.
3314 @end table
3315
3316 The structure of the @command{guix import} code is modular. It would be
3317 useful to have more importers for other package formats, and your help
3318 is welcome here (@pxref{Contributing}).
3319
3320 @node Invoking guix refresh
3321 @section Invoking @command{guix refresh}
3322
3323 The primary audience of the @command{guix refresh} command is developers
3324 of the GNU software distribution. By default, it reports any packages
3325 provided by the distribution that are outdated compared to the latest
3326 upstream version, like this:
3327
3328 @example
3329 $ guix refresh
3330 gnu/packages/gettext.scm:29:13: gettext would be upgraded from 0.18.1.1 to 0.18.2.1
3331 gnu/packages/glib.scm:77:12: glib would be upgraded from 2.34.3 to 2.37.0
3332 @end example
3333
3334 It does so by browsing each package's FTP directory and determining the
3335 highest version number of the source tarballs
3336 therein@footnote{Currently, this only works for GNU packages.}.
3337
3338 When passed @code{--update}, it modifies distribution source files to
3339 update the version numbers and source tarball hashes of those packages'
3340 recipes (@pxref{Defining Packages}). This is achieved by downloading
3341 each package's latest source tarball and its associated OpenPGP
3342 signature, authenticating the downloaded tarball against its signature
3343 using @command{gpg}, and finally computing its hash. When the public
3344 key used to sign the tarball is missing from the user's keyring, an
3345 attempt is made to automatically retrieve it from a public key server;
3346 when it's successful, the key is added to the user's keyring; otherwise,
3347 @command{guix refresh} reports an error.
3348
3349 The following options are supported:
3350
3351 @table @code
3352
3353 @item --update
3354 @itemx -u
3355 Update distribution source files (package recipes) in place.
3356 @xref{Defining Packages}, for more information on package definitions.
3357
3358 @item --select=[@var{subset}]
3359 @itemx -s @var{subset}
3360 Select all the packages in @var{subset}, one of @code{core} or
3361 @code{non-core}.
3362
3363 The @code{core} subset refers to all the packages at the core of the
3364 distribution---i.e., packages that are used to build ``everything
3365 else''. This includes GCC, libc, Binutils, Bash, etc. Usually,
3366 changing one of these packages in the distribution entails a rebuild of
3367 all the others. Thus, such updates are an inconvenience to users in
3368 terms of build time or bandwidth used to achieve the upgrade.
3369
3370 The @code{non-core} subset refers to the remaining packages. It is
3371 typically useful in cases where an update of the core packages would be
3372 inconvenient.
3373
3374 @end table
3375
3376 In addition, @command{guix refresh} can be passed one or more package
3377 names, as in this example:
3378
3379 @example
3380 guix refresh -u emacs idutils gcc-4.8.4
3381 @end example
3382
3383 @noindent
3384 The command above specifically updates the @code{emacs} and
3385 @code{idutils} packages. The @code{--select} option would have no
3386 effect in this case.
3387
3388 When considering whether to upgrade a package, it is sometimes
3389 convenient to know which packages would be affected by the upgrade and
3390 should be checked for compatibility. For this the following option may
3391 be used when passing @command{guix refresh} one or more package names:
3392
3393 @table @code
3394
3395 @item --list-dependent
3396 @itemx -l
3397 List top-level dependent packages that would need to be rebuilt as a
3398 result of upgrading one or more packages.
3399
3400 @end table
3401
3402 Be aware that the @code{--list-dependent} option only
3403 @emph{approximates} the rebuilds that would be required as a result of
3404 an upgrade. More rebuilds might be required under some circumstances.
3405
3406 @example
3407 $ guix refresh --list-dependent flex
3408 Building the following 120 packages would ensure 213 dependent packages are rebuilt:
3409 hop-2.4.0 geiser-0.4 notmuch-0.18 mu-0.9.9.5 cflow-1.4 idutils-4.6 @dots{}
3410 @end example
3411
3412 The command above lists a set of packages that could be built to check
3413 for compatibility with an upgraded @code{flex} package.
3414
3415 The following options can be used to customize GnuPG operation:
3416
3417 @table @code
3418
3419 @item --gpg=@var{command}
3420 Use @var{command} as the GnuPG 2.x command. @var{command} is searched
3421 for in @code{$PATH}.
3422
3423 @item --key-download=@var{policy}
3424 Handle missing OpenPGP keys according to @var{policy}, which may be one
3425 of:
3426
3427 @table @code
3428 @item always
3429 Always download missing OpenPGP keys from the key server, and add them
3430 to the user's GnuPG keyring.
3431
3432 @item never
3433 Never try to download missing OpenPGP keys. Instead just bail out.
3434
3435 @item interactive
3436 When a package signed with an unknown OpenPGP key is encountered, ask
3437 the user whether to download it or not. This is the default behavior.
3438 @end table
3439
3440 @item --key-server=@var{host}
3441 Use @var{host} as the OpenPGP key server when importing a public key.
3442
3443 @end table
3444
3445 @node Invoking guix lint
3446 @section Invoking @command{guix lint}
3447 The @command{guix lint} is meant to help package developers avoid common
3448 errors and use a consistent style. It runs a number of checks on a
3449 given set of packages in order to find common mistakes in their
3450 definitions. Available @dfn{checkers} include (see
3451 @code{--list-checkers} for a complete list):
3452
3453 @table @code
3454 @item synopsis
3455 @itemx description
3456 Validate certain typographical and stylistic rules about package
3457 descriptions and synopses.
3458
3459 @item inputs-should-be-native
3460 Identify inputs that should most likely be native inputs.
3461
3462 @item source
3463 @itemx home-page
3464 Probe @code{home-page} and @code{source} URLs and report those that are
3465 invalid.
3466 @end table
3467
3468 The general syntax is:
3469
3470 @example
3471 guix lint @var{options} @var{package}@dots{}
3472 @end example
3473
3474 If no package is given on the command line, then all packages are checked.
3475 The @var{options} may be zero or more of the following:
3476
3477 @table @code
3478
3479 @item --checkers
3480 @itemx -c
3481 Only enable the checkers specified in a comma-separated list using the
3482 names returned by @code{--list-checkers}.
3483
3484 @item --list-checkers
3485 @itemx -l
3486 List and describe all the available checkers that will be run on packages
3487 and exit.
3488
3489 @end table
3490
3491 @node Invoking guix environment
3492 @section Invoking @command{guix environment}
3493
3494 @cindex reproducible build environments
3495 The purpose of @command{guix environment} is to assist hackers in
3496 creating reproducible development environments without polluting their
3497 package profile. The @command{guix environment} tool takes one or more
3498 packages, builds all of the necessary inputs, and creates a shell
3499 environment to use them.
3500
3501 The general syntax is:
3502
3503 @example
3504 guix environment @var{options} @var{package}@dots{}
3505 @end example
3506
3507 The following examples spawns a new shell that is capable of building
3508 the GNU Guile source code:
3509
3510 @example
3511 guix environment guile
3512 @end example
3513
3514 If the specified packages are not built yet, @command{guix environment}
3515 automatically builds them. The new shell's environment is an augmented
3516 version of the environment that @command{guix environment} was run in.
3517 It contains the necessary search paths for building the given package
3518 added to the existing environment variables. To create a ``pure''
3519 environment in which the original environment variables have been unset,
3520 use the @code{--pure} option.
3521
3522 Additionally, more than one package may be specified, in which case the
3523 union of the inputs for the given packages are used. For example, the
3524 command below spawns a shell where all of the dependencies of both Guile
3525 and Emacs are available:
3526
3527 @example
3528 guix environment guile emacs
3529 @end example
3530
3531 Sometimes an interactive shell session is not desired. The
3532 @code{--exec} option can be used to specify the command to run instead.
3533
3534 @example
3535 guix environment guile --exec=make
3536 @end example
3537
3538 The following options are available:
3539
3540 @table @code
3541 @item --expression=@var{expr}
3542 @itemx -e @var{expr}
3543 Create an environment for the package that @var{expr} evaluates to.
3544
3545 @item --load=@var{file}
3546 @itemx -l @var{file}
3547 Create an environment for the package that the code within @var{file}
3548 evaluates to.
3549
3550 @item --exec=@var{command}
3551 @item -E @var{command}
3552 Execute @var{command} in the new environment.
3553
3554 @item --pure
3555 Unset existing environment variables when building the new environment.
3556 This has the effect of creating an environment in which search paths
3557 only contain package inputs.
3558
3559 @item --search-paths
3560 Display the environment variable definitions that make up the
3561 environment.
3562 @end table
3563
3564 It also supports all of the common build options that @command{guix
3565 build} supports (@pxref{Invoking guix build, common build options}).
3566
3567 @node Invoking guix publish
3568 @section Invoking @command{guix publish}
3569
3570 The purpose of @command{guix publish} is to enable users to easily share
3571 their store with others. When @command{guix publish} runs, it spawns an
3572 HTTP server which allows anyone with network access to obtain
3573 substitutes from it. This means that any machine running Guix can also
3574 act as if it were a build farm, since the HTTP interface is
3575 Hydra-compatible.
3576
3577 For security, each substitute is signed, allowing recipients to check
3578 their authenticity and integrity (@pxref{Substitutes}). Because
3579 @command{guix publish} uses the system's signing key, which is only
3580 readable by the system administrator, it must run as root.
3581
3582 The general syntax is:
3583
3584 @example
3585 guix publish @var{options}@dots{}
3586 @end example
3587
3588 Running @command{guix publish} without any additional arguments will
3589 spawn an HTTP server on port 8080:
3590
3591 @example
3592 guix publish
3593 @end example
3594
3595 Once a publishing server has been authorized (@pxref{Invoking guix
3596 archive}), the daemon may download substitutes from it:
3597
3598 @example
3599 guix-daemon --substitute-urls=http://example.org:8080
3600 @end example
3601
3602 The following options are available:
3603
3604 @table @code
3605 @item --port=@var{port}
3606 @itemx -p @var{port}
3607 Listen for HTTP requests on @var{port}.
3608
3609 @item --repl[=@var{port}]
3610 @itemx -r [@var{port}]
3611 Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile
3612 Reference Manual}) on @var{port} (37146 by default).
3613 @end table
3614
3615 @c *********************************************************************
3616 @node GNU Distribution
3617 @chapter GNU Distribution
3618
3619 @cindex Guix System Distribution
3620 @cindex GSD
3621 Guix comes with a distribution of the GNU system consisting entirely of
3622 free software@footnote{The term ``free'' here refers to the
3623 @url{http://www.gnu.org/philosophy/free-sw.html,freedom provided to
3624 users of that software}.}. The
3625 distribution can be installed on its own (@pxref{System Installation}),
3626 but it is also possible to install Guix as a package manager on top of
3627 an installed GNU/Linux system (@pxref{Installation}). To distinguish
3628 between the two, we refer to the standalone distribution as the Guix
3629 System Distribution, or GNU@tie{}GSD.
3630
3631 The distribution provides core GNU packages such as GNU libc, GCC, and
3632 Binutils, as well as many GNU and non-GNU applications. The complete
3633 list of available packages can be browsed
3634 @url{http://www.gnu.org/software/guix/package-list.html,on-line} or by
3635 running @command{guix package} (@pxref{Invoking guix package}):
3636
3637 @example
3638 guix package --list-available
3639 @end example
3640
3641 Our goal has been to provide a practical 100% free software distribution of
3642 Linux-based and other variants of GNU, with a focus on the promotion and
3643 tight integration of GNU components, and an emphasis on programs and
3644 tools that help users exert that freedom.
3645
3646 Packages are currently available on the following platforms:
3647
3648 @table @code
3649
3650 @item x86_64-linux
3651 Intel/AMD @code{x86_64} architecture, Linux-Libre kernel;
3652
3653 @item i686-linux
3654 Intel 32-bit architecture (IA32), Linux-Libre kernel;
3655
3656 @item armhf-linux
3657 ARMv7-A architecture with hard float, Thumb-2 and VFP3D16 coprocessor,
3658 using the EABI hard-float ABI, and Linux-Libre kernel.
3659
3660 @item mips64el-linux
3661 little-endian 64-bit MIPS processors, specifically the Loongson series,
3662 n32 application binary interface (ABI), and Linux-Libre kernel.
3663
3664 @end table
3665
3666 GSD itself is currently only available on @code{i686} and @code{x86_64}.
3667
3668 @noindent
3669 For information on porting to other architectures or kernels,
3670 @xref{Porting}.
3671
3672 @menu
3673 * System Installation:: Installing the whole operating system.
3674 * System Configuration:: Configuring the operating system.
3675 * Installing Debugging Files:: Feeding the debugger.
3676 * Security Updates:: Deploying security fixes quickly.
3677 * Package Modules:: Packages from the programmer's viewpoint.
3678 * Packaging Guidelines:: Growing the distribution.
3679 * Bootstrapping:: GNU/Linux built from scratch.
3680 * Porting:: Targeting another platform or kernel.
3681 @end menu
3682
3683 Building this distribution is a cooperative effort, and you are invited
3684 to join! @xref{Contributing}, for information about how you can help.
3685
3686 @node System Installation
3687 @section System Installation
3688
3689 @cindex Guix System Distribution
3690 This section explains how to install the Guix System Distribution
3691 on a machine. The Guix package manager can
3692 also be installed on top of a running GNU/Linux system,
3693 @pxref{Installation}.
3694
3695 @ifinfo
3696 @c This paragraph is for people reading this from tty2 of the
3697 @c installation image.
3698 You're reading this documentation with an Info reader. For details on
3699 how to use it, hit the @key{RET} key (``return'' or ``enter'') on the
3700 link that follows: @pxref{Help,,, info, Info: An Introduction}. Hit
3701 @kbd{l} afterwards to come back here.
3702 @end ifinfo
3703
3704 @subsection Limitations
3705
3706 As of version @value{VERSION}, the Guix System Distribution (GSD) is
3707 not production-ready. It may contain bugs and lack important
3708 features. Thus, if you are looking for a stable production system that
3709 respects your freedom as a computer user, a good solution at this point
3710 is to consider @url{http://www.gnu.org/distros/free-distros.html, one of
3711 more established GNU/Linux distributions}. We hope you can soon switch
3712 to the GSD without fear, of course. In the meantime, you can
3713 also keep using your distribution and try out the package manager on top
3714 of it (@pxref{Installation}).
3715
3716 Before you proceed with the installation, be aware of the following
3717 noteworthy limitations applicable to version @value{VERSION}:
3718
3719 @itemize
3720 @item
3721 The installation process does not include a graphical user interface and
3722 requires familiarity with GNU/Linux (see the following subsections to
3723 get a feel of what that means.)
3724
3725 @item
3726 The system does not yet provide GNOME and KDE; it provides Xfce, though,
3727 if graphical desktop environments are your thing.
3728
3729 @item
3730 Support for the Logical Volume Manager (LVM) is missing.
3731
3732 @item
3733 Few system services are currently supported out-of-the-box
3734 (@pxref{Services}).
3735
3736 @item
3737 On the order of 1,200 packages are available, which means that you may
3738 occasionally find that a useful package is missing.
3739 @end itemize
3740
3741 You've been warned. But more than a disclaimer, this is an invitation
3742 to report issues (and success stories!), and join us in improving it.
3743 @xref{Contributing}, for more info.
3744
3745 @subsection USB Stick Installation
3746
3747 An installation image for USB sticks can be downloaded from
3748 @code{ftp://alpha.gnu.org/gnu/guix/gsd-usb-install-@value{VERSION}.@var{system}.xz},
3749 where @var{system} is one of:
3750
3751 @table @code
3752 @item x86_64-linux
3753 for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;
3754
3755 @item i686-linux
3756 for a 32-bit GNU/Linux system on Intel-compatible CPUs.
3757 @end table
3758
3759 This image contains a single partition with the tools necessary for an
3760 installation. It is meant to be copied @emph{as is} to a large-enough
3761 USB stick.
3762
3763 To copy the image to a USB stick, follow these steps:
3764
3765 @enumerate
3766 @item
3767 Decompress the image using the @command{xz} command:
3768
3769 @example
3770 xz -d gsd-usb-install-@value{VERSION}.@var{system}.xz
3771 @end example
3772
3773 @item
3774 Insert a USB stick of 1@tie{}GiB or more in your machine, and determine
3775 its device name. Assuming that USB stick is known as @file{/dev/sdX},
3776 copy the image with:
3777
3778 @example
3779 dd if=gsd-usb-install-@value{VERSION}.x86_64 of=/dev/sdX
3780 @end example
3781
3782 Access to @file{/dev/sdX} usually requires root privileges.
3783 @end enumerate
3784
3785 Once this is done, you should be able to reboot the system and boot from
3786 the USB stick. The latter usually requires you to get in the BIOS' boot
3787 menu, where you can choose to boot from the USB stick.
3788
3789 @subsection Preparing for Installation
3790
3791 Once you have successfully booted the image on the USB stick, you should
3792 end up with a root prompt. Several console TTYs are configured and can
3793 be used to run commands as root. TTY2 shows this documentation,
3794 browsable using the Info reader commands (@pxref{Help,,, info, Info: An
3795 Introduction}).
3796
3797 To install the system, you would:
3798
3799 @enumerate
3800
3801 @item
3802 Configure the network, by running @command{dhclient eno1} (to get an
3803 automatically assigned IP address from the wired network interface
3804 controller@footnote{
3805 @c http://cgit.freedesktop.org/systemd/systemd/tree/src/udev/udev-builtin-net_id.c#n20
3806 The name @code{eno1} is for the first on-board Ethernet controller. The
3807 interface name for an Ethernet controller that is in the first slot of
3808 the first PCI bus, for instance, would be @code{enp1s0}. Use
3809 @command{ifconfig -a} to list all the available network interfaces.}),
3810 or using the @command{ifconfig} command.
3811
3812 The system automatically loads drivers for your network interface
3813 controllers.
3814
3815 Setting up network access is almost always a requirement because the
3816 image does not contain all the software and tools that may be needed.
3817
3818 @item
3819 Unless this has already been done, you must partition and format the
3820 target partitions.
3821
3822 Preferably, assign partitions a label so that you can easily and
3823 reliably refer to them in @code{file-system} declarations (@pxref{File
3824 Systems}). This is typically done using the @code{-L} option of
3825 @command{mkfs.ext4} and related commands.
3826
3827 The installation image includes Parted (@pxref{Overview,,, parted, GNU
3828 Parted User Manual}), @command{fdisk}, Cryptsetup/LUKS for disk
3829 encryption, and e2fsprogs, the suite of tools to manipulate
3830 ext2/ext3/ext4 file systems.
3831
3832 @item
3833 Once that is done, mount the target root partition under @file{/mnt}.
3834
3835 @item
3836 Lastly, run @code{deco start cow-store /mnt}.
3837
3838 This will make @file{/gnu/store} copy-on-write, such that packages added
3839 to it during the installation phase will be written to the target disk
3840 rather than kept in memory.
3841
3842 @end enumerate
3843
3844
3845 @subsection Proceeding with the Installation
3846
3847 With the target partitions ready, you now have to edit a file and
3848 provide the declaration of the operating system to be installed. To
3849 that end, the installation system comes with two text editors: GNU nano
3850 (@pxref{Top,,, nano, GNU nano Manual}), and GNU Zile, an Emacs clone.
3851 It is better to store that file on the target root file system, say, as
3852 @file{/mnt/etc/config.scm}.
3853
3854 A minimal operating system configuration, with just the bare minimum and
3855 only a root account would look like this (on the installation system,
3856 this example is available as @file{/etc/configuration-template.scm}):
3857
3858 @example
3859 @include os-config.texi
3860 @end example
3861
3862 @noindent
3863 For more information on @code{operating-system} declarations,
3864 @pxref{Using the Configuration System}.
3865
3866 Once that is done, the new system must be initialized (remember that the
3867 target root file system is mounted under @file{/mnt}):
3868
3869 @example
3870 guix system init /mnt/etc/config.scm /mnt
3871 @end example
3872
3873 @noindent
3874 This will copy all the necessary files, and install GRUB on
3875 @file{/dev/sdX}, unless you pass the @option{--no-grub} option. For
3876 more information, @pxref{Invoking guix system}. This command may trigger
3877 downloads or builds of missing packages, which can take some time.
3878
3879 Once that command has completed---and hopefully succeeded!---you can
3880 run @command{reboot} and boot into the new system. Cross fingers, and
3881 join us on @code{#guix} on the Freenode IRC network or on
3882 @file{guix-devel@@gnu.org} to share your experience---good or not so
3883 good.
3884
3885 @subsection Building the Installation Image
3886
3887 The installation image described above was built using the @command{guix
3888 system} command, specifically:
3889
3890 @example
3891 guix system disk-image --image-size=850MiB gnu/system/install.scm
3892 @end example
3893
3894 @xref{Invoking guix system}, for more information. See
3895 @file{gnu/system/install.scm} in the source tree for more information
3896 about the installation image.
3897
3898 @node System Configuration
3899 @section System Configuration
3900
3901 @cindex system configuration
3902 The Guix System Distribution supports a consistent whole-system configuration
3903 mechanism. By that we mean that all aspects of the global system
3904 configuration---such as the available system services, timezone and
3905 locale settings, user accounts---are declared in a single place. Such
3906 a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected.
3907
3908 One of the advantages of putting all the system configuration under the
3909 control of Guix is that it supports transactional system upgrades, and
3910 makes it possible to roll-back to a previous system instantiation,
3911 should something go wrong with the new one (@pxref{Features}). Another
3912 one is that it makes it easy to replicate the exact same configuration
3913 across different machines, or at different points in time, without
3914 having to resort to additional administration tools layered on top of
3915 the system's own tools.
3916 @c Yes, we're talking of Puppet, Chef, & co. here. ↑
3917
3918 This section describes this mechanism. First we focus on the system
3919 administrator's viewpoint---explaining how the system is configured and
3920 instantiated. Then we show how this mechanism can be extended, for
3921 instance to support new system services.
3922
3923 @menu
3924 * Using the Configuration System:: Customizing your GNU system.
3925 * operating-system Reference:: Detail of operating-system declarations.
3926 * File Systems:: Configuring file system mounts.
3927 * Mapped Devices:: Block device extra processing.
3928 * User Accounts:: Specifying user accounts.
3929 * Locales:: Language and cultural convention settings.
3930 * Services:: Specifying system services.
3931 * Setuid Programs:: Programs running with root privileges.
3932 * Name Service Switch:: Configuring libc's name service switch.
3933 * Initial RAM Disk:: Linux-Libre bootstrapping.
3934 * GRUB Configuration:: Configuring the boot loader.
3935 * Invoking guix system:: Instantiating a system configuration.
3936 * Defining Services:: Adding new service definitions.
3937 @end menu
3938
3939 @node Using the Configuration System
3940 @subsection Using the Configuration System
3941
3942 The operating system is configured by providing an
3943 @code{operating-system} declaration in a file that can then be passed to
3944 the @command{guix system} command (@pxref{Invoking guix system}). A
3945 simple setup, with the default system services, the default Linux-Libre
3946 kernel, initial RAM disk, and boot loader looks like this:
3947
3948 @findex operating-system
3949 @lisp
3950 (use-modules (gnu) ; for 'user-account', '%base-services', etc.
3951 (gnu packages emacs) ; for 'emacs'
3952 (gnu services ssh)) ; for 'lsh-service'
3953
3954 (operating-system
3955 (host-name "komputilo")
3956 (timezone "Europe/Paris")
3957 (locale "fr_FR.utf8")
3958 (bootloader (grub-configuration
3959 (device "/dev/sda")))
3960 (file-systems (cons (file-system
3961 (device "/dev/sda1") ; or partition label
3962 (mount-point "/")
3963 (type "ext3"))
3964 %base-file-systems))
3965 (users (list (user-account
3966 (name "alice")
3967 (group "users")
3968 (comment "Bob's sister")
3969 (home-directory "/home/alice"))))
3970 (packages (cons emacs %base-packages))
3971 (services (cons (lsh-service #:port 2222 #:root-login? #t)
3972 %base-services)))
3973 @end lisp
3974
3975 This example should be self-describing. Some of the fields defined
3976 above, such as @code{host-name} and @code{bootloader}, are mandatory.
3977 Others, such as @code{packages} and @code{services}, can be omitted, in
3978 which case they get a default value.
3979
3980 @vindex %base-packages
3981 The @code{packages} field lists
3982 packages that will be globally visible on the system, for all user
3983 accounts---i.e., in every user's @code{PATH} environment variable---in
3984 addition to the per-user profiles (@pxref{Invoking guix package}). The
3985 @var{%base-packages} variable provides all the tools one would expect
3986 for basic user and administrator tasks---including the GNU Core
3987 Utilities, the GNU Networking Utilities, the GNU Zile lightweight text
3988 editor, @command{find}, @command{grep}, etc. The example above adds
3989 Emacs to those, taken from the @code{(gnu packages emacs)} module
3990 (@pxref{Package Modules}).
3991
3992 @vindex %base-services
3993 The @code{services} field lists @dfn{system services} to be made
3994 available when the system starts (@pxref{Services}).
3995 The @code{operating-system} declaration above specifies that, in
3996 addition to the basic services, we want the @command{lshd} secure shell
3997 daemon listening on port 2222, and allowing remote @code{root} logins
3998 (@pxref{Invoking lshd,,, lsh, GNU lsh Manual}). Under the hood,
3999 @code{lsh-service} arranges so that @code{lshd} is started with the
4000 right command-line options, possibly with supporting configuration files
4001 generated as needed (@pxref{Defining Services}). @xref{operating-system
4002 Reference}, for details about the available @code{operating-system}
4003 fields.
4004
4005 Assuming the above snippet is stored in the @file{my-system-config.scm}
4006 file, the @command{guix system reconfigure my-system-config.scm} command
4007 instantiates that configuration, and makes it the default GRUB boot
4008 entry (@pxref{Invoking guix system}). The normal way to change the
4009 system's configuration is by updating this file and re-running the
4010 @command{guix system} command.
4011
4012 At the Scheme level, the bulk of an @code{operating-system} declaration
4013 is instantiated with the following monadic procedure (@pxref{The Store
4014 Monad}):
4015
4016 @deffn {Monadic Procedure} operating-system-derivation os
4017 Return a derivation that builds @var{os}, an @code{operating-system}
4018 object (@pxref{Derivations}).
4019
4020 The output of the derivation is a single directory that refers to all
4021 the packages, configuration files, and other supporting files needed to
4022 instantiate @var{os}.
4023 @end deffn
4024
4025 @node operating-system Reference
4026 @subsection @code{operating-system} Reference
4027
4028 This section summarizes all the options available in
4029 @code{operating-system} declarations (@pxref{Using the Configuration
4030 System}).
4031
4032 @deftp {Data Type} operating-system
4033 This is the data type representing an operating system configuration.
4034 By that, we mean all the global system configuration, not per-user
4035 configuration (@pxref{Using the Configuration System}).
4036
4037 @table @asis
4038 @item @code{kernel} (default: @var{linux-libre})
4039 The package object of the operating system to use@footnote{Currently
4040 only the Linux-libre kernel is supported. In the future, it will be
4041 possible to use the GNU@tie{}Hurd.}.
4042
4043 @item @code{bootloader}
4044 The system bootloader configuration object. @xref{GRUB Configuration}.
4045
4046 @item @code{initrd} (default: @code{base-initrd})
4047 A two-argument monadic procedure that returns an initial RAM disk for
4048 the Linux kernel. @xref{Initial RAM Disk}.
4049
4050 @item @code{firmware} (default: @var{%base-firmware})
4051 @cindex firmware
4052 List of firmware packages loadable by the operating system kernel.
4053
4054 The default includes firmware needed for Atheros-based WiFi devices
4055 (Linux-libre module @code{ath9k}.)
4056
4057 @item @code{host-name}
4058 The host name.
4059
4060 @item @code{hosts-file}
4061 @cindex hosts file
4062 A zero-argument monadic procedure that returns a text file for use as
4063 @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library
4064 Reference Manual}). The default is to produce a file with entries for
4065 @code{localhost} and @var{host-name}.
4066
4067 @item @code{mapped-devices} (default: @code{'()})
4068 A list of mapped devices. @xref{Mapped Devices}.
4069
4070 @item @code{file-systems}
4071 A list of file systems. @xref{File Systems}.
4072
4073 @item @code{swap-devices} (default: @code{'()})
4074 @cindex swap devices
4075 A list of strings identifying devices to be used for ``swap space''
4076 (@pxref{Memory Concepts,,, libc, The GNU C Library Reference Manual}).
4077 For example, @code{'("/dev/sda3")}.
4078
4079 @item @code{users} (default: @code{'()})
4080 @itemx @code{groups} (default: @var{%base-groups})
4081 List of user accounts and groups. @xref{User Accounts}.
4082
4083 @item @code{skeletons} (default: @code{(default-skeletons)})
4084 A monadic list of pairs of target file name and files. These are the
4085 files that will be used as skeletons as new accounts are created.
4086
4087 For instance, a valid value may look like this:
4088
4089 @example
4090 (mlet %store-monad ((bashrc (text-file "bashrc" "\
4091 export PATH=$HOME/.guix-profile/bin")))
4092 (return `((".bashrc" ,bashrc))))
4093 @end example
4094
4095 @item @code{issue} (default: @var{%default-issue})
4096 A string denoting the contents of the @file{/etc/issue} file, which is
4097 what displayed when users log in on a text console.
4098
4099 @item @code{packages} (default: @var{%base-packages})
4100 The set of packages installed in the global profile, which is accessible
4101 at @file{/run/current-system/profile}.
4102
4103 The default set includes core utilities, but it is good practice to
4104 install non-core utilities in user profiles (@pxref{Invoking guix
4105 package}).
4106
4107 @item @code{timezone}
4108 A timezone identifying string---e.g., @code{"Europe/Paris"}.
4109
4110 @item @code{locale} (default: @code{"en_US.utf8"})
4111 The name of the default locale (@pxref{Locale Names,,, libc, The GNU C
4112 Library Reference Manual}). @xref{Locales}, for more information.
4113
4114 @item @code{locale-definitions} (default: @var{%default-locale-definitions})
4115 The list of locale definitions to be compiled and that may be used at
4116 run time. @xref{Locales}.
4117
4118 @item @code{name-service-switch} (default: @var{%default-nss})
4119 Configuration of libc's name service switch (NSS)---a
4120 @code{<name-service-switch>} object. @xref{Name Service Switch}, for
4121 details.
4122
4123 @item @code{services} (default: @var{%base-services})
4124 A list of monadic values denoting system services. @xref{Services}.
4125
4126 @item @code{pam-services} (default: @code{(base-pam-services)})
4127 @cindex PAM
4128 @cindex pluggable authentication modules
4129 Linux @dfn{pluggable authentication module} (PAM) services.
4130 @c FIXME: Add xref to PAM services section.
4131
4132 @item @code{setuid-programs} (default: @var{%setuid-programs})
4133 List of string-valued G-expressions denoting setuid programs.
4134 @xref{Setuid Programs}.
4135
4136 @item @code{sudoers} (default: @var{%sudoers-specification})
4137 @cindex sudoers
4138 The contents of the @file{/etc/sudoers} file as a string.
4139
4140 This file specifies which users can use the @command{sudo} command, what
4141 they are allowed to do, and what privileges they may gain. The default
4142 is that only @code{root} and members of the @code{wheel} group may use
4143 @code{sudo}.
4144
4145 @end table
4146 @end deftp
4147
4148 @node File Systems
4149 @subsection File Systems
4150
4151 The list of file systems to be mounted is specified in the
4152 @code{file-systems} field of the operating system's declaration
4153 (@pxref{Using the Configuration System}). Each file system is declared
4154 using the @code{file-system} form, like this:
4155
4156 @example
4157 (file-system
4158 (mount-point "/home")
4159 (device "/dev/sda3")
4160 (type "ext4"))
4161 @end example
4162
4163 As usual, some of the fields are mandatory---those shown in the example
4164 above---while others can be omitted. These are described below.
4165
4166 @deftp {Data Type} file-system
4167 Objects of this type represent file systems to be mounted. They
4168 contain the following members:
4169
4170 @table @asis
4171 @item @code{type}
4172 This is a string specifying the type of the file system---e.g.,
4173 @code{"ext4"}.
4174
4175 @item @code{mount-point}
4176 This designates the place where the file system is to be mounted.
4177
4178 @item @code{device}
4179 This names the ``source'' of the file system. By default it is the name
4180 of a node under @file{/dev}, but its meaning depends on the @code{title}
4181 field described below.
4182
4183 @item @code{title} (default: @code{'device})
4184 This is a symbol that specifies how the @code{device} field is to be
4185 interpreted.
4186
4187 When it is the symbol @code{device}, then the @code{device} field is
4188 interpreted as a file name; when it is @code{label}, then @code{device}
4189 is interpreted as a partition label name; when it is @code{uuid},
4190 @code{device} is interpreted as a partition unique identifier (UUID).
4191
4192 The @code{label} and @code{uuid} options offer a way to refer to disk
4193 partitions without having to hard-code their actual device name.
4194
4195 However, when a file system's source is a mapped device (@pxref{Mapped
4196 Devices}), its @code{device} field @emph{must} refer to the mapped
4197 device name---e.g., @file{/dev/mapper/root-partition}---and consequently
4198 @code{title} must be set to @code{'device}. This is required so that
4199 the system knows that mounting the file system depends on having the
4200 corresponding device mapping established.
4201
4202 @item @code{flags} (default: @code{'()})
4203 This is a list of symbols denoting mount flags. Recognized flags
4204 include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow
4205 access to special files), @code{no-suid} (ignore setuid and setgid
4206 bits), and @code{no-exec} (disallow program execution.)
4207
4208 @item @code{options} (default: @code{#f})
4209 This is either @code{#f}, or a string denoting mount options.
4210
4211 @item @code{needed-for-boot?} (default: @code{#f})
4212 This Boolean value indicates whether the file system is needed when
4213 booting. If that is true, then the file system is mounted when the
4214 initial RAM disk (initrd) is loaded. This is always the case, for
4215 instance, for the root file system.
4216
4217 @item @code{check?} (default: @code{#t})
4218 This Boolean indicates whether the file system needs to be checked for
4219 errors before being mounted.
4220
4221 @item @code{create-mount-point?} (default: @code{#f})
4222 When true, the mount point is created if it does not exist yet.
4223
4224 @end table
4225 @end deftp
4226
4227 The @code{(gnu system file-systems)} exports the following useful
4228 variables.
4229
4230 @defvr {Scheme Variable} %base-file-systems
4231 These are essential file systems that are required on normal systems,
4232 such as @var{%devtmpfs-file-system} and @var{%immutable-store} (see
4233 below.) Operating system declarations should always contain at least
4234 these.
4235 @end defvr
4236
4237 @defvr {Scheme Variable} %devtmpfs-file-system
4238 The @code{devtmpfs} file system to be mounted on @file{/dev}. This is a
4239 requirement for udev (@pxref{Base Services, @code{udev-service}}).
4240 @end defvr
4241
4242 @defvr {Scheme Variable} %pseudo-terminal-file-system
4243 This is the file system to be mounted as @file{/dev/pts}. It supports
4244 @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar
4245 functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference
4246 Manual}). Pseudo-terminals are used by terminal emulators such as
4247 @command{xterm}.
4248 @end defvr
4249
4250 @defvr {Scheme Variable} %shared-memory-file-system
4251 This file system is mounted as @file{/dev/shm} and is used to support
4252 memory sharing across processes (@pxref{Memory-mapped I/O,
4253 @code{shm_open},, libc, The GNU C Library Reference Manual}).
4254 @end defvr
4255
4256 @defvr {Scheme Variable} %immutable-store
4257 This file system performs a read-only ``bind mount'' of
4258 @file{/gnu/store}, making it read-only for all the users including
4259 @code{root}. This prevents against accidental modification by software
4260 running as @code{root} or by system administrators.
4261
4262 The daemon itself is still able to write to the store: it remounts it
4263 read-write in its own ``name space.''
4264 @end defvr
4265
4266 @defvr {Scheme Variable} %binary-format-file-system
4267 The @code{binfmt_misc} file system, which allows handling of arbitrary
4268 executable file types to be delegated to user space. This requires the
4269 @code{binfmt.ko} kernel module to be loaded.
4270 @end defvr
4271
4272 @defvr {Scheme Variable} %fuse-control-file-system
4273 The @code{fusectl} file system, which allows unprivileged users to mount
4274 and unmount user-space FUSE file systems. This requires the
4275 @code{fuse.ko} kernel module to be loaded.
4276 @end defvr
4277
4278 @node Mapped Devices
4279 @subsection Mapped Devices
4280
4281 @cindex device mapping
4282 @cindex mapped devices
4283 The Linux kernel has a notion of @dfn{device mapping}: a block device,
4284 such as a hard disk partition, can be @dfn{mapped} into another device,
4285 with additional processing over the data that flows through
4286 it@footnote{Note that the GNU@tie{}Hurd makes no difference between the
4287 concept of a ``mapped device'' and that of a file system: both boil down
4288 to @emph{translating} input/output operations made on a file to
4289 operations on its backing store. Thus, the Hurd implements mapped
4290 devices, like file systems, using the generic @dfn{translator} mechanism
4291 (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A
4292 typical example is encryption device mapping: all writes to the mapped
4293 device are encrypted, and all reads are deciphered, transparently.
4294
4295 Mapped devices are declared using the @code{mapped-device} form:
4296
4297 @example
4298 (mapped-device
4299 (source "/dev/sda3")
4300 (target "home")
4301 (type luks-device-mapping))
4302 @end example
4303
4304 @noindent
4305 @cindex disk encryption
4306 @cindex LUKS
4307 This example specifies a mapping from @file{/dev/sda3} to
4308 @file{/dev/mapper/home} using LUKS---the
4309 @url{http://code.google.com/p/cryptsetup,Linux Unified Key Setup}, a
4310 standard mechanism for disk encryption. The @file{/dev/mapper/home}
4311 device can then be used as the @code{device} of a @code{file-system}
4312 declaration (@pxref{File Systems}). The @code{mapped-device} form is
4313 detailed below.
4314
4315 @deftp {Data Type} mapped-device
4316 Objects of this type represent device mappings that will be made when
4317 the system boots up.
4318
4319 @table @code
4320 @item source
4321 This string specifies the name of the block device to be mapped, such as
4322 @code{"/dev/sda3"}.
4323
4324 @item target
4325 This string specifies the name of the mapping to be established. For
4326 example, specifying @code{"my-partition"} will lead to the creation of
4327 the @code{"/dev/mapper/my-partition"} device.
4328
4329 @item type
4330 This must be a @code{mapped-device-kind} object, which specifies how
4331 @var{source} is mapped to @var{target}.
4332 @end table
4333 @end deftp
4334
4335 @defvr {Scheme Variable} luks-device-mapping
4336 This defines LUKS block device encryption using the @command{cryptsetup}
4337 command, from the same-named package. This relies on the
4338 @code{dm-crypt} Linux kernel module.
4339 @end defvr
4340
4341 @node User Accounts
4342 @subsection User Accounts
4343
4344 User accounts and groups are entirely managed through the
4345 @code{operating-system} declaration. They are specified with the
4346 @code{user-account} and @code{user-group} forms:
4347
4348 @example
4349 (user-account
4350 (name "alice")
4351 (group "users")
4352 (supplementary-groups '("wheel" ;allow use of sudo, etc.
4353 "audio" ;sound card
4354 "video" ;video devices such as webcams
4355 "cdrom")) ;the good ol' CD-ROM
4356 (comment "Bob's sister")
4357 (home-directory "/home/alice"))
4358 @end example
4359
4360 When booting or upon completion of @command{guix system reconfigure},
4361 the system ensures that only the user accounts and groups specified in
4362 the @code{operating-system} declaration exist, and with the specified
4363 properties. Thus, account or group creations or modifications made by
4364 directly invoking commands such as @command{useradd} are lost upon
4365 reconfiguration or reboot. This ensures that the system remains exactly
4366 as declared.
4367
4368 @deftp {Data Type} user-account
4369 Objects of this type represent user accounts. The following members may
4370 be specified:
4371
4372 @table @asis
4373 @item @code{name}
4374 The name of the user account.
4375
4376 @item @code{group}
4377 This is the name (a string) or identifier (a number) of the user group
4378 this account belongs to.
4379
4380 @item @code{supplementary-groups} (default: @code{'()})
4381 Optionally, this can be defined as a list of group names that this
4382 account belongs to.
4383
4384 @item @code{uid} (default: @code{#f})
4385 This is the user ID for this account (a number), or @code{#f}. In the
4386 latter case, a number is automatically chosen by the system when the
4387 account is created.
4388
4389 @item @code{comment} (default: @code{""})
4390 A comment about the account, such as the account's owner full name.
4391
4392 @item @code{home-directory}
4393 This is the name of the home directory for the account.
4394
4395 @item @code{shell} (default: Bash)
4396 This is a G-expression denoting the file name of a program to be used as
4397 the shell (@pxref{G-Expressions}).
4398
4399 @item @code{system?} (default: @code{#f})
4400 This Boolean value indicates whether the account is a ``system''
4401 account. System accounts are sometimes treated specially; for instance,
4402 graphical login managers do not list them.
4403
4404 @item @code{password} (default: @code{#f})
4405 You would normally leave this field to @code{#f}, initialize user
4406 passwords as @code{root} with the @command{passwd} command, and then let
4407 users change it with @command{passwd}. Passwords set with
4408 @command{passwd} are of course preserved across reboot and
4409 reconfiguration.
4410
4411 If you @emph{do} want to have a preset password for an account, then
4412 this field must contain the encrypted password, as a string.
4413 @xref{crypt,,, libc, The GNU C Library Reference Manual}, for more information
4414 on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference
4415 Manual}, for information on Guile's @code{crypt} procedure.
4416
4417 @end table
4418 @end deftp
4419
4420 User group declarations are even simpler:
4421
4422 @example
4423 (user-group (name "students"))
4424 @end example
4425
4426 @deftp {Data Type} user-group
4427 This type is for, well, user groups. There are just a few fields:
4428
4429 @table @asis
4430 @item @code{name}
4431 The group's name.
4432
4433 @item @code{id} (default: @code{#f})
4434 The group identifier (a number). If @code{#f}, a new number is
4435 automatically allocated when the group is created.
4436
4437 @item @code{system?} (default: @code{#f})
4438 This Boolean value indicates whether the group is a ``system'' group.
4439 System groups have low numerical IDs.
4440
4441 @item @code{password} (default: @code{#f})
4442 What, user groups can have a password? Well, apparently yes. Unless
4443 @code{#f}, this field specifies the group's password.
4444
4445 @end table
4446 @end deftp
4447
4448 For convenience, a variable lists all the basic user groups one may
4449 expect:
4450
4451 @defvr {Scheme Variable} %base-groups
4452 This is the list of basic user groups that users and/or packages expect
4453 to be present on the system. This includes groups such as ``root'',
4454 ``wheel'', and ``users'', as well as groups used to control access to
4455 specific devices such as ``audio'', ``disk'', and ``cdrom''.
4456 @end defvr
4457
4458 @node Locales
4459 @subsection Locales
4460
4461 @cindex locale
4462 A @dfn{locale} defines cultural conventions for a particular language
4463 and region of the world (@pxref{Locales,,, libc, The GNU C Library
4464 Reference Manual}). Each locale has a name that typically has the form
4465 @code{@var{language}_@var{territory}.@var{charset}}---e.g.,
4466 @code{fr_LU.utf8} designates the locale for the French language, with
4467 cultural conventions from Luxembourg, and using the UTF-8 encoding.
4468
4469 @cindex locale definition
4470 Usually, you will want to specify the default locale for the machine
4471 using the @code{locale} field of the @code{operating-system} declaration
4472 (@pxref{operating-system Reference, @code{locale}}).
4473
4474 That locale must be among the @dfn{locale definitions} that are known to
4475 the system---and these are specified in the @code{locale-definitions}
4476 slot of @code{operating-system}. The default value includes locale
4477 definition for some widely used locales, but not for all the available
4478 locales, in order to save space.
4479
4480 If the locale specified in the @code{locale} field is not among the
4481 definitions listed in @code{locale-definitions}, @command{guix system}
4482 raises an error. In that case, you should add the locale definition to
4483 the @code{locale-definitions} field. For instance, to add the North
4484 Frisian locale for Germany, the value of that field may be:
4485
4486 @example
4487 (cons (locale-definition
4488 (name "fy_DE.utf8") (source "fy_DE"))
4489 %default-locale-definitions)
4490 @end example
4491
4492 Likewise, to save space, one might want @code{locale-definitions} to
4493 list only the locales that are actually used, as in:
4494
4495 @example
4496 (list (locale-definition
4497 (name "ja_JP.eucjp") (source "ja_JP")
4498 (charset "EUC-JP")))
4499 @end example
4500
4501 The @code{locale-definition} form is provided by the @code{(gnu system
4502 locale)} module. Details are given below.
4503
4504 @deftp {Data Type} locale-definition
4505 This is the data type of a locale definition.
4506
4507 @table @asis
4508
4509 @item @code{name}
4510 The name of the locale. @xref{Locale Names,,, libc, The GNU C Library
4511 Reference Manual}, for more information on locale names.
4512
4513 @item @code{source}
4514 The name of the source for that locale. This is typically the
4515 @code{@var{language}_@var{territory}} part of the locale name.
4516
4517 @item @code{charset} (default: @code{"UTF-8"})
4518 The ``character set'' or ``code set'' for that locale,
4519 @uref{http://www.iana.org/assignments/character-sets, as defined by
4520 IANA}.
4521
4522 @end table
4523 @end deftp
4524
4525 @defvr {Scheme Variable} %default-locale-definitions
4526 An arbitrary list of commonly used locales, used as the default value of
4527 the @code{locale-definitions} field of @code{operating-system}
4528 declarations.
4529 @end defvr
4530
4531 @node Services
4532 @subsection Services
4533
4534 @cindex system services
4535 An important part of preparing an @code{operating-system} declaration is
4536 listing @dfn{system services} and their configuration (@pxref{Using the
4537 Configuration System}). System services are typically daemons launched
4538 when the system boots, or other actions needed at that time---e.g.,
4539 configuring network access.
4540
4541 Services are managed by GNU@tie{}dmd (@pxref{Introduction,,, dmd, GNU
4542 dmd Manual}). On a running system, the @command{deco} command allows
4543 you to list the available services, show their status, start and stop
4544 them, or do other specific operations (@pxref{Jump Start,,, dmd, GNU dmd
4545 Manual}). For example:
4546
4547 @example
4548 # deco status dmd
4549 @end example
4550
4551 The above command, run as @code{root}, lists the currently defined
4552 services. The @command{deco doc} command shows a synopsis of the given
4553 service:
4554
4555 @example
4556 # deco doc nscd
4557 Run libc's name service cache daemon (nscd).
4558 @end example
4559
4560 The @command{start}, @command{stop}, and @command{restart} sub-commands
4561 have the effect you would expect. For instance, the commands below stop
4562 the nscd service and restart the Xorg display server:
4563
4564 @example
4565 # deco stop nscd
4566 Service nscd has been stopped.
4567 # deco restart xorg-server
4568 Service xorg-server has been stopped.
4569 Service xorg-server has been started.
4570 @end example
4571
4572 The following sections document the available services, starting with
4573 the core services, that may be used in an @code{operating-system}
4574 declaration.
4575
4576 @menu
4577 * Base Services:: Essential system services.
4578 * Networking Services:: Network setup, SSH daemon, etc.
4579 * X Window:: Graphical display.
4580 * Various Services:: Other services.
4581 @end menu
4582
4583 @node Base Services
4584 @subsubsection Base Services
4585
4586 The @code{(gnu services base)} module provides definitions for the basic
4587 services that one expects from the system. The services exported by
4588 this module are listed below.
4589
4590 @defvr {Scheme Variable} %base-services
4591 This variable contains a list of basic services@footnote{Technically,
4592 this is a list of monadic services. @xref{The Store Monad}.} one would
4593 expect from the system: a login service (mingetty) on each tty, syslogd,
4594 libc's name service cache daemon (nscd), the udev device manager, and
4595 more.
4596
4597 This is the default value of the @code{services} field of
4598 @code{operating-system} declarations. Usually, when customizing a
4599 system, you will want to append services to @var{%base-services}, like
4600 this:
4601
4602 @example
4603 (cons* (avahi-service) (lsh-service) %base-services)
4604 @end example
4605 @end defvr
4606
4607 @deffn {Monadic Procedure} host-name-service @var{name}
4608 Return a service that sets the host name to @var{name}.
4609 @end deffn
4610
4611 @deffn {Monadic Procedure} mingetty-service @var{tty} [#:motd] @
4612 [#:auto-login #f] [#:login-program] [#:login-pause? #f] @
4613 [#:allow-empty-passwords? #f]
4614 Return a service to run mingetty on @var{tty}.
4615
4616 When @var{allow-empty-passwords?} is true, allow empty log-in password. When
4617 @var{auto-login} is true, it must be a user name under which to log-in
4618 automatically. @var{login-pause?} can be set to @code{#t} in conjunction with
4619 @var{auto-login}, in which case the user will have to press a key before the
4620 login shell is launched.
4621
4622 When true, @var{login-program} is a gexp or a monadic gexp denoting the name
4623 of the log-in program (the default is the @code{login} program from the Shadow
4624 tool suite.)
4625
4626 @var{motd} is a monadic value containing a text file to use as
4627 the ``message of the day''.
4628 @end deffn
4629
4630 @cindex name service cache daemon
4631 @cindex nscd
4632 @deffn {Monadic Procedure} nscd-service [@var{config}] [#:glibc glibc] @
4633 [#:name-services '()]
4634 Return a service that runs libc's name service cache daemon (nscd) with
4635 the given @var{config}---an @code{<nscd-configuration>} object.
4636 Optionally, @code{#:name-services} is a list of packages that provide
4637 name service switch (NSS) modules needed by nscd. @xref{Name Service
4638 Switch}, for an example.
4639 @end deffn
4640
4641 @defvr {Scheme Variable} %nscd-default-configuration
4642 This is the default @code{<nscd-configuration>} value (see below) used
4643 by @code{nscd-service}. This uses the caches defined by
4644 @var{%nscd-default-caches}; see below.
4645 @end defvr
4646
4647 @deftp {Data Type} nscd-configuration
4648 This is the type representing the name service cache daemon (nscd)
4649 configuration.
4650
4651 @table @asis
4652
4653 @item @code{log-file} (default: @code{"/var/log/nscd.log"})
4654 Name of nscd's log file. This is where debugging output goes when
4655 @code{debug-level} is strictly positive.
4656
4657 @item @code{debug-level} (default: @code{0})
4658 Integer denoting the debugging levels. Higher numbers mean more
4659 debugging output is logged.
4660
4661 @item @code{caches} (default: @var{%nscd-default-caches})
4662 List of @code{<nscd-cache>} objects denoting things to be cached; see
4663 below.
4664
4665 @end table
4666 @end deftp
4667
4668 @deftp {Data Type} nscd-cache
4669 Data type representing a cache database of nscd and its parameters.
4670
4671 @table @asis
4672
4673 @item @code{database}
4674 This is a symbol representing the name of the database to be cached.
4675 Valid values are @code{passwd}, @code{group}, @code{hosts}, and
4676 @code{services}, which designate the corresponding NSS database
4677 (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual}).
4678
4679 @item @code{positive-time-to-live}
4680 @itemx @code{negative-time-to-live} (default: @code{20})
4681 A number representing the number of seconds during which a positive or
4682 negative lookup result remains in cache.
4683
4684 @item @code{check-files?} (default: @code{#t})
4685 Whether to check for updates of the files corresponding to
4686 @var{database}.
4687
4688 For instance, when @var{database} is @code{hosts}, setting this flag
4689 instructs nscd to check for updates in @file{/etc/hosts} and to take
4690 them into account.
4691
4692 @item @code{persistent?} (default: @code{#t})
4693 Whether the cache should be stored persistently on disk.
4694
4695 @item @code{shared?} (default: @code{#t})
4696 Whether the cache should be shared among users.
4697
4698 @item @code{max-database-size} (default: 32@tie{}MiB)
4699 Maximum size in bytes of the database cache.
4700
4701 @c XXX: 'suggested-size' and 'auto-propagate?' seem to be expert
4702 @c settings, so leave them out.
4703
4704 @end table
4705 @end deftp
4706
4707 @defvr {Scheme Variable} %nscd-default-caches
4708 List of @code{<nscd-cache>} objects used by default by
4709 @code{nscd-configuration} (see above.)
4710
4711 It enables persistent and aggressive caching of service and host name
4712 lookups. The latter provides better host name lookup performance,
4713 resilience in the face of unreliable name servers, and also better
4714 privacy---often the result of host name lookups is in local cache, so
4715 external name servers do not even need to be queried.
4716 @end defvr
4717
4718
4719 @deffn {Monadic Procedure} syslog-service [#:config-file #f]
4720 Return a service that runs @code{syslogd}. If configuration file name
4721 @var{config-file} is not specified, use some reasonable default
4722 settings.
4723 @end deffn
4724
4725 @deffn {Monadic Procedure} guix-service [#:guix guix] @
4726 [#:builder-group "guixbuild"] [#:build-accounts 10] @
4727 [#:authorize-hydra-key? #t] [#:use-substitutes? #t] @
4728 [#:extra-options '()]
4729 Return a service that runs the build daemon from @var{guix}, and has
4730 @var{build-accounts} user accounts available under @var{builder-group}.
4731
4732 When @var{authorize-hydra-key?} is true, the @code{hydra.gnu.org} public key
4733 provided by @var{guix} is authorized upon activation, meaning that substitutes
4734 from @code{hydra.gnu.org} are used by default.
4735
4736 If @var{use-substitutes?} is false, the daemon is run with
4737 @option{--no-substitutes} (@pxref{Invoking guix-daemon,
4738 @option{--no-substitutes}}).
4739
4740 Finally, @var{extra-options} is a list of additional command-line options
4741 passed to @command{guix-daemon}.
4742 @end deffn
4743
4744 @deffn {Monadic Procedure} udev-service [#:udev udev]
4745 Run @var{udev}, which populates the @file{/dev} directory dynamically.
4746 @end deffn
4747
4748 @deffn {Monadic Procedure} console-keymap-service @var{file}
4749 Return a service to load console keymap from @var{file} using
4750 @command{loadkeys} command.
4751 @end deffn
4752
4753
4754 @node Networking Services
4755 @subsubsection Networking Services
4756
4757 The @code{(gnu services networking)} module provides services to configure
4758 the network interface.
4759
4760 @cindex DHCP, networking service
4761 @deffn {Monadic Procedure} dhcp-client-service [#:dhcp @var{isc-dhcp}]
4762 Return a service that runs @var{dhcp}, a Dynamic Host Configuration
4763 Protocol (DHCP) client, on all the non-loopback network interfaces.
4764 @end deffn
4765
4766 @deffn {Monadic Procedure} static-networking-service @var{interface} @var{ip} @
4767 [#:gateway #f] [#:name-services @code{'()}]
4768 Return a service that starts @var{interface} with address @var{ip}. If
4769 @var{gateway} is true, it must be a string specifying the default network
4770 gateway.
4771 @end deffn
4772
4773 @cindex wicd
4774 @deffn {Monadic Procedure} wicd-service [#:wicd @var{wicd}]
4775 Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a
4776 network manager that aims to simplify wired and wireless networking.
4777 @end deffn
4778
4779 @deffn {Monadic Procedure} ntp-service [#:ntp @var{ntp}] @
4780 [#:name-service @var{%ntp-servers}]
4781 Return a service that runs the daemon from @var{ntp}, the
4782 @uref{http://www.ntp.org, Network Time Protocol package}. The daemon will
4783 keep the system clock synchronized with that of @var{servers}.
4784 @end deffn
4785
4786 @defvr {Scheme Variable} %ntp-servers
4787 List of host names used as the default NTP servers.
4788 @end defvr
4789
4790 @deffn {Monadic Procedure} tor-service [#:tor tor]
4791 Return a service to run the @uref{https://torproject.org,Tor} daemon.
4792
4793 The daemon runs with the default settings (in particular the default exit
4794 policy) as the @code{tor} unprivileged user.
4795 @end deffn
4796
4797 @deffn {Monadic Procedure} bitlbee-service [#:bitlbee bitlbee] @
4798 [#:interface "127.0.0.1"] [#:port 6667] @
4799 [#:extra-settings ""]
4800 Return a service that runs @url{http://bitlbee.org,BitlBee}, a daemon that
4801 acts as a gateway between IRC and chat networks.
4802
4803 The daemon will listen to the interface corresponding to the IP address
4804 specified in @var{interface}, on @var{port}. @code{127.0.0.1} means that only
4805 local clients can connect, whereas @code{0.0.0.0} means that connections can
4806 come from any networking interface.
4807
4808 In addition, @var{extra-settings} specifies a string to append to the
4809 configuration file.
4810 @end deffn
4811
4812 Furthermore, @code{(gnu services ssh)} provides the following service.
4813
4814 @deffn {Monadic Procedure} lsh-service [#:host-key "/etc/lsh/host-key"] @
4815 [#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @
4816 [#:allow-empty-passwords? #f] [#:root-login? #f] @
4817 [#:syslog-output? #t] [#:x11-forwarding? #t] @
4818 [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @
4819 [#:public-key-authentication? #t] [#:initialize? #t]
4820 Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}.
4821 @var{host-key} must designate a file containing the host key, and readable
4822 only by root.
4823
4824 When @var{daemonic?} is true, @command{lshd} will detach from the
4825 controlling terminal and log its output to syslogd, unless one sets
4826 @var{syslog-output?} to false. Obviously, it also makes lsh-service
4827 depend on existence of syslogd service. When @var{pid-file?} is true,
4828 @command{lshd} writes its PID to the file called @var{pid-file}.
4829
4830 When @var{initialize?} is true, automatically create the seed and host key
4831 upon service activation if they do not exist yet. This may take long and
4832 require interaction.
4833
4834 When @var{initialize?} is false, it is up to the user to initialize the
4835 randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create
4836 a key pair with the private key stored in file @var{host-key} (@pxref{lshd
4837 basics,,, lsh, LSH Manual}).
4838
4839 When @var{interfaces} is empty, lshd listens for connections on all the
4840 network interfaces; otherwise, @var{interfaces} must be a list of host names
4841 or addresses.
4842
4843 @var{allow-empty-passwords?} specifies whether to accept log-ins with empty
4844 passwords, and @var{root-login?} specifies whether to accept log-ins as
4845 root.
4846
4847 The other options should be self-descriptive.
4848 @end deffn
4849
4850 @defvr {Scheme Variable} %facebook-host-aliases
4851 This variable contains a string for use in @file{/etc/hosts}
4852 (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each
4853 line contains a entry that maps a known server name of the Facebook
4854 on-line service---e.g., @code{www.facebook.com}---to the local
4855 host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}.
4856
4857 This variable is typically used in the @code{hosts-file} field of an
4858 @code{operating-system} declaration (@pxref{operating-system Reference,
4859 @file{/etc/hosts}}):
4860
4861 @example
4862 (use-modules (gnu) (guix))
4863
4864 (operating-system
4865 (host-name "mymachine")
4866 ;; ...
4867 (hosts-file
4868 ;; Create a /etc/hosts file with aliases for "localhost"
4869 ;; and "mymachine", as well as for Facebook servers.
4870 (text-file "hosts"
4871 (string-append (local-host-aliases host-name)
4872 %facebook-host-aliases))))
4873 @end example
4874
4875 This mechanism can prevent programs running locally, such as Web
4876 browsers, from accessing Facebook.
4877 @end defvr
4878
4879 @node X Window
4880 @subsubsection X Window
4881
4882 Support for the X Window graphical display system---specifically
4883 Xorg---is provided by the @code{(gnu services xorg)} module. Note that
4884 there is no @code{xorg-service} procedure. Instead, the X server is
4885 started by the @dfn{login manager}, currently SLiM.
4886
4887 @deffn {Monadic Procedure} slim-service [#:allow-empty-passwords? #f] @
4888 [#:auto-login? #f] [#:default-user ""] [#:startx] @
4889 [#:theme @var{%default-slim-theme}] @
4890 [#:theme-name @var{%default-slim-theme-name}]
4891 Return a service that spawns the SLiM graphical login manager, which in
4892 turn starts the X display server with @var{startx}, a command as returned by
4893 @code{xorg-start-command}.
4894
4895 When @var{allow-empty-passwords?} is true, allow logins with an empty
4896 password. When @var{auto-login?} is true, log in automatically as
4897 @var{default-user}.
4898
4899 If @var{theme} is @code{#f}, the use the default log-in theme; otherwise
4900 @var{theme} must be a gexp denoting the name of a directory containing the
4901 theme to use. In that case, @var{theme-name} specifies the name of the
4902 theme.
4903 @end deffn
4904
4905 @defvr {Scheme Variable} %default-theme
4906 @defvrx {Scheme Variable} %default-theme-name
4907 The G-Expression denoting the default SLiM theme and its name.
4908 @end defvr
4909
4910 @deffn {Monadic Procedure} xorg-start-command [#:guile] @
4911 [#:drivers '()] [#:resolutions '()] [#:xorg-server @var{xorg-server}]
4912 Return a derivation that builds a @var{guile} script to start the X server
4913 from @var{xorg-server}. Usually the X server is started by a login manager.
4914
4915 @var{drivers} must be either the empty list, in which case Xorg chooses a
4916 graphics driver automatically, or a list of driver names that will be tried in
4917 this order---e.g., @code{("modesetting" "vesa")}.
4918
4919 Likewise, when @var{resolutions} is the empty list, Xorg chooses an
4920 appropriate screen resolution; otherwise, it must be a list of
4921 resolutions---e.g., @code{((1024 768) (640 480))}.
4922 @end deffn
4923
4924 @node Various Services
4925 @subsubsection Various Services
4926
4927 The @code{(gnu services lirc)} module provides the following service.
4928
4929 @deffn {Monadic Procedure} lirc-service [#:lirc lirc] @
4930 [#:device #f] [#:driver #f] [#:config-file #f] @
4931 [#:extra-options '()]
4932 Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that
4933 decodes infrared signals from remote controls.
4934
4935 Optionally, @var{device}, @var{driver} and @var{config-file}
4936 (configuration file name) may be specified. See @command{lircd} manual
4937 for details.
4938
4939 Finally, @var{extra-options} is a list of additional command-line options
4940 passed to @command{lircd}.
4941 @end deffn
4942
4943 @code{(gnu services upower)} provides a power-management daemon:
4944
4945 @deffn {Monadic Procedure} upower-service [#:upower @var{upower}] @
4946 [#:watts-up-pro? #f] @
4947 [#:poll-batteries? #t] @
4948 [#:ignore-lid? #f] @
4949 [#:use-percentage-for-policy? #f] @
4950 [#:percentage-low 10] @
4951 [#:percentage-critical 3] @
4952 [#:percentage-action 2] @
4953 [#:time-low 1200] @
4954 [#:time-critical 300] @
4955 [#:time-action 120] @
4956 [#:critical-power-action 'hybrid-sleep]
4957 Return a service that runs @uref{http://upower.freedesktop.org/,
4958 @command{upowerd}}, a system-wide monitor for power consumption and battery
4959 levels, with the given configuration settings. It implements the
4960 @code{org.freedesktop.UPower} D-Bus interface, and is notably used by
4961 GNOME.
4962 @end deffn
4963
4964 @code{(gnu services colord)} provides a color management service:
4965
4966 @deffn {Monadic Procedure} colord-service [#:colord @var{colord}]
4967 Return a service that runs @command{colord}, a system service with a D-Bus
4968 interface to manage the color profiles of input and output devices such as
4969 screens and scanners. It is notably used by the GNOME Color Manager graphical
4970 tool. See @uref{http://www.freedesktop.org/software/colord/, the colord web
4971 site} for more information.
4972 @end deffn
4973
4974 @node Setuid Programs
4975 @subsection Setuid Programs
4976
4977 @cindex setuid programs
4978 Some programs need to run with ``root'' privileges, even when they are
4979 launched by unprivileged users. A notorious example is the
4980 @command{passwd} programs, which can users can run to change their
4981 password, and which requires write access to the @file{/etc/passwd} and
4982 @file{/etc/shadow} files---something normally restricted to root, for
4983 obvious security reasons. To address that, these executables are
4984 @dfn{setuid-root}, meaning that they always run with root privileges
4985 (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual},
4986 for more info about the setuid mechanisms.)
4987
4988 The store itself @emph{cannot} contain setuid programs: that would be a
4989 security issue since any user on the system can write derivations that
4990 populate the store (@pxref{The Store}). Thus, a different mechanism is
4991 used: instead of changing the setuid bit directly on files that are in
4992 the store, we let the system administrator @emph{declare} which programs
4993 should be setuid root.
4994
4995 The @code{setuid-programs} field of an @code{operating-system}
4996 declaration contains a list of G-expressions denoting the names of
4997 programs to be setuid-root (@pxref{Using the Configuration System}).
4998 For instance, the @command{passwd} program, which is part of the Shadow
4999 package, can be designated by this G-expression (@pxref{G-Expressions}):
5000
5001 @example
5002 #~(string-append #$shadow "/bin/passwd")
5003 @end example
5004
5005 A default set of setuid programs is defined by the
5006 @code{%setuid-programs} variable of the @code{(gnu system)} module.
5007
5008 @defvr {Scheme Variable} %setuid-programs
5009 A list of G-expressions denoting common programs that are setuid-root.
5010
5011 The list includes commands such as @command{passwd}, @command{ping},
5012 @command{su}, and @command{sudo}.
5013 @end defvr
5014
5015 Under the hood, the actual setuid programs are created in the
5016 @file{/run/setuid-programs} directory at system activation time. The
5017 files in this directory refer to the ``real'' binaries, which are in the
5018 store.
5019
5020 @node Name Service Switch
5021 @subsection Name Service Switch
5022
5023 @cindex name service switch
5024 @cindex NSS
5025 The @code{(gnu system nss)} module provides bindings to the
5026 configuration file of libc's @dfn{name service switch} or @dfn{NSS}
5027 (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference
5028 Manual}). In a nutshell, the NSS is a mechanism that allows libc to be
5029 extended with new ``name'' lookup methods for system databases, which
5030 includes host names, service names, user accounts, and more (@pxref{Name
5031 Service Switch, System Databases and Name Service Switch,, libc, The GNU
5032 C Library Reference Manual}).
5033
5034 The NSS configuration specifies, for each system database, which lookup
5035 method is to be used, and how the various methods are chained
5036 together---for instance, under which circumstances NSS should try the
5037 next method in the list. The NSS configuration is given in the
5038 @code{name-service-switch} field of @code{operating-system} declarations
5039 (@pxref{operating-system Reference, @code{name-service-switch}}).
5040
5041 @cindex nss-mdns
5042 @cindex .local, host name lookup
5043 As an example, the declaration below configures the NSS to use the
5044 @uref{http://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns}
5045 back-end}, which supports host name lookups over multicast DNS (mDNS)
5046 for host names ending in @code{.local}:
5047
5048 @example
5049 (name-service-switch
5050 (hosts (list %files ;first, check /etc/hosts
5051
5052 ;; If the above did not succeed, try
5053 ;; with 'mdns_minimal'.
5054 (name-service
5055 (name "mdns_minimal")
5056
5057 ;; 'mdns_minimal' is authoritative for
5058 ;; '.local'. When it returns "not found",
5059 ;; no need to try the next methods.
5060 (reaction (lookup-specification
5061 (not-found => return))))
5062
5063 ;; Then fall back to DNS.
5064 (name-service
5065 (name "dns"))
5066
5067 ;; Finally, try with the "full" 'mdns'.
5068 (name-service
5069 (name "mdns")))))
5070 @end example
5071
5072 Note that, in this case, in addition to setting the
5073 @code{name-service-switch} of the @code{operating-system} declaration,
5074 @code{nscd-service} must be told where to find the @code{nss-mdns}
5075 shared library (@pxref{Base Services, @code{nscd-service}}). Since the
5076 @code{nscd} service is part of @var{%base-services}, you may want to
5077 customize it by adding this snippet in the operating system
5078 configuration file:
5079
5080 @example
5081 (use-modules (guix) (gnu))
5082
5083 (define %my-base-services
5084 ;; Replace the default nscd service with one that knows
5085 ;; about nss-mdns.
5086 (map (lambda (mservice)
5087 ;; "Bind" the MSERVICE monadic value to inspect it.
5088 (mlet %store-monad ((service mservice))
5089 (if (member 'nscd (service-provision service))
5090 (nscd-service (nscd-configuration)
5091 #:name-services (list nss-mdns))
5092 mservice)))
5093 %base-services))
5094 @end example
5095
5096 @noindent
5097 @dots{} and then refer to @var{%my-base-services} instead of
5098 @var{%base-services} in the @code{operating-system} declaration.
5099
5100 The reference for name service switch configuration is given below. It
5101 is a direct mapping of the C library's configuration file format, so
5102 please refer to the C library manual for more information (@pxref{NSS
5103 Configuration File,,, libc, The GNU C Library Reference Manual}).
5104 Compared to libc's NSS configuration file format, it has the advantage
5105 not only of adding this warm parenthetic feel that we like, but also
5106 static checks: you'll know about syntax errors and typos as soon as you
5107 run @command{guix system}.
5108
5109 @defvr {Scheme Variable} %default-nss
5110 This is the default name service switch configuration, a
5111 @code{name-service-switch} object.
5112 @end defvr
5113
5114 @deftp {Data Type} name-service-switch
5115
5116 This is the data type representation the configuration of libc's name
5117 service switch (NSS). Each field below represents one of the supported
5118 system databases.
5119
5120 @table @code
5121 @item aliases
5122 @itemx ethers
5123 @itemx group
5124 @itemx gshadow
5125 @itemx hosts
5126 @itemx initgroups
5127 @itemx netgroup
5128 @itemx networks
5129 @itemx password
5130 @itemx public-key
5131 @itemx rpc
5132 @itemx services
5133 @itemx shadow
5134 The system databases handled by the NSS. Each of these fields must be a
5135 list of @code{<name-service>} objects (see below.)
5136 @end table
5137 @end deftp
5138
5139 @deftp {Data Type} name-service
5140
5141 This is the data type representing an actual name service and the
5142 associated lookup action.
5143
5144 @table @code
5145 @item name
5146 A string denoting the name service (@pxref{Services in the NSS
5147 configuration,,, libc, The GNU C Library Reference Manual}).
5148
5149 Note that name services listed here must be visible to nscd. This is
5150 achieved by passing the @code{#:name-services} argument to
5151 @code{nscd-service} the list of packages providing the needed name
5152 services (@pxref{Base Services, @code{nscd-service}}).
5153
5154 @item reaction
5155 An action specified using the @code{lookup-specification} macro
5156 (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library
5157 Reference Manual}). For example:
5158
5159 @example
5160 (lookup-specification (unavailable => continue)
5161 (success => return))
5162 @end example
5163 @end table
5164 @end deftp
5165
5166 @node Initial RAM Disk
5167 @subsection Initial RAM Disk
5168
5169 @cindex initial RAM disk (initrd)
5170 @cindex initrd (initial RAM disk)
5171 For bootstrapping purposes, the Linux-Libre kernel is passed an
5172 @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary
5173 root file system, as well as an initialization script. The latter is
5174 responsible for mounting the real root file system, and for loading any
5175 kernel modules that may be needed to achieve that.
5176
5177 The @code{initrd} field of an @code{operating-system} declaration allows
5178 you to specify which initrd you would like to use. The @code{(gnu
5179 system linux-initrd)} module provides two ways to build an initrd: the
5180 high-level @code{base-initrd} procedure, and the low-level
5181 @code{expression->initrd} procedure.
5182
5183 The @code{base-initrd} procedure is intended to cover most common uses.
5184 For example, if you want to add a bunch of kernel modules to be loaded
5185 at boot time, you can define the @code{initrd} field of the operating
5186 system declaration like this:
5187
5188 @example
5189 (initrd (lambda (file-systems . rest)
5190 ;; Create a standard initrd that has modules "foo.ko"
5191 ;; and "bar.ko", as well as their dependencies, in
5192 ;; addition to the modules available by default.
5193 (apply base-initrd file-systems
5194 #:extra-modules '("foo" "bar")
5195 rest)))
5196 @end example
5197
5198 The @code{base-initrd} procedure also handles common use cases that
5199 involves using the system as a QEMU guest, or as a ``live'' system whose
5200 root file system is volatile.
5201
5202 @deffn {Monadic Procedure} base-initrd @var{file-systems} @
5203 [#:qemu-networking? #f] [#:virtio? #f] [#:volatile-root? #f] @
5204 [#:extra-modules '()] [#:mapped-devices '()]
5205 Return a monadic derivation that builds a generic initrd. @var{file-systems} is
5206 a list of file-systems to be mounted by the initrd, possibly in addition to
5207 the root file system specified on the kernel command line via @code{--root}.
5208 @var{mapped-devices} is a list of device mappings to realize before
5209 @var{file-systems} are mounted (@pxref{Mapped Devices}).
5210
5211 When @var{qemu-networking?} is true, set up networking with the standard QEMU
5212 parameters. When @var{virtio?} is true, load additional modules so the initrd can
5213 be used as a QEMU guest with para-virtualized I/O drivers.
5214
5215 When @var{volatile-root?} is true, the root file system is writable but any changes
5216 to it are lost.
5217
5218 The initrd is automatically populated with all the kernel modules necessary
5219 for @var{file-systems} and for the given options. However, additional kernel
5220 modules can be listed in @var{extra-modules}. They will be added to the initrd, and
5221 loaded at boot time in the order in which they appear.
5222 @end deffn
5223
5224 Needless to say, the initrds we produce and use embed a
5225 statically-linked Guile, and the initialization program is a Guile
5226 program. That gives a lot of flexibility. The
5227 @code{expression->initrd} procedure builds such an initrd, given the
5228 program to run in that initrd.
5229
5230 @deffn {Monadic Procedure} expression->initrd @var{exp} @
5231 [#:guile %guile-static-stripped] [#:name "guile-initrd"] @
5232 [#:modules '()]
5233 Return a derivation that builds a Linux initrd (a gzipped cpio archive)
5234 containing @var{guile} and that evaluates @var{exp}, a G-expression,
5235 upon booting. All the derivations referenced by @var{exp} are
5236 automatically copied to the initrd.
5237
5238 @var{modules} is a list of Guile module names to be embedded in the
5239 initrd.
5240 @end deffn
5241
5242 @node GRUB Configuration
5243 @subsection GRUB Configuration
5244
5245 @cindex GRUB
5246 @cindex boot loader
5247
5248 The operating system uses GNU@tie{}GRUB as its boot loader
5249 (@pxref{Overview, overview of GRUB,, grub, GNU GRUB Manual}). It is
5250 configured using @code{grub-configuration} declarations. This data type
5251 is exported by the @code{(gnu system grub)} module, and described below.
5252
5253 @deftp {Data Type} grub-configuration
5254 The type of a GRUB configuration declaration.
5255
5256 @table @asis
5257
5258 @item @code{device}
5259 This is a string denoting the boot device. It must be a device name
5260 understood by the @command{grub-install} command, such as
5261 @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub,
5262 GNU GRUB Manual}).
5263
5264 @item @code{menu-entries} (default: @code{()})
5265 A possibly empty list of @code{menu-entry} objects (see below), denoting
5266 entries to appear in the GRUB boot menu, in addition to the current
5267 system entry and the entry pointing to previous system generations.
5268
5269 @item @code{default-entry} (default: @code{0})
5270 The index of the default boot menu entry. Index 0 is for the current
5271 system's entry.
5272
5273 @item @code{timeout} (default: @code{5})
5274 The number of seconds to wait for keyboard input before booting. Set to
5275 0 to boot immediately, and to -1 to wait indefinitely.
5276
5277 @item @code{theme} (default: @var{%default-theme})
5278 The @code{grub-theme} object describing the theme to use.
5279 @end table
5280
5281 @end deftp
5282
5283 Should you want to list additional boot menu entries @i{via} the
5284 @code{menu-entries} field above, you will need to create them with the
5285 @code{menu-entry} form:
5286
5287 @deftp {Data Type} menu-entry
5288 The type of an entry in the GRUB boot menu.
5289
5290 @table @asis
5291
5292 @item @code{label}
5293 The label to show in the menu---e.g., @code{"GNU"}.
5294
5295 @item @code{linux}
5296 The Linux kernel to boot.
5297
5298 @item @code{linux-arguments} (default: @code{()})
5299 The list of extra Linux kernel command-line arguments---e.g.,
5300 @code{("console=ttyS0")}.
5301
5302 @item @code{initrd}
5303 A G-Expression or string denoting the file name of the initial RAM disk
5304 to use (@pxref{G-Expressions}).
5305
5306 @end table
5307 @end deftp
5308
5309 @c FIXME: Write documentation once it's stable.
5310 Themes are created using the @code{grub-theme} form, which is not
5311 documented yet.
5312
5313 @defvr {Scheme Variable} %default-theme
5314 This is the default GRUB theme used by the operating system, with a
5315 fancy background image displaying the GNU and Guix logos.
5316 @end defvr
5317
5318
5319 @node Invoking guix system
5320 @subsection Invoking @code{guix system}
5321
5322 Once you have written an operating system declaration, as seen in the
5323 previous section, it can be @dfn{instantiated} using the @command{guix
5324 system} command. The synopsis is:
5325
5326 @example
5327 guix system @var{options}@dots{} @var{action} @var{file}
5328 @end example
5329
5330 @var{file} must be the name of a file containing an
5331 @code{operating-system} declaration. @var{action} specifies how the
5332 operating system is instantiate. Currently the following values are
5333 supported:
5334
5335 @table @code
5336 @item reconfigure
5337 Build the operating system described in @var{file}, activate it, and
5338 switch to it@footnote{This action is usable only on systems already
5339 running GNU.}.
5340
5341 This effects all the configuration specified in @var{file}: user
5342 accounts, system services, global package list, setuid programs, etc.
5343
5344 It also adds a GRUB menu entry for the new OS configuration, and moves
5345 entries for older configurations to a submenu---unless
5346 @option{--no-grub} is passed.
5347
5348 @c The paragraph below refers to the problem discussed at
5349 @c <http://lists.gnu.org/archive/html/guix-devel/2014-08/msg00057.html>.
5350 It is highly recommended to run @command{guix pull} once before you run
5351 @command{guix system reconfigure} for the first time (@pxref{Invoking
5352 guix pull}). Failing to do that you would see an older version of Guix
5353 once @command{reconfigure} has completed.
5354
5355 @item build
5356 Build the operating system's derivation, which includes all the
5357 configuration files and programs needed to boot and run the system.
5358 This action does not actually install anything.
5359
5360 @item init
5361 Populate the given directory with all the files necessary to run the
5362 operating system specified in @var{file}. This is useful for first-time
5363 installations of GSD. For instance:
5364
5365 @example
5366 guix system init my-os-config.scm /mnt
5367 @end example
5368
5369 copies to @file{/mnt} all the store items required by the configuration
5370 specified in @file{my-os-config.scm}. This includes configuration
5371 files, packages, and so on. It also creates other essential files
5372 needed for the system to operate correctly---e.g., the @file{/etc},
5373 @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file.
5374
5375 This command also installs GRUB on the device specified in
5376 @file{my-os-config}, unless the @option{--no-grub} option was passed.
5377
5378 @item vm
5379 @cindex virtual machine
5380 @cindex VM
5381 Build a virtual machine that contain the operating system declared in
5382 @var{file}, and return a script to run that virtual machine (VM).
5383 Arguments given to the script are passed as is to QEMU.
5384
5385 The VM shares its store with the host system.
5386
5387 Additional file systems can be shared between the host and the VM using
5388 the @code{--share} and @code{--expose} command-line options: the former
5389 specifies a directory to be shared with write access, while the latter
5390 provides read-only access to the shared directory.
5391
5392 The example below creates a VM in which the user's home directory is
5393 accessible read-only, and where the @file{/exchange} directory is a
5394 read-write mapping of the host's @file{$HOME/tmp}:
5395
5396 @example
5397 guix system vm my-config.scm \
5398 --expose=$HOME --share=$HOME/tmp=/exchange
5399 @end example
5400
5401 On GNU/Linux, the default is to boot directly to the kernel; this has
5402 the advantage of requiring only a very tiny root disk image since the
5403 host's store can then be mounted.
5404
5405 The @code{--full-boot} option forces a complete boot sequence, starting
5406 with the bootloader. This requires more disk space since a root image
5407 containing at least the kernel, initrd, and bootloader data files must
5408 be created. The @code{--image-size} option can be used to specify the
5409 image's size.
5410
5411 @item vm-image
5412 @itemx disk-image
5413 Return a virtual machine or disk image of the operating system declared
5414 in @var{file} that stands alone. Use the @option{--image-size} option
5415 to specify the size of the image.
5416
5417 When using @code{vm-image}, the returned image is in qcow2 format, which
5418 the QEMU emulator can efficiently use.
5419
5420 When using @code{disk-image}, a raw disk image is produced; it can be
5421 copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is
5422 the device corresponding to a USB stick, one can copy the image on it
5423 using the following command:
5424
5425 @example
5426 # dd if=$(guix system disk-image my-os.scm) of=/dev/sdc
5427 @end example
5428
5429 @end table
5430
5431 @var{options} can contain any of the common build options provided by
5432 @command{guix build} (@pxref{Invoking guix build}). In addition,
5433 @var{options} can contain one of the following:
5434
5435 @table @option
5436 @item --system=@var{system}
5437 @itemx -s @var{system}
5438 Attempt to build for @var{system} instead of the host's system type.
5439 This works as per @command{guix build} (@pxref{Invoking guix build}).
5440
5441 @item --image-size=@var{size}
5442 For the @code{vm-image} and @code{disk-image} actions, create an image
5443 of the given @var{size}. @var{size} may be a number of bytes, or it may
5444 include a unit as a suffix (@pxref{Block size, size specifications,,
5445 coreutils, GNU Coreutils}).
5446 @end table
5447
5448 Note that all the actions above, except @code{build} and @code{init},
5449 rely on KVM support in the Linux-Libre kernel. Specifically, the
5450 machine should have hardware virtualization support, the corresponding
5451 KVM kernel module should be loaded, and the @file{/dev/kvm} device node
5452 must exist and be readable and writable by the user and by the daemon's
5453 build users.
5454
5455 @node Defining Services
5456 @subsection Defining Services
5457
5458 The @code{(gnu services @dots{})} modules define several procedures that allow
5459 users to declare the operating system's services (@pxref{Using the
5460 Configuration System}). These procedures are @emph{monadic
5461 procedures}---i.e., procedures that return a monadic value in the store
5462 monad (@pxref{The Store Monad}). For examples of such procedures,
5463 @xref{Services}.
5464
5465 @cindex service definition
5466 The monadic value returned by those procedures is a @dfn{service
5467 definition}---a structure as returned by the @code{service} form.
5468 Service definitions specifies the inputs the service depends on, and an
5469 expression to start and stop the service. Behind the scenes, service
5470 definitions are ``translated'' into the form suitable for the
5471 configuration file of dmd, the init system (@pxref{Services,,, dmd, GNU
5472 dmd Manual}).
5473
5474 As an example, here is what the @code{nscd-service} procedure looks
5475 like:
5476
5477 @lisp
5478 (define (nscd-service)
5479 (with-monad %store-monad
5480 (return (service
5481 (documentation "Run libc's name service cache daemon.")
5482 (provision '(nscd))
5483 (activate #~(begin
5484 (use-modules (guix build utils))
5485 (mkdir-p "/var/run/nscd")))
5486 (start #~(make-forkexec-constructor
5487 (string-append #$glibc "/sbin/nscd")
5488 "-f" "/dev/null" "--foreground"))
5489 (stop #~(make-kill-destructor))
5490 (respawn? #f)))))
5491 @end lisp
5492
5493 @noindent
5494 The @code{activate}, @code{start}, and @code{stop} fields are G-expressions
5495 (@pxref{G-Expressions}). The @code{activate} field contains a script to
5496 run at ``activation'' time; it makes sure that the @file{/var/run/nscd}
5497 directory exists before @command{nscd} is started.
5498
5499 The @code{start} and @code{stop} fields refer to dmd's facilities to
5500 start and stop processes (@pxref{Service De- and Constructors,,, dmd,
5501 GNU dmd Manual}). The @code{provision} field specifies the name under
5502 which this service is known to dmd, and @code{documentation} specifies
5503 on-line documentation. Thus, the commands @command{deco start ncsd},
5504 @command{deco stop nscd}, and @command{deco doc nscd} will do what you
5505 would expect (@pxref{Invoking deco,,, dmd, GNU dmd Manual}).
5506
5507
5508 @node Installing Debugging Files
5509 @section Installing Debugging Files
5510
5511 @cindex debugging files
5512 Program binaries, as produced by the GCC compilers for instance, are
5513 typically written in the ELF format, with a section containing
5514 @dfn{debugging information}. Debugging information is what allows the
5515 debugger, GDB, to map binary code to source code; it is required to
5516 debug a compiled program in good conditions.
5517
5518 The problem with debugging information is that is takes up a fair amount
5519 of disk space. For example, debugging information for the GNU C Library
5520 weighs in at more than 60 MiB. Thus, as a user, keeping all the
5521 debugging info of all the installed programs is usually not an option.
5522 Yet, space savings should not come at the cost of an impediment to
5523 debugging---especially in the GNU system, which should make it easier
5524 for users to exert their computing freedom (@pxref{GNU Distribution}).
5525
5526 Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a
5527 mechanism that allows users to get the best of both worlds: debugging
5528 information can be stripped from the binaries and stored in separate
5529 files. GDB is then able to load debugging information from those files,
5530 when they are available (@pxref{Separate Debug Files,,, gdb, Debugging
5531 with GDB}).
5532
5533 The GNU distribution takes advantage of this by storing debugging
5534 information in the @code{lib/debug} sub-directory of a separate package
5535 output unimaginatively called @code{debug} (@pxref{Packages with
5536 Multiple Outputs}). Users can choose to install the @code{debug} output
5537 of a package when they need it. For instance, the following command
5538 installs the debugging information for the GNU C Library and for GNU
5539 Guile:
5540
5541 @example
5542 guix package -i glibc:debug guile:debug
5543 @end example
5544
5545 GDB must then be told to look for debug files in the user's profile, by
5546 setting the @code{debug-file-directory} variable (consider setting it
5547 from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with
5548 GDB}):
5549
5550 @example
5551 (gdb) set debug-file-directory ~/.guix-profile/lib/debug
5552 @end example
5553
5554 From there on, GDB will pick up debugging information from the
5555 @code{.debug} files under @file{~/.guix-profile/lib/debug}.
5556
5557 In addition, you will most likely want GDB to be able to show the source
5558 code being debugged. To do that, you will have to unpack the source
5559 code of the package of interest (obtained with @code{guix build
5560 --source}, @pxref{Invoking guix build}), and to point GDB to that source
5561 directory using the @code{directory} command (@pxref{Source Path,
5562 @code{directory},, gdb, Debugging with GDB}).
5563
5564 @c XXX: keep me up-to-date
5565 The @code{debug} output mechanism in Guix is implemented by the
5566 @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is
5567 opt-in---debugging information is available only for those packages
5568 whose definition explicitly declares a @code{debug} output. This may be
5569 changed to opt-out in the future, if our build farm servers can handle
5570 the load. To check whether a package has a @code{debug} output, use
5571 @command{guix package --list-available} (@pxref{Invoking guix package}).
5572
5573
5574 @node Security Updates
5575 @section Security Updates
5576
5577 @quotation Note
5578 As of version @value{VERSION}, the feature described in this section is
5579 experimental.
5580 @end quotation
5581
5582 @cindex security updates
5583 Occasionally, important security vulnerabilities are discovered in core
5584 software packages and must be patched. Guix follows a functional
5585 package management discipline (@pxref{Introduction}), which implies
5586 that, when a package is changed, @emph{every package that depends on it}
5587 must be rebuilt. This can significantly slow down the deployment of
5588 fixes in core packages such as libc or Bash, since basically the whole
5589 distribution would need to be rebuilt. Using pre-built binaries helps
5590 (@pxref{Substitutes}), but deployment may still take more time than
5591 desired.
5592
5593 @cindex grafts
5594 To address that, Guix implements @dfn{grafts}, a mechanism that allows
5595 for fast deployment of critical updates without the costs associated
5596 with a whole-distribution rebuild. The idea is to rebuild only the
5597 package that needs to be patched, and then to ``graft'' it onto packages
5598 explicitly installed by the user and that were previously referring to
5599 the original package. The cost of grafting is typically very low, and
5600 order of magnitudes lower than a full rebuild of the dependency chain.
5601
5602 @cindex replacements of packages, for grafts
5603 For instance, suppose a security update needs to be applied to Bash.
5604 Guix developers will provide a package definition for the ``fixed''
5605 Bash, say @var{bash-fixed}, in the usual way (@pxref{Defining
5606 Packages}). Then, the original package definition is augmented with a
5607 @code{replacement} field pointing to the package containing the bug fix:
5608
5609 @example
5610 (define bash
5611 (package
5612 (name "bash")
5613 ;; @dots{}
5614 (replacement bash-fixed)))
5615 @end example
5616
5617 From there on, any package depending directly or indirectly on Bash that
5618 is installed will automatically be ``rewritten'' to refer to
5619 @var{bash-fixed} instead of @var{bash}. This grafting process takes
5620 time proportional to the size of the package, but expect less than a
5621 minute for an ``average'' package on a recent machine.
5622
5623 Currently, the graft and the package it replaces (@var{bash-fixed} and
5624 @var{bash} in the example above) must have the exact same @code{name}
5625 and @code{version} fields. This restriction mostly comes from the fact
5626 that grafting works by patching files, including binary files, directly.
5627 Other restrictions may apply: for instance, when adding a graft to a
5628 package providing a shared library, the original shared library and its
5629 replacement must have the same @code{SONAME} and be binary-compatible.
5630
5631
5632 @node Package Modules
5633 @section Package Modules
5634
5635 From a programming viewpoint, the package definitions of the
5636 GNU distribution are provided by Guile modules in the @code{(gnu packages
5637 @dots{})} name space@footnote{Note that packages under the @code{(gnu
5638 packages @dots{})} module name space are not necessarily ``GNU
5639 packages''. This module naming scheme follows the usual Guile module
5640 naming convention: @code{gnu} means that these modules are distributed
5641 as part of the GNU system, and @code{packages} identifies modules that
5642 define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile
5643 Reference Manual}). For instance, the @code{(gnu packages emacs)}
5644 module exports a variable named @code{emacs}, which is bound to a
5645 @code{<package>} object (@pxref{Defining Packages}).
5646
5647 The @code{(gnu packages @dots{})} module name space is
5648 automatically scanned for packages by the command-line tools. For
5649 instance, when running @code{guix package -i emacs}, all the @code{(gnu
5650 packages @dots{})} modules are scanned until one that exports a package
5651 object whose name is @code{emacs} is found. This package search
5652 facility is implemented in the @code{(gnu packages)} module.
5653
5654 @cindex customization, of packages
5655 @cindex package module search path
5656 Users can store package definitions in modules with different
5657 names---e.g., @code{(my-packages emacs)}@footnote{Note that the file
5658 name and module name must match. @xref{Modules and the File System,,,
5659 guile, GNU Guile Reference Manual}, for details.} These package definitions
5660 will not be visible by default. Thus, users can invoke commands such as
5661 @command{guix package} and @command{guix build} have to be used with the
5662 @code{-e} option so that they know where to find the package, or use the
5663 @code{-L} option of these commands to make those modules visible
5664 (@pxref{Invoking guix build, @code{--load-path}}), or define the
5665 @code{GUIX_PACKAGE_PATH} environment variable. This environment
5666 variable makes it easy to extend or customize the distribution and is
5667 honored by all the user interfaces.
5668
5669 @defvr {Environment Variable} GUIX_PACKAGE_PATH
5670 This is a colon-separated list of directories to search for package
5671 modules. Directories listed in this variable take precedence over the
5672 distribution's own modules.
5673 @end defvr
5674
5675 The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}:
5676 each package is built based solely on other packages in the
5677 distribution. The root of this dependency graph is a small set of
5678 @dfn{bootstrap binaries}, provided by the @code{(gnu packages
5679 bootstrap)} module. For more information on bootstrapping,
5680 @pxref{Bootstrapping}.
5681
5682 @node Packaging Guidelines
5683 @section Packaging Guidelines
5684
5685 The GNU distribution is nascent and may well lack some of your favorite
5686 packages. This section describes how you can help make the distribution
5687 grow. @xref{Contributing}, for additional information on how you can
5688 help.
5689
5690 Free software packages are usually distributed in the form of
5691 @dfn{source code tarballs}---typically @file{tar.gz} files that contain
5692 all the source files. Adding a package to the distribution means
5693 essentially two things: adding a @dfn{recipe} that describes how to
5694 build the package, including a list of other packages required to build
5695 it, and adding @dfn{package meta-data} along with that recipe, such as a
5696 description and licensing information.
5697
5698 In Guix all this information is embodied in @dfn{package definitions}.
5699 Package definitions provide a high-level view of the package. They are
5700 written using the syntax of the Scheme programming language; in fact,
5701 for each package we define a variable bound to the package definition,
5702 and export that variable from a module (@pxref{Package Modules}).
5703 However, in-depth Scheme knowledge is @emph{not} a prerequisite for
5704 creating packages. For more information on package definitions,
5705 @pxref{Defining Packages}.
5706
5707 Once a package definition is in place, stored in a file in the Guix
5708 source tree, it can be tested using the @command{guix build} command
5709 (@pxref{Invoking guix build}). For example, assuming the new package is
5710 called @code{gnew}, you may run this command from the Guix build tree:
5711
5712 @example
5713 ./pre-inst-env guix build gnew --keep-failed
5714 @end example
5715
5716 Using @code{--keep-failed} makes it easier to debug build failures since
5717 it provides access to the failed build tree. Another useful
5718 command-line option when debugging is @code{--log-file}, to access the
5719 build log.
5720
5721 If the package is unknown to the @command{guix} command, it may be that
5722 the source file contains a syntax error, or lacks a @code{define-public}
5723 clause to export the package variable. To figure it out, you may load
5724 the module from Guile to get more information about the actual error:
5725
5726 @example
5727 ./pre-inst-env guile -c '(use-modules (gnu packages gnew))'
5728 @end example
5729
5730 Once your package builds correctly, please send us a patch
5731 (@pxref{Contributing}). Well, if you need help, we will be happy to
5732 help you too. Once the patch is committed in the Guix repository, the
5733 new package automatically gets built on the supported platforms by
5734 @url{http://hydra.gnu.org/jobset/gnu/master, our continuous integration
5735 system}.
5736
5737 @cindex substituter
5738 Users can obtain the new package definition simply by running
5739 @command{guix pull} (@pxref{Invoking guix pull}). When
5740 @code{hydra.gnu.org} is done building the package, installing the
5741 package automatically downloads binaries from there
5742 (@pxref{Substitutes}). The only place where human intervention is
5743 needed is to review and apply the patch.
5744
5745
5746 @menu
5747 * Software Freedom:: What may go into the distribution.
5748 * Package Naming:: What's in a name?
5749 * Version Numbers:: When the name is not enough.
5750 * Python Modules:: Taming the snake.
5751 * Perl Modules:: Little pearls.
5752 * Fonts:: Fond of fonts.
5753 @end menu
5754
5755 @node Software Freedom
5756 @subsection Software Freedom
5757
5758 @c Adapted from http://www.gnu.org/philosophy/philosophy.html.
5759
5760 The GNU operating system has been developed so that users can have
5761 freedom in their computing. GNU is @dfn{free software}, meaning that
5762 users have the @url{http://www.gnu.org/philosophy/free-sw.html,four
5763 essential freedoms}: to run the program, to study and change the program
5764 in source code form, to redistribute exact copies, and to distribute
5765 modified versions. Packages found in the GNU distribution provide only
5766 software that conveys these four freedoms.
5767
5768 In addition, the GNU distribution follow the
5769 @url{http://www.gnu.org/distros/free-system-distribution-guidelines.html,free
5770 software distribution guidelines}. Among other things, these guidelines
5771 reject non-free firmware, recommendations of non-free software, and
5772 discuss ways to deal with trademarks and patents.
5773
5774 Some packages contain a small and optional subset that violates the
5775 above guidelines, for instance because this subset is itself non-free
5776 code. When that happens, the offending items are removed with
5777 appropriate patches or code snippets in the package definition's
5778 @code{origin} form (@pxref{Defining Packages}). That way, @code{guix
5779 build --source} returns the ``freed'' source rather than the unmodified
5780 upstream source.
5781
5782
5783 @node Package Naming
5784 @subsection Package Naming
5785
5786 A package has actually two names associated with it:
5787 First, there is the name of the @emph{Scheme variable}, the one following
5788 @code{define-public}. By this name, the package can be made known in the
5789 Scheme code, for instance as input to another package. Second, there is
5790 the string in the @code{name} field of a package definition. This name
5791 is used by package management commands such as
5792 @command{guix package} and @command{guix build}.
5793
5794 Both are usually the same and correspond to the lowercase conversion of
5795 the project name chosen upstream, with underscores replaced with
5796 hyphens. For instance, GNUnet is available as @code{gnunet}, and
5797 SDL_net as @code{sdl-net}.
5798
5799 We do not add @code{lib} prefixes for library packages, unless these are
5800 already part of the official project name. But @pxref{Python
5801 Modules} and @ref{Perl Modules} for special rules concerning modules for
5802 the Python and Perl languages.
5803
5804 Font package names are handled differently, @pxref{Fonts}.
5805
5806
5807 @node Version Numbers
5808 @subsection Version Numbers
5809
5810 We usually package only the latest version of a given free software
5811 project. But sometimes, for instance for incompatible library versions,
5812 two (or more) versions of the same package are needed. These require
5813 different Scheme variable names. We use the name as defined
5814 in @ref{Package Naming}
5815 for the most recent version; previous versions use the same name, suffixed
5816 by @code{-} and the smallest prefix of the version number that may
5817 distinguish the two versions.
5818
5819 The name inside the package definition is the same for all versions of a
5820 package and does not contain any version number.
5821
5822 For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:
5823
5824 @example
5825 (define-public gtk+
5826 (package
5827 (name "gtk+")
5828 (version "3.9.12")
5829 ...))
5830 (define-public gtk+-2
5831 (package
5832 (name "gtk+")
5833 (version "2.24.20")
5834 ...))
5835 @end example
5836 If we also wanted GTK+ 3.8.2, this would be packaged as
5837 @example
5838 (define-public gtk+-3.8
5839 (package
5840 (name "gtk+")
5841 (version "3.8.2")
5842 ...))
5843 @end example
5844
5845
5846 @node Python Modules
5847 @subsection Python Modules
5848
5849 We currently package Python 2 and Python 3, under the Scheme variable names
5850 @code{python-2} and @code{python} as explained in @ref{Version Numbers}.
5851 To avoid confusion and naming clashes with other programming languages, it
5852 seems desirable that the name of a package for a Python module contains
5853 the word @code{python}.
5854
5855 Some modules are compatible with only one version of Python, others with both.
5856 If the package Foo compiles only with Python 3, we name it
5857 @code{python-foo}; if it compiles only with Python 2, we name it
5858 @code{python2-foo}. If it is compatible with both versions, we create two
5859 packages with the corresponding names.
5860
5861 If a project already contains the word @code{python}, we drop this;
5862 for instance, the module python-dateutil is packaged under the names
5863 @code{python-dateutil} and @code{python2-dateutil}.
5864
5865
5866 @node Perl Modules
5867 @subsection Perl Modules
5868
5869 Perl programs standing for themselves are named as any other package,
5870 using the lowercase upstream name.
5871 For Perl packages containing a single class, we use the lowercase class name,
5872 replace all occurrences of @code{::} by dashes and prepend the prefix
5873 @code{perl-}.
5874 So the class @code{XML::Parser} becomes @code{perl-xml-parser}.
5875 Modules containing several classes keep their lowercase upstream name and
5876 are also prepended by @code{perl-}. Such modules tend to have the word
5877 @code{perl} somewhere in their name, which gets dropped in favor of the
5878 prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}.
5879
5880
5881 @node Fonts
5882 @subsection Fonts
5883
5884 For fonts that are in general not installed by a user for typesetting
5885 purposes, or that are distributed as part of a larger software package,
5886 we rely on the general packaging rules for software; for instance, this
5887 applies to the fonts delivered as part of the X.Org system or fonts that
5888 are part of TeX Live.
5889
5890 To make it easier for a user to search for fonts, names for other packages
5891 containing only fonts are constructed as follows, independently of the
5892 upstream package name.
5893
5894 The name of a package containing only one font family starts with
5895 @code{font-}; it is followed by the foundry name and a dash @code{-}
5896 if the foundry is known, and the font family name, in which spaces are
5897 replaced by dashes (and as usual, all upper case letters are transformed
5898 to lower case).
5899 For example, the Gentium font family by SIL is packaged under the name
5900 @code{font-sil-gentium}.
5901
5902 For a package containing several font families, the name of the collection
5903 is used in the place of the font family name.
5904 For instance, the Liberation fonts consist of three families,
5905 Liberation Sans, Liberation Serif and Liberation Mono.
5906 These could be packaged separately under the names
5907 @code{font-liberation-sans} and so on; but as they are distributed together
5908 under a common name, we prefer to package them together as
5909 @code{font-liberation}.
5910
5911 In the case where several formats of the same font family or font collection
5912 are packaged separately, a short form of the format, prepended by a dash,
5913 is added to the package name. We use @code{-ttf} for TrueType fonts,
5914 @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1
5915 fonts.
5916
5917
5918
5919 @node Bootstrapping
5920 @section Bootstrapping
5921
5922 @c Adapted from the ELS 2013 paper.
5923
5924 @cindex bootstrapping
5925
5926 Bootstrapping in our context refers to how the distribution gets built
5927 ``from nothing''. Remember that the build environment of a derivation
5928 contains nothing but its declared inputs (@pxref{Introduction}). So
5929 there's an obvious chicken-and-egg problem: how does the first package
5930 get built? How does the first compiler get compiled? Note that this is
5931 a question of interest only to the curious hacker, not to the regular
5932 user, so you can shamelessly skip this section if you consider yourself
5933 a ``regular user''.
5934
5935 @cindex bootstrap binaries
5936 The GNU system is primarily made of C code, with libc at its core. The
5937 GNU build system itself assumes the availability of a Bourne shell and
5938 command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and
5939 `grep'. Furthermore, build programs---programs that run
5940 @code{./configure}, @code{make}, etc.---are written in Guile Scheme
5941 (@pxref{Derivations}). Consequently, to be able to build anything at
5942 all, from scratch, Guix relies on pre-built binaries of Guile, GCC,
5943 Binutils, libc, and the other packages mentioned above---the
5944 @dfn{bootstrap binaries}.
5945
5946 These bootstrap binaries are ``taken for granted'', though we can also
5947 re-create them if needed (more on that later).
5948
5949 @unnumberedsubsec Preparing to Use the Bootstrap Binaries
5950
5951 @c As of Emacs 24.3, Info-mode displays the image, but since it's a
5952 @c large image, it's hard to scroll. Oh well.
5953 @image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}
5954
5955 The figure above shows the very beginning of the dependency graph of the
5956 distribution, corresponding to the package definitions of the @code{(gnu
5957 packages bootstrap)} module. At this level of detail, things are
5958 slightly complex. First, Guile itself consists of an ELF executable,
5959 along with many source and compiled Scheme files that are dynamically
5960 loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz}
5961 tarball shown in this graph. This tarball is part of Guix's ``source''
5962 distribution, and gets inserted into the store with @code{add-to-store}
5963 (@pxref{The Store}).
5964
5965 But how do we write a derivation that unpacks this tarball and adds it
5966 to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv}
5967 derivation---the first one that gets built---uses @code{bash} as its
5968 builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls
5969 @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar},
5970 @file{xz}, and @file{mkdir} are statically-linked binaries, also part of
5971 the Guix source distribution, whose sole purpose is to allow the Guile
5972 tarball to be unpacked.
5973
5974 Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning
5975 Guile that can be used to run subsequent build programs. Its first task
5976 is to download tarballs containing the other pre-built binaries---this
5977 is what the @code{.tar.xz.drv} derivations do. Guix modules such as
5978 @code{ftp-client.scm} are used for this purpose. The
5979 @code{module-import.drv} derivations import those modules in a directory
5980 in the store, using the original layout. The
5981 @code{module-import-compiled.drv} derivations compile those modules, and
5982 write them in an output directory with the right layout. This
5983 corresponds to the @code{#:modules} argument of
5984 @code{build-expression->derivation} (@pxref{Derivations}).
5985
5986 Finally, the various tarballs are unpacked by the
5987 derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv},
5988 etc., at which point we have a working C tool chain.
5989
5990
5991 @unnumberedsubsec Building the Build Tools
5992
5993 @c TODO: Add a package-level dependency graph generated from (gnu
5994 @c packages base).
5995
5996 Bootstrapping is complete when we have a full tool chain that does not
5997 depend on the pre-built bootstrap tools discussed above. This
5998 no-dependency requirement is verified by checking whether the files of
5999 the final tool chain contain references to the @file{/gnu/store}
6000 directories of the bootstrap inputs. The process that leads to this
6001 ``final'' tool chain is described by the package definitions found in
6002 the @code{(gnu packages commencement)} module.
6003
6004 @c See <http://lists.gnu.org/archive/html/gnu-system-discuss/2012-10/msg00000.html>.
6005 The first tool that gets built with the bootstrap binaries is
6006 GNU Make, which is a prerequisite for all the following packages.
6007 From there Findutils and Diffutils get built.
6008
6009 Then come the first-stage Binutils and GCC, built as pseudo cross
6010 tools---i.e., with @code{--target} equal to @code{--host}. They are
6011 used to build libc. Thanks to this cross-build trick, this libc is
6012 guaranteed not to hold any reference to the initial tool chain.
6013
6014 From there the final Binutils and GCC are built. GCC uses @code{ld}
6015 from the final Binutils, and links programs against the just-built libc.
6016 This tool chain is used to build the other packages used by Guix and by
6017 the GNU Build System: Guile, Bash, Coreutils, etc.
6018
6019 And voilà! At this point we have the complete set of build tools that
6020 the GNU Build System expects. These are in the @code{%final-inputs}
6021 variable of the @code{(gnu packages commencement)} module, and are
6022 implicitly used by any package that uses @code{gnu-build-system}
6023 (@pxref{Build Systems, @code{gnu-build-system}}).
6024
6025
6026 @unnumberedsubsec Building the Bootstrap Binaries
6027
6028 Because the final tool chain does not depend on the bootstrap binaries,
6029 those rarely need to be updated. Nevertheless, it is useful to have an
6030 automated way to produce them, should an update occur, and this is what
6031 the @code{(gnu packages make-bootstrap)} module provides.
6032
6033 The following command builds the tarballs containing the bootstrap
6034 binaries (Guile, Binutils, GCC, libc, and a tarball containing a mixture
6035 of Coreutils and other basic command-line tools):
6036
6037 @example
6038 guix build bootstrap-tarballs
6039 @end example
6040
6041 The generated tarballs are those that should be referred to in the
6042 @code{(gnu packages bootstrap)} module mentioned at the beginning of
6043 this section.
6044
6045 Still here? Then perhaps by now you've started to wonder: when do we
6046 reach a fixed point? That is an interesting question! The answer is
6047 unknown, but if you would like to investigate further (and have
6048 significant computational and storage resources to do so), then let us
6049 know.
6050
6051 @node Porting
6052 @section Porting to a New Platform
6053
6054 As discussed above, the GNU distribution is self-contained, and
6055 self-containment is achieved by relying on pre-built ``bootstrap
6056 binaries'' (@pxref{Bootstrapping}). These binaries are specific to an
6057 operating system kernel, CPU architecture, and application binary
6058 interface (ABI). Thus, to port the distribution to a platform that is
6059 not yet supported, one must build those bootstrap binaries, and update
6060 the @code{(gnu packages bootstrap)} module to use them on that platform.
6061
6062 Fortunately, Guix can @emph{cross compile} those bootstrap binaries.
6063 When everything goes well, and assuming the GNU tool chain supports the
6064 target platform, this can be as simple as running a command like this
6065 one:
6066
6067 @example
6068 guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs
6069 @end example
6070
6071 For this to work, the @code{glibc-dynamic-linker} procedure in
6072 @code{(gnu packages bootstrap)} must be augmented to return the right
6073 file name for libc's dynamic linker on that platform; likewise,
6074 @code{system->linux-architecture} in @code{(gnu packages linux)} must be
6075 taught about the new platform.
6076
6077 Once these are built, the @code{(gnu packages bootstrap)} module needs
6078 to be updated to refer to these binaries on the target platform. That
6079 is, the hashes and URLs of the bootstrap tarballs for the new platform
6080 must be added alongside those of the currently supported platforms. The
6081 bootstrap Guile tarball is treated specially: it is expected to be
6082 available locally, and @file{gnu-system.am} has rules do download it for
6083 the supported architectures; a rule for the new platform must be added
6084 as well.
6085
6086 In practice, there may be some complications. First, it may be that the
6087 extended GNU triplet that specifies an ABI (like the @code{eabi} suffix
6088 above) is not recognized by all the GNU tools. Typically, glibc
6089 recognizes some of these, whereas GCC uses an extra @code{--with-abi}
6090 configure flag (see @code{gcc.scm} for examples of how to handle this).
6091 Second, some of the required packages could fail to build for that
6092 platform. Lastly, the generated binaries could be broken for some
6093 reason.
6094
6095
6096 @c *********************************************************************
6097 @node Contributing
6098 @chapter Contributing
6099
6100 This project is a cooperative effort, and we need your help to make it
6101 grow! Please get in touch with us on @email{guix-devel@@gnu.org} and
6102 @code{#guix} on the Freenode IRC network. We welcome ideas, bug
6103 reports, patches, and anything that may be helpful to the project. We
6104 particularly welcome help on packaging (@pxref{Packaging Guidelines}).
6105
6106 Please see the
6107 @url{http://git.savannah.gnu.org/cgit/guix.git/tree/HACKING,
6108 @file{HACKING} file} that comes with the Guix source code for practical
6109 details about contributions.
6110
6111
6112 @c *********************************************************************
6113 @node Acknowledgments
6114 @chapter Acknowledgments
6115
6116 Guix is based on the Nix package manager, which was designed and
6117 implemented by Eelco Dolstra, with contributions from other people (see
6118 the @file{nix/AUTHORS} file in Guix.) Nix pioneered functional package
6119 management, and promoted unprecedented features, such as transactional
6120 package upgrades and rollbacks, per-user profiles, and referentially
6121 transparent build processes. Without this work, Guix would not exist.
6122
6123 The Nix-based software distributions, Nixpkgs and NixOS, have also been
6124 an inspiration for Guix.
6125
6126 GNU@tie{}Guix itself is a collective work with contributions from a
6127 number of people. See the @file{AUTHORS} file in Guix for more
6128 information on these fine people. The @file{THANKS} file lists people
6129 who have helped by reporting bugs, taking care of the infrastructure,
6130 providing artwork and themes, making suggestions, and more---thank you!
6131
6132
6133 @c *********************************************************************
6134 @node GNU Free Documentation License
6135 @appendix GNU Free Documentation License
6136
6137 @include fdl-1.3.texi
6138
6139 @c *********************************************************************
6140 @node Concept Index
6141 @unnumbered Concept Index
6142 @printindex cp
6143
6144 @node Programming Index
6145 @unnumbered Programming Index
6146 @syncodeindex tp fn
6147 @syncodeindex vr fn
6148 @printindex fn
6149
6150 @bye
6151
6152 @c Local Variables:
6153 @c ispell-local-dictionary: "american";
6154 @c End: