gnu: grub: Add fix for CVE-2015-8730.
[jackhill/guix/guix.git] / doc / guix.texi
CommitLineData
568717fd
LC
1\input texinfo
2@c -*-texinfo-*-
3
4@c %**start of header
5@setfilename guix.info
6@documentencoding UTF-8
f8348b91 7@settitle GNU Guix Reference Manual
568717fd
LC
8@c %**end of header
9
10@include version.texi
7df7a74e
NK
11
12@copying
4379c35b 13Copyright @copyright{} 2012, 2013, 2014, 2015 Ludovic Courtès@*
af8a56b8 14Copyright @copyright{} 2013, 2014 Andreas Enge@*
87eafdbd 15Copyright @copyright{} 2013 Nikita Karetnikov@*
8c01b9d0
ML
16Copyright @copyright{} 2015 Mathieu Lirzin@*
17Copyright @copyright{} 2014 Pierre-Antoine Rault@*
87eafdbd 18Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer
7df7a74e
NK
19
20Permission is granted to copy, distribute and/or modify this document
21under the terms of the GNU Free Documentation License, Version 1.3 or
22any later version published by the Free Software Foundation; with no
23Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
24copy of the license is included in the section entitled ``GNU Free
25Documentation License''.
26@end copying
568717fd 27
eeaf4427 28@dircategory Package management
568717fd
LC
29@direntry
30* guix: (guix). Guix, the functional package manager.
e49951eb 31* guix package: (guix)Invoking guix package
eeaf4427 32 Managing packages with Guix.
e49951eb 33* guix build: (guix)Invoking guix build
568717fd 34 Building packages with Guix.
054e8576
LC
35* guix system: (guix)Invoking guix system
36 Managing the operating system configuration.
568717fd 37@end direntry
568717fd 38
372c4bbc
DT
39@dircategory Software development
40@direntry
41* guix environment: (guix)Invoking guix environment
42 Building development environments with Guix.
43@end direntry
44
568717fd 45@titlepage
7730d112
LC
46@title GNU Guix Reference Manual
47@subtitle Using the GNU Guix Functional Package Manager
2cbed07e 48@author The GNU Guix Developers
568717fd
LC
49
50@page
51@vskip 0pt plus 1filll
52Edition @value{EDITION} @*
53@value{UPDATED} @*
54
7df7a74e 55@insertcopying
568717fd
LC
56@end titlepage
57
568717fd
LC
58@contents
59
60@c *********************************************************************
61@node Top
f8348b91 62@top GNU Guix
568717fd 63
f8348b91
LC
64This document describes GNU Guix version @value{VERSION}, a functional
65package management tool written for the GNU system.
568717fd
LC
66
67@menu
68* Introduction:: What is Guix about?
bd5e766b 69* Installation:: Installing Guix.
eeaf4427 70* Package Management:: Package installation, upgrade, etc.
c554de89 71* Emacs Interface:: Using Guix from Emacs.
568717fd
LC
72* Programming Interface:: Using Guix in Scheme.
73* Utilities:: Package management commands.
a1ba8475 74* GNU Distribution:: Software for your friendly GNU system.
9bf3c1a7 75* Contributing:: Your help needed!
568717fd
LC
76
77* Acknowledgments:: Thanks!
78* GNU Free Documentation License:: The license of this manual.
79* Concept Index:: Concepts.
a85b83d2 80* Programming Index:: Data types, functions, and variables.
aaa3eaa9
LC
81
82@detailmenu
83 --- The Detailed Node Listing ---
84
85Installation
86
1b2b8177 87* Binary Installation:: Getting Guix running in no time!
aaa3eaa9 88* Requirements:: Software needed to build and run Guix.
ec0339cd 89* Running the Test Suite:: Testing Guix.
aaa3eaa9
LC
90* Setting Up the Daemon:: Preparing the build daemon's environment.
91* Invoking guix-daemon:: Running the build daemon.
0e2d0213 92* Application Setup:: Application-specific setup.
aaa3eaa9
LC
93
94Setting Up the Daemon
95
96* Build Environment Setup:: Preparing the isolated build environment.
97* Daemon Offload Setup:: Offloading builds to remote machines.
98
99Package Management
100
101* Features:: How Guix will make your life brighter.
102* Invoking guix package:: Package installation, removal, etc.
aaa3eaa9
LC
103* Substitutes:: Downloading pre-built binaries.
104* Packages with Multiple Outputs:: Single source package, multiple outputs.
105* Invoking guix gc:: Running the garbage collector.
106* Invoking guix pull:: Fetching the latest Guix and distribution.
107* Invoking guix archive:: Exporting and importing store files.
108
c554de89
AK
109Emacs Interface
110
111* Initial Setup: Emacs Initial Setup. Preparing @file{~/.emacs}.
112* Package Management: Emacs Package Management. Managing packages and generations.
9b0afb0d 113* Popup Interface: Emacs Popup Interface. Magit-like interface for guix commands.
c554de89 114* Prettify Mode: Emacs Prettify. Abbreviating @file{/gnu/store/@dots{}} file names.
34850cd5 115* Build Log Mode: Emacs Build Log. Highlighting Guix build logs.
187f80c6
AK
116* Completions: Emacs Completions. Completing @command{guix} shell command.
117* Development: Emacs Development. Tools for Guix developers.
c554de89 118
aaa3eaa9
LC
119Programming Interface
120
121* Defining Packages:: Defining new packages.
122* Build Systems:: Specifying how packages are built.
123* The Store:: Manipulating the package store.
124* Derivations:: Low-level interface to package derivations.
125* The Store Monad:: Purely functional interface to the store.
126* G-Expressions:: Manipulating build expressions.
127
92492b23
LC
128Defining Packages
129
130* package Reference:: The package data type.
131* origin Reference:: The origin data type.
132
aaa3eaa9
LC
133Utilities
134
135* Invoking guix build:: Building packages from the command line.
fcc58db6 136* Invoking guix edit:: Editing package definitions.
aaa3eaa9
LC
137* Invoking guix download:: Downloading a file and printing its hash.
138* Invoking guix hash:: Computing the cryptographic hash of a file.
139* Invoking guix import:: Importing package definitions.
140* Invoking guix refresh:: Updating package definitions.
141* Invoking guix lint:: Finding errors in package definitions.
fcc58db6 142* Invoking guix size:: Profiling disk usage.
88856916 143* Invoking guix graph:: Visualizing the graph of packages.
aaa3eaa9 144* Invoking guix environment:: Setting up development environments.
aff8ce7c 145* Invoking guix publish:: Sharing substitutes.
d23c20f1 146* Invoking guix challenge:: Challenging substitute servers.
32efa254 147* Invoking guix container:: Process isolation.
aaa3eaa9
LC
148
149GNU Distribution
150
151* System Installation:: Installing the whole operating system.
35ed9306 152* System Configuration:: Configuring the operating system.
aaa3eaa9
LC
153* Installing Debugging Files:: Feeding the debugger.
154* Security Updates:: Deploying security fixes quickly.
155* Package Modules:: Packages from the programmer's viewpoint.
156* Packaging Guidelines:: Growing the distribution.
157* Bootstrapping:: GNU/Linux built from scratch.
158* Porting:: Targeting another platform or kernel.
159
160System Configuration
161
162* Using the Configuration System:: Customizing your GNU system.
163* operating-system Reference:: Detail of operating-system declarations.
164* File Systems:: Configuring file system mounts.
165* Mapped Devices:: Block device extra processing.
166* User Accounts:: Specifying user accounts.
598e19dc 167* Locales:: Language and cultural convention settings.
aaa3eaa9
LC
168* Services:: Specifying system services.
169* Setuid Programs:: Programs running with root privileges.
1b2b8177 170* X.509 Certificates:: Authenticating HTTPS servers.
996ed739 171* Name Service Switch:: Configuring libc's name service switch.
aaa3eaa9
LC
172* Initial RAM Disk:: Linux-Libre bootstrapping.
173* GRUB Configuration:: Configuring the boot loader.
174* Invoking guix system:: Instantiating a system configuration.
175* Defining Services:: Adding new service definitions.
176
177Services
178
179* Base Services:: Essential system services.
180* Networking Services:: Network setup, SSH daemon, etc.
181* X Window:: Graphical display.
1b2b8177
LC
182* Desktop Services:: D-Bus and desktop services.
183* Database Services:: SQL databases.
d8c18af8 184* Mail Services:: IMAP, POP3, SMTP, and all that.
cbd02397 185* Web Services:: Web servers.
aa4ed923 186* Various Services:: Other services.
aaa3eaa9 187
0adfe95a
LC
188Defining Services
189
190* Service Composition:: The model for composing services.
191* Service Types and Services:: Types and services.
192* Service Reference:: API reference.
193* dmd Services:: A particular type of service.
194
aaa3eaa9
LC
195Packaging Guidelines
196
ec0339cd
LC
197* Software Freedom:: What may go into the distribution.
198* Package Naming:: What's in a name?
199* Version Numbers:: When the name is not enough.
cbd02397 200* Synopses and Descriptions:: Helping users find the right package.
ec0339cd
LC
201* Python Modules:: Taming the snake.
202* Perl Modules:: Little pearls.
203* Fonts:: Fond of fonts.
aaa3eaa9 204
8c01b9d0
ML
205Contributing
206
207* Building from Git:: The latest and greatest.
208* Running Guix Before It Is Installed:: Hacker tricks.
209* The Perfect Setup:: The right tools.
210* Coding Style:: Hygiene of the contributor.
211* Submitting Patches:: Share your work.
212
213Coding Style
214
215* Programming Paradigm:: How to compose your elements.
216* Modules:: Where to store your code?
217* Data Types and Pattern Matching:: Implementing data structures.
218* Formatting Code:: Writing conventions.
219
aaa3eaa9 220@end detailmenu
568717fd
LC
221@end menu
222
223@c *********************************************************************
224@node Introduction
225@chapter Introduction
226
c80e7e55
LC
227GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks''
228using the international phonetic alphabet (IPA).} is a functional
229package management tool for the GNU system. Package management consists
4bfc4ea3
NK
230of all activities that relate to building packages from sources,
231honoring their build-time and run-time dependencies,
c80e7e55
LC
232installing packages in user environments, upgrading installed packages
233to new versions or rolling back to a previous set, removing unused
234software packages, etc.
568717fd
LC
235
236@cindex functional package management
237The term @dfn{functional} refers to a specific package management
136787cb
LC
238discipline pioneered by Nix (@pxref{Acknowledgments}).
239In Guix, the package build and installation process is seen
4bfc4ea3
NK
240as a function, in the mathematical sense. That function takes inputs,
241such as build scripts, a compiler, and libraries, and
242returns an installed package. As a pure function, its result depends
568717fd
LC
243solely on its inputs---for instance, it cannot refer to software or
244scripts that were not explicitly passed as inputs. A build function
4bfc4ea3
NK
245always produces the same result when passed a given set of inputs. It
246cannot alter the system's environment in
568717fd
LC
247any way; for instance, it cannot create, modify, or delete files outside
248of its build and installation directories. This is achieved by running
e900c503 249build processes in isolated environments (or @dfn{containers}), where only their
4bfc4ea3 250explicit inputs are visible.
568717fd 251
e531ac2a 252@cindex store
568717fd 253The result of package build functions is @dfn{cached} in the file
e531ac2a
LC
254system, in a special directory called @dfn{the store} (@pxref{The
255Store}). Each package is installed in a directory of its own, in the
834129e0 256store---by default under @file{/gnu/store}. The directory name contains
568717fd
LC
257a hash of all the inputs used to build that package; thus, changing an
258input yields a different directory name.
259
260This approach is the foundation of Guix's salient features: support for
4bfc4ea3 261transactional package upgrade and rollback, per-user installation, and
eeaf4427 262garbage collection of packages (@pxref{Features}).
568717fd 263
4bfc4ea3 264Guix has a command-line interface, which allows users to build, install,
568717fd 265upgrade, and remove packages, as well as a Scheme programming interface.
568717fd 266
3ca2731c 267@cindex Guix System Distribution
4705641f 268@cindex GuixSD
a1ba8475 269Last but not least, Guix is used to build a distribution of the GNU
3ca2731c 270system, with many GNU and non-GNU free software packages. The Guix
4705641f
LC
271System Distribution, or GNU@tie{}GuixSD, takes advantage of the core
272properties of Guix at the system level. With GuixSD, users
3ca2731c
LC
273@emph{declare} all aspects of the operating system configuration, and
274Guix takes care of instantiating that configuration in a reproducible,
275stateless fashion. @xref{GNU Distribution}.
a1ba8475 276
bd5e766b
LC
277@c *********************************************************************
278@node Installation
279@chapter Installation
280
48febeb8
LC
281GNU Guix is available for download from its website at
282@url{http://www.gnu.org/software/guix/}. This section describes the
283software requirements of Guix, as well as how to install it and get
284ready to use it.
bd5e766b 285
5af6de3e
LC
286Note that this section is concerned with the installation of the package
287manager, which can be done on top of a running GNU/Linux system. If,
288instead, you want to install the complete GNU operating system,
6621cdb6 289@pxref{System Installation}.
5af6de3e 290
bd5e766b 291@menu
09722b11 292* Binary Installation:: Getting Guix running in no time!
bd5e766b 293* Requirements:: Software needed to build and run Guix.
ec0339cd 294* Running the Test Suite:: Testing Guix.
bd5e766b
LC
295* Setting Up the Daemon:: Preparing the build daemon's environment.
296* Invoking guix-daemon:: Running the build daemon.
0e2d0213 297* Application Setup:: Application-specific setup.
bd5e766b
LC
298@end menu
299
09722b11
LC
300@node Binary Installation
301@section Binary Installation
302
303This section describes how to install Guix on an arbitrary system from a
304self-contained tarball providing binaries for Guix and for all its
305dependencies. This is often quicker than installing from source, which
306is described in the next sections. The only requirement is to have
307GNU@tie{}tar and Xz.
308
309Installing goes along these lines:
310
311@enumerate
312@item
313Download the binary tarball from
ae806096 314@indicateurl{ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz}@footnote{As
09722b11
LC
315usual, make sure to download the associated @file{.sig} file and to
316verify the authenticity of the tarball against it!}, where @var{system}
317is @code{x86_64-linux} for an @code{x86_64} machine already running the
318kernel Linux, and so on.
319
320@item
321As @code{root}, run:
322
323@example
5dc42964 324# cd /tmp
254b1c2e
LC
325# tar --warning=no-timestamp -xf \
326 guix-binary-@value{VERSION}.@var{system}.tar.xz
5dc42964 327# mv var/guix /var/ && mv gnu /
09722b11
LC
328@end example
329
7acd3439
LC
330This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}.
331The latter contains a ready-to-use profile for @code{root} (see next
332step.)
09722b11 333
5dc3ce5f
LC
334Do @emph{not} unpack the tarball on a working Guix system since that
335would overwrite its own essential files.
336
254b1c2e 337The @code{--warning=no-timestamp} option makes sure GNU@tie{}tar does
e9ba6357
LC
338not emit warnings about ``implausibly old time stamps'' (such
339warnings were triggered by GNU@tie{}tar 1.26 and older; recent
340versions are fine.)
341They stem from the fact that all the
254b1c2e
LC
342files in the archive have their modification time set to zero (which
343means January 1st, 1970.) This is done on purpose to make sure the
344archive content is independent of its creation time, thus making it
345reproducible.
346
7acd3439
LC
347@item
348Make @code{root}'s profile available under @file{~/.guix-profile}:
349
350@example
351# ln -sf /var/guix/profiles/per-user/root/guix-profile \
352 ~root/.guix-profile
353@end example
354
43c33047
LC
355@item
356Create the group and user accounts for build users as explained below
357(@pxref{Build Environment Setup}).
358
09722b11 359@item
175ced41 360Run the daemon:
09722b11
LC
361
362@example
7acd3439 363# ~root/.guix-profile/bin/guix-daemon --build-users-group=guixbuild
09722b11
LC
364@end example
365
d2825c96
LC
366On hosts using the systemd init system, drop
367@file{~root/.guix-profile/lib/systemd/system/guix-daemon.service} in
368@file{/etc/systemd/system}.
369
ad227484
MDRS
370Likewise, on hosts using the Upstart init system, drop
371@file{~root/.guix-profile/lib/upstart/system/guix-daemon.conf} in
372@file{/etc/init}.
373
09722b11
LC
374@item
375Make the @command{guix} command available to other users on the machine,
376for instance with:
377
378@example
379# mkdir -p /usr/local/bin
380# cd /usr/local/bin
d72d05f9 381# ln -s /var/guix/profiles/per-user/root/guix-profile/bin/guix
09722b11 382@end example
39f8ed14
LC
383
384@item
385To use substitutes from @code{hydra.gnu.org} (@pxref{Substitutes}),
386authorize them:
387
388@example
7acd3439 389# guix archive --authorize < ~root/.guix-profile/share/guix/hydra.gnu.org.pub
39f8ed14 390@end example
09722b11
LC
391@end enumerate
392
53de532f
LC
393And that's it! For additional tips and tricks, @pxref{Application
394Setup}.
09722b11 395
5dc3ce5f 396The @code{guix} package must remain available in @code{root}'s
09722b11
LC
397profile, or it would become subject to garbage collection---in which
398case you would find yourself badly handicapped by the lack of the
399@command{guix} command.
400
39f8ed14
LC
401The tarball in question can be (re)produced and verified simply by
402running the following command in the Guix source tree:
09722b11
LC
403
404@example
405make guix-binary.@var{system}.tar.xz
406@end example
407
408
bd5e766b
LC
409@node Requirements
410@section Requirements
411
09722b11
LC
412This section lists requirements when building Guix from source. The
413build procedure for Guix is the same as for other GNU software, and is
414not covered here. Please see the files @file{README} and @file{INSTALL}
415in the Guix source tree for additional details.
416
bd5e766b
LC
417GNU Guix depends on the following packages:
418
419@itemize
47c66da0 420@item @url{http://gnu.org/software/guile/, GNU Guile}, version 2.0.7 or later;
288dca55 421@item @url{http://gnupg.org/, GNU libgcrypt};
f0b98b84 422@item @url{http://www.gnu.org/software/make/, GNU Make}.
8a96bd4b
ID
423@end itemize
424
425The following dependencies are optional:
426
427@itemize
288dca55 428@item
8a96bd4b 429Installing
288dca55 430@url{http://savannah.nongnu.org/projects/guile-json/, Guile-JSON} will
2f7d2d91
LC
431allow you to use the @command{guix import pypi} command (@pxref{Invoking
432guix import}). It is of
288dca55 433interest primarily for developers and not for casual users.
8a96bd4b
ID
434@item
435Installing @uref{http://gnutls.org/, GnuTLS-Guile} will
436allow you to access @code{https} URLs with the @command{guix download}
d45dc6da
EB
437command (@pxref{Invoking guix download}), the @command{guix import pypi}
438command, and the @command{guix import cpan} command. This is primarily
439of interest to developers. @xref{Guile Preparations, how to install the
440GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}.
bd5e766b
LC
441@end itemize
442
443Unless @code{--disable-daemon} was passed to @command{configure}, the
444following packages are also needed:
445
446@itemize
368d08f7
LC
447@item @url{http://sqlite.org, SQLite 3};
448@item @url{http://www.bzip.org, libbz2};
449@item @url{http://gcc.gnu.org, GCC's g++}, with support for the
450C++11 standard.
bd5e766b
LC
451@end itemize
452
4bfc4ea3
NK
453When a working installation of @url{http://nixos.org/nix/, the Nix package
454manager} is available, you
bd5e766b 455can instead configure Guix with @code{--disable-daemon}. In that case,
4bfc4ea3 456Nix replaces the three dependencies above.
bd5e766b 457
b22a12fd
LC
458Guix is compatible with Nix, so it is possible to share the same store
459between both. To do so, you must pass @command{configure} not only the
460same @code{--with-store-dir} value, but also the same
4bfc4ea3
NK
461@code{--localstatedir} value. The latter is essential because it
462specifies where the database that stores metadata about the store is
834129e0 463located, among other things. The default values for Nix are
b22a12fd 464@code{--with-store-dir=/nix/store} and @code{--localstatedir=/nix/var}.
4bfc4ea3
NK
465Note that @code{--disable-daemon} is not required if
466your goal is to share the store with Nix.
b22a12fd 467
ec0339cd
LC
468@node Running the Test Suite
469@section Running the Test Suite
470
471After a successful @command{configure} and @code{make} run, it is a good
472idea to run the test suite. It can help catch issues with the setup or
473environment, or bugs in Guix itself---and really, reporting test
474failures is a good way to help improve the software. To run the test
475suite, type:
476
477@example
478make check
479@end example
480
481Test cases can run in parallel: you can use the @code{-j} option of
482GNU@tie{}make to speed things up. The first run may take a few minutes
483on a recent machine; subsequent runs will be faster because the store
484that is created for test purposes will already have various things in
485cache.
486
487Upon failure, please email @email{bug-guix@@gnu.org} and attach the
488@file{test-suite.log} file. When @file{tests/@var{something}.scm}
489fails, please also attach the @file{@var{something}.log} file available
490in the top-level build directory. Please specify the Guix version being
491used as well as version numbers of the dependencies
492(@pxref{Requirements}) in your message.
493
bd5e766b
LC
494@node Setting Up the Daemon
495@section Setting Up the Daemon
496
497@cindex daemon
498Operations such as building a package or running the garbage collector
49e6291a 499are all performed by a specialized process, the @dfn{build daemon}, on
bd5e766b
LC
500behalf of clients. Only the daemon may access the store and its
501associated database. Thus, any operation that manipulates the store
502goes through the daemon. For instance, command-line tools such as
e49951eb 503@command{guix package} and @command{guix build} communicate with the
bd5e766b
LC
504daemon (@i{via} remote procedure calls) to instruct it what to do.
505
49e6291a 506The following sections explain how to prepare the build daemon's
225dafde
LC
507environment. Also @ref{Substitutes}, for information on how to allow
508the daemon to download pre-built binaries.
49e6291a
LC
509
510@menu
511* Build Environment Setup:: Preparing the isolated build environment.
512* Daemon Offload Setup:: Offloading builds to remote machines.
513@end menu
514
515@node Build Environment Setup
516@subsection Build Environment Setup
517
bd5e766b
LC
518In a standard multi-user setup, Guix and its daemon---the
519@command{guix-daemon} program---are installed by the system
834129e0 520administrator; @file{/gnu/store} is owned by @code{root} and
bd5e766b
LC
521@command{guix-daemon} runs as @code{root}. Unprivileged users may use
522Guix tools to build packages or otherwise access the store, and the
523daemon will do it on their behalf, ensuring that the store is kept in a
524consistent state, and allowing built packages to be shared among users.
525
526@cindex build users
527When @command{guix-daemon} runs as @code{root}, you may not want package
528build processes themselves to run as @code{root} too, for obvious
529security reasons. To avoid that, a special pool of @dfn{build users}
530should be created for use by build processes started by the daemon.
531These build users need not have a shell and a home directory: they will
532just be used when the daemon drops @code{root} privileges in build
533processes. Having several such users allows the daemon to launch
534distinct build processes under separate UIDs, which guarantees that they
535do not interfere with each other---an essential feature since builds are
536regarded as pure functions (@pxref{Introduction}).
537
538On a GNU/Linux system, a build user pool may be created like this (using
539Bash syntax and the @code{shadow} commands):
540
091196b3
LC
541@c See http://lists.gnu.org/archive/html/bug-guix/2013-01/msg00239.html
542@c for why `-G' is needed.
bd5e766b 543@example
cfc149dc
LC
544# groupadd --system guixbuild
545# for i in `seq -w 1 10`;
bd5e766b 546 do
cfc149dc
LC
547 useradd -g guixbuild -G guixbuild \
548 -d /var/empty -s `which nologin` \
549 -c "Guix build user $i" --system \
550 guixbuilder$i;
bd5e766b
LC
551 done
552@end example
553
554@noindent
54eb03ab
LC
555The number of build users determines how many build jobs may run in
556parallel, as specified by the @option{--max-jobs} option
d2825c96
LC
557(@pxref{Invoking guix-daemon, @option{--max-jobs}}). The
558@code{guix-daemon} program may then be run as @code{root} with the
559following command@footnote{If your machine uses the systemd init system,
560dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service}
561file in @file{/etc/systemd/system} will ensure that
ad227484
MDRS
562@command{guix-daemon} is automatically started. Similarly, if your
563machine uses the Upstart init system, drop the
564@file{@var{prefix}/lib/upstart/system/guix-daemon.conf}
565file in @file{/etc/init}.}:
bd5e766b
LC
566
567@example
cfc149dc 568# guix-daemon --build-users-group=guixbuild
bd5e766b
LC
569@end example
570
e900c503 571@cindex chroot
b095792f
LC
572@noindent
573This way, the daemon starts build processes in a chroot, under one of
cfc149dc 574the @code{guixbuilder} users. On GNU/Linux, by default, the chroot
6dc99317
LC
575environment contains nothing but:
576
577@c Keep this list in sync with libstore/build.cc! -----------------------
578@itemize
579@item
4743a4da
LC
580a minimal @code{/dev} directory, created mostly independently from the
581host @code{/dev}@footnote{``Mostly'', because while the set of files
582that appear in the chroot's @code{/dev} is fixed, most of these files
583can only be created if the host has them.};
584
585@item
586the @code{/proc} directory; it only shows the container's processes
587since a separate PID name space is used;
6dc99317
LC
588
589@item
590@file{/etc/passwd} with an entry for the current user and an entry for
591user @file{nobody};
592
593@item
594@file{/etc/group} with an entry for the user's group;
595
596@item
597@file{/etc/hosts} with an entry that maps @code{localhost} to
598@code{127.0.0.1};
599
600@item
601a writable @file{/tmp} directory.
602@end itemize
b095792f 603
cb960102
ED
604You can influence the directory where the daemon stores build trees
605@i{via} the @code{TMPDIR} environment variable. However, the build tree
606within the chroot is always @file{/tmp/nix-build-@var{name}.drv-0},
607where @var{name} is the derivation name---e.g., @code{coreutils-8.24}.
608This way, the value of @code{TMPDIR} does not leak inside build
609environments, which avoids discrepancies in cases where build processes
610capture the name of their build tree.
611
1e2644bb
LC
612If you are installing Guix as an unprivileged user, it is still possible
613to run @command{guix-daemon} provided you pass @code{--disable-chroot}.
614However, build processes will not be isolated from one another, and not
615from the rest of the system. Thus, build processes may interfere with
616each other, and may access programs, libraries, and other files
617available on the system---making it much harder to view them as
618@emph{pure} functions.
bd5e766b 619
49e6291a
LC
620
621@node Daemon Offload Setup
622@subsection Using the Offload Facility
623
624@cindex offloading
4ec2e92d
LC
625@cindex build hook
626When desired, the build daemon can @dfn{offload}
627derivation builds to other machines
49e6291a
LC
628running Guix, using the @code{offload} @dfn{build hook}. When that
629feature is enabled, a list of user-specified build machines is read from
630@file{/etc/guix/machines.scm}; anytime a build is requested, for
631instance via @code{guix build}, the daemon attempts to offload it to one
632of the machines that satisfies the derivation's constraints, in
633particular its system type---e.g., @file{x86_64-linux}. Missing
634prerequisites for the build are copied over SSH to the target machine,
635which then proceeds with the build; upon success the output(s) of the
636build are copied back to the initial machine.
637
4ec2e92d 638The @file{/etc/guix/machines.scm} file typically looks like this:
49e6291a
LC
639
640@example
641(list (build-machine
642 (name "eightysix.example.org")
643 (system "x86_64-linux")
644 (user "bob")
645 (speed 2.)) ; incredibly fast!
646
647 (build-machine
648 (name "meeps.example.org")
649 (system "mips64el-linux")
650 (user "alice")
651 (private-key
652 (string-append (getenv "HOME")
c4fdfd6f 653 "/.lsh/identity-for-guix"))))
49e6291a
LC
654@end example
655
656@noindent
657In the example above we specify a list of two build machines, one for
658the @code{x86_64} architecture and one for the @code{mips64el}
4ec2e92d
LC
659architecture.
660
661In fact, this file is---not surprisingly!---a Scheme file that is
662evaluated when the @code{offload} hook is started. Its return value
663must be a list of @code{build-machine} objects. While this example
664shows a fixed list of build machines, one could imagine, say, using
665DNS-SD to return a list of potential build machines discovered in the
666local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using
c678a4ee
LC
667Avahi in Guile Scheme Programs}). The @code{build-machine} data type is
668detailed below.
4ec2e92d 669
c678a4ee
LC
670@deftp {Data Type} build-machine
671This data type represents build machines the daemon may offload builds
672to. The important fields are:
49e6291a
LC
673
674@table @code
675
676@item name
677The remote machine's host name.
678
679@item system
c678a4ee 680The remote machine's system type---e.g., @code{"x86_64-linux"}.
49e6291a
LC
681
682@item user
683The user account to use when connecting to the remote machine over SSH.
684Note that the SSH key pair must @emph{not} be passphrase-protected, to
685allow non-interactive logins.
686
687@end table
688
4ec2e92d 689A number of optional fields may be specified:
49e6291a
LC
690
691@table @code
692
cecd72d5
LC
693@item port
694Port number of the machine's SSH server (default: 22).
695
49e6291a
LC
696@item private-key
697The SSH private key file to use when connecting to the machine.
698
c4fdfd6f
LC
699Currently offloading uses GNU@tie{}lsh as its SSH client
700(@pxref{Invoking lsh,,, GNU lsh Manual}). Thus, the key file here must
701be an lsh key file. This may change in the future, though.
702
49e6291a
LC
703@item parallel-builds
704The number of builds that may run in parallel on the machine (1 by
705default.)
706
707@item speed
708A ``relative speed factor''. The offload scheduler will tend to prefer
709machines with a higher speed factor.
710
711@item features
712A list of strings denoting specific features supported by the machine.
713An example is @code{"kvm"} for machines that have the KVM Linux modules
714and corresponding hardware support. Derivations can request features by
715name, and they will be scheduled on matching build machines.
716
717@end table
c678a4ee 718@end deftp
49e6291a
LC
719
720The @code{guix} command must be in the search path on the build
721machines, since offloading works by invoking the @code{guix archive} and
c4fdfd6f
LC
722@code{guix build} commands. In addition, the Guix modules must be in
723@code{$GUILE_LOAD_PATH} on the build machine---you can check whether
724this is the case by running:
725
726@example
727lsh build-machine guile -c '(use-modules (guix config))'
728@end example
49e6291a
LC
729
730There's one last thing to do once @file{machines.scm} is in place. As
731explained above, when offloading, files are transferred back and forth
c4fdfd6f
LC
732between the machine stores. For this to work, you first need to
733generate a key pair on each machine to allow the daemon to export signed
734archives of files from the store (@pxref{Invoking guix archive}):
49e6291a
LC
735
736@example
737# guix archive --generate-key
738@end example
739
740@noindent
c4fdfd6f
LC
741Each build machine must authorize the key of the master machine so that
742it accepts store items it receives from the master:
743
744@example
745# guix archive --authorize < master-public-key.txt
746@end example
747
748@noindent
749Likewise, the master machine must authorize the key of each build machine.
750
751All the fuss with keys is here to express pairwise mutual trust
752relations between the master and the build machines. Concretely, when
753the master receives files from a build machine (and @i{vice versa}), its
754build daemon can make sure they are genuine, have not been tampered
755with, and that they are signed by an authorized key.
49e6291a
LC
756
757
bd5e766b
LC
758@node Invoking guix-daemon
759@section Invoking @command{guix-daemon}
760
761The @command{guix-daemon} program implements all the functionality to
762access the store. This includes launching build processes, running the
763garbage collector, querying the availability of a build result, etc. It
764is normally run as @code{root} like this:
765
766@example
cfc149dc 767# guix-daemon --build-users-group=guixbuild
bd5e766b
LC
768@end example
769
770@noindent
081145cf 771For details on how to set it up, @pxref{Setting Up the Daemon}.
bd5e766b 772
e900c503
LC
773@cindex chroot
774@cindex container, build environment
775@cindex build environment
776@cindex reproducible builds
bd5e766b
LC
777By default, @command{guix-daemon} launches build processes under
778different UIDs, taken from the build group specified with
779@code{--build-users-group}. In addition, each build process is run in a
780chroot environment that only contains the subset of the store that the
781build process depends on, as specified by its derivation
782(@pxref{Programming Interface, derivation}), plus a set of specific
783system directories. By default, the latter contains @file{/dev} and
e900c503
LC
784@file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a
785@dfn{container}: in addition to having its own file system tree, it has
786a separate mount name space, its own PID name space, network name space,
787etc. This helps achieve reproducible builds (@pxref{Features}).
bd5e766b 788
cbc538fe
LC
789When the daemon performs a build on behalf of the user, it creates a
790build directory under @file{/tmp} or under the directory specified by
791its @code{TMPDIR} environment variable; this directory is shared with
792the container for the duration of the build. Be aware that using a
793directory other than @file{/tmp} can affect build results---for example,
794with a longer directory name, a build process that uses Unix-domain
795sockets might hit the name length limitation for @code{sun_path}, which
796it would otherwise not hit.
797
798The build directory is automatically deleted upon completion, unless the
799build failed and the client specified @option{--keep-failed}
800(@pxref{Invoking guix build, @option{--keep-failed}}).
801
bd5e766b
LC
802The following command-line options are supported:
803
804@table @code
805@item --build-users-group=@var{group}
806Take users from @var{group} to run build processes (@pxref{Setting Up
807the Daemon, build users}).
808
6858f9d1 809@item --no-substitutes
b5385b52 810@cindex substitutes
6858f9d1 811Do not use substitutes for build products. That is, always build things
c4202d60
LC
812locally instead of allowing downloads of pre-built binaries
813(@pxref{Substitutes}).
6858f9d1 814
b5385b52
LC
815By default substitutes are used, unless the client---such as the
816@command{guix package} command---is explicitly invoked with
817@code{--no-substitutes}.
818
819When the daemon runs with @code{--no-substitutes}, clients can still
820explicitly enable substitution @i{via} the @code{set-build-options}
821remote procedure call (@pxref{The Store}).
822
9176607e 823@item --substitute-urls=@var{urls}
f8a8e0fe 824@anchor{daemon-substitute-urls}
9176607e 825Consider @var{urls} the default whitespace-separated list of substitute
ae806096 826source URLs. When this option is omitted, @indicateurl{http://hydra.gnu.org}
9176607e
LC
827is used.
828
829This means that substitutes may be downloaded from @var{urls}, as long
830as they are signed by a trusted signature (@pxref{Substitutes}).
831
4ec2e92d
LC
832@cindex build hook
833@item --no-build-hook
834Do not use the @dfn{build hook}.
835
836The build hook is a helper program that the daemon can start and to
837which it submits build requests. This mechanism is used to offload
838builds to other machines (@pxref{Daemon Offload Setup}).
839
bd5e766b
LC
840@item --cache-failures
841Cache build failures. By default, only successful builds are cached.
842
30d9aa54
LC
843When this option is used, @command{guix gc --list-failures} can be used
844to query the set of store items marked as failed; @command{guix gc
845--clear-failures} removes store items from the set of cached failures.
846@xref{Invoking guix gc}.
847
bd5e766b
LC
848@item --cores=@var{n}
849@itemx -c @var{n}
850Use @var{n} CPU cores to build each derivation; @code{0} means as many
851as available.
852
6efc160e 853The default value is @code{0}, but it may be overridden by clients, such
e49951eb
MW
854as the @code{--cores} option of @command{guix build} (@pxref{Invoking
855guix build}).
bd5e766b
LC
856
857The effect is to define the @code{NIX_BUILD_CORES} environment variable
858in the build process, which can then use it to exploit internal
859parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}.
860
861@item --max-jobs=@var{n}
862@itemx -M @var{n}
863Allow at most @var{n} build jobs in parallel. The default value is
f6526eb3
LC
864@code{1}. Setting it to @code{0} means that no builds will be performed
865locally; instead, the daemon will offload builds (@pxref{Daemon Offload
866Setup}), or simply fail.
bd5e766b 867
ecf84b7c
LC
868@item --rounds=@var{N}
869Build each derivation @var{n} times in a row, and raise an error if
870consecutive build results are not bit-for-bit identical. Note that this
871setting can be overridden by clients such as @command{guix build}
872(@pxref{Invoking guix build}).
873
bd5e766b
LC
874@item --debug
875Produce debugging output.
876
877This is useful to debug daemon start-up issues, but then it may be
878overridden by clients, for example the @code{--verbosity} option of
e49951eb 879@command{guix build} (@pxref{Invoking guix build}).
bd5e766b
LC
880
881@item --chroot-directory=@var{dir}
882Add @var{dir} to the build chroot.
883
884Doing this may change the result of build processes---for instance if
885they use optional dependencies found in @var{dir} when it is available,
886and not otherwise. For that reason, it is not recommended to do so.
887Instead, make sure that each derivation declares all the inputs that it
888needs.
889
890@item --disable-chroot
891Disable chroot builds.
892
893Using this option is not recommended since, again, it would allow build
1e2644bb
LC
894processes to gain access to undeclared dependencies. It is necessary,
895though, when @command{guix-daemon} is running under an unprivileged user
896account.
bd5e766b
LC
897
898@item --disable-log-compression
899Disable compression of the build logs.
900
1da983b9
LC
901Unless @code{--lose-logs} is used, all the build logs are kept in the
902@var{localstatedir}. To save space, the daemon automatically compresses
903them with bzip2 by default. This option disables that.
904
ab3893d7
LC
905@item --disable-deduplication
906@cindex deduplication
bd5e766b
LC
907Disable automatic file ``deduplication'' in the store.
908
1da983b9 909By default, files added to the store are automatically ``deduplicated'':
ab3893d7
LC
910if a newly added file is identical to another one found in the store,
911the daemon makes the new file a hard link to the other file. This can
4988dd40 912noticeably reduce disk usage, at the expense of slightly increased
ab3893d7
LC
913input/output load at the end of a build process. This option disables
914this optimization.
1da983b9 915
6e37066e
LC
916@item --gc-keep-outputs[=yes|no]
917Tell whether the garbage collector (GC) must keep outputs of live
918derivations.
919
920When set to ``yes'', the GC will keep the outputs of any live derivation
921available in the store---the @code{.drv} files. The default is ``no'',
922meaning that derivation outputs are kept only if they are GC roots.
923
924@item --gc-keep-derivations[=yes|no]
925Tell whether the garbage collector (GC) must keep derivations
926corresponding to live outputs.
927
928When set to ``yes'', as is the case by default, the GC keeps
929derivations---i.e., @code{.drv} files---as long as at least one of their
930outputs is live. This allows users to keep track of the origins of
931items in their store. Setting it to ``no'' saves a bit of disk space.
932
933Note that when both @code{--gc-keep-derivations} and
934@code{--gc-keep-outputs} are used, the effect is to keep all the build
935prerequisites (the sources, compiler, libraries, and other build-time
936tools) of live objects in the store, regardless of whether these
937prerequisites are live. This is convenient for developers since it
938saves rebuilds or downloads.
939
bd5e766b
LC
940@item --impersonate-linux-2.6
941On Linux-based systems, impersonate Linux 2.6. This means that the
942kernel's @code{uname} system call will report 2.6 as the release number.
943
944This might be helpful to build programs that (usually wrongfully) depend
945on the kernel version number.
946
947@item --lose-logs
948Do not keep build logs. By default they are kept under
ce33631f 949@code{@var{localstatedir}/guix/log}.
bd5e766b
LC
950
951@item --system=@var{system}
952Assume @var{system} as the current system type. By default it is the
953architecture/kernel pair found at configure time, such as
954@code{x86_64-linux}.
b8d2aa26
LC
955
956@item --listen=@var{socket}
957Listen for connections on @var{socket}, the file name of a Unix-domain
958socket. The default socket is
959@file{@var{localstatedir}/daemon-socket/socket}. This option is only
960useful in exceptional circumstances, such as if you need to run several
961daemons on the same machine.
bd5e766b
LC
962@end table
963
964
0e2d0213
LC
965@node Application Setup
966@section Application Setup
967
85e57214
LC
968When using Guix on top of GNU/Linux distribution other than GuixSD---a
969so-called @dfn{foreign distro}---a few additional steps are needed to
970get everything in place. Here are some of them.
0e2d0213
LC
971
972@subsection Locales
973
5c3c1427 974@anchor{locales-and-locpath}
0e2d0213 975@cindex locales, when not on GuixSD
5c3c1427 976@vindex LOCPATH
85e57214 977@vindex GUIX_LOCPATH
0e2d0213
LC
978Packages installed @i{via} Guix will not use the host system's locale
979data. Instead, you must first install one of the locale packages
85e57214
LC
980available with Guix and then define the @code{GUIX_LOCPATH} environment
981variable:
0e2d0213
LC
982
983@example
984$ guix package -i glibc-locales
85e57214 985$ export GUIX_LOCPATH=$HOME/.guix-profile/lib/locale
0e2d0213
LC
986@end example
987
988Note that the @code{glibc-locales} package contains data for all the
989locales supported by the GNU@tie{}libc and weighs in at around
990110@tie{}MiB. Alternately, the @code{glibc-utf8-locales} is smaller but
991limited to a few UTF-8 locales.
992
85e57214
LC
993The @code{GUIX_LOCPATH} variable plays a role similar to @code{LOCPATH}
994(@pxref{Locale Names, @code{LOCPATH},, libc, The GNU C Library Reference
995Manual}). There are two important differences though:
996
997@enumerate
998@item
999@code{GUIX_LOCPATH} is honored only by Guix's libc, and not by the libc
1000provided by foreign distros. Thus, using @code{GUIX_LOCPATH} allows you
1001to make sure the the foreign distro's programs will not end up loading
1002incompatible locale data.
1003
1004@item
1005libc suffixes each entry of @code{GUIX_LOCPATH} with @code{/X.Y}, where
1006@code{X.Y} is the libc version---e.g., @code{2.22}. This means that,
1007should your Guix profile contain a mixture of programs linked against
1008different libc version, each libc version will only try to load locale
1009data in the right format.
1010@end enumerate
1011
1012This is important because the locale data format used by different libc
1013versions may be incompatible.
1014
0e2d0213
LC
1015@subsection X11 Fonts
1016
4988dd40 1017The majority of graphical applications use Fontconfig to locate and
0e2d0213
LC
1018load fonts and perform X11-client-side rendering. Guix's
1019@code{fontconfig} package looks for fonts in @file{$HOME/.guix-profile}
1020by default. Thus, to allow graphical applications installed with Guix
1021to display fonts, you will have to install fonts with Guix as well.
1022Essential font packages include @code{gs-fonts}, @code{font-dejavu}, and
8fe5b1d1 1023@code{font-gnu-freefont-ttf}.
0e2d0213 1024
5c36edc8
LC
1025To display text written in Chinese languages, Japanese, or Korean in
1026graphical applications, consider installing
1027@code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former
1028has multiple outputs, one per language family (@pxref{Packages with
1029Multiple Outputs}). For instance, the following command installs fonts
1030for Chinese languages:
1031
1032@example
1033guix package -i font-adobe-source-han-sans:cn
1034@end example
1035
0e2d0213
LC
1036@c TODO What else?
1037
eeaf4427
LC
1038@c *********************************************************************
1039@node Package Management
1040@chapter Package Management
1041
f8348b91 1042The purpose of GNU Guix is to allow users to easily install, upgrade, and
eeaf4427
LC
1043remove software packages, without having to know about their build
1044procedure or dependencies. Guix also goes beyond this obvious set of
1045features.
1046
1047This chapter describes the main features of Guix, as well as the package
c1941588 1048management tools it provides. Two user interfaces are provided for
c554de89
AK
1049routine package management tasks: A command-line interface described below
1050(@pxref{Invoking guix package, @code{guix package}}), as well as a visual user
1051interface in Emacs described in a subsequent chapter (@pxref{Emacs Interface}).
eeaf4427
LC
1052
1053@menu
1054* Features:: How Guix will make your life brighter.
e49951eb 1055* Invoking guix package:: Package installation, removal, etc.
c4202d60 1056* Substitutes:: Downloading pre-built binaries.
760c60d6 1057* Packages with Multiple Outputs:: Single source package, multiple outputs.
e49951eb 1058* Invoking guix gc:: Running the garbage collector.
f651b477 1059* Invoking guix pull:: Fetching the latest Guix and distribution.
760c60d6 1060* Invoking guix archive:: Exporting and importing store files.
eeaf4427
LC
1061@end menu
1062
1063@node Features
1064@section Features
1065
1066When using Guix, each package ends up in the @dfn{package store}, in its
1067own directory---something that resembles
9a130e19
AK
1068@file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string
1069(note that Guix comes with an Emacs extension to shorten those file
081145cf 1070names, @pxref{Emacs Prettify}.)
eeaf4427
LC
1071
1072Instead of referring to these directories, users have their own
1073@dfn{profile}, which points to the packages that they actually want to
821b0015
LC
1074use. These profiles are stored within each user's home directory, at
1075@code{$HOME/.guix-profile}.
eeaf4427 1076
821b0015 1077For example, @code{alice} installs GCC 4.7.2. As a result,
eeaf4427 1078@file{/home/alice/.guix-profile/bin/gcc} points to
834129e0 1079@file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine,
821b0015
LC
1080@code{bob} had already installed GCC 4.8.0. The profile of @code{bob}
1081simply continues to point to
834129e0 1082@file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC
821b0015 1083coexist on the same system without any interference.
eeaf4427 1084
e49951eb
MW
1085The @command{guix package} command is the central tool to manage
1086packages (@pxref{Invoking guix package}). It operates on those per-user
821b0015 1087profiles, and can be used @emph{with normal user privileges}.
eeaf4427
LC
1088
1089The command provides the obvious install, remove, and upgrade
1090operations. Each invocation is actually a @emph{transaction}: either
ba55b1cb 1091the specified operation succeeds, or nothing happens. Thus, if the
e49951eb 1092@command{guix package} process is terminated during the transaction,
eeaf4427
LC
1093or if a power outage occurs during the transaction, then the user's
1094profile remains in its previous state, and remains usable.
1095
1096In addition, any package transaction may be @emph{rolled back}. So, if,
1097for example, an upgrade installs a new version of a package that turns
1098out to have a serious bug, users may roll back to the previous instance
4af2447e
LC
1099of their profile, which was known to work well. Similarly, the global
1100system configuration is subject to transactional upgrades and roll-back
1101(@pxref{Using the Configuration System}).
eeaf4427
LC
1102
1103All those packages in the package store may be @emph{garbage-collected}.
1104Guix can determine which packages are still referenced by the user
fe8ff028 1105profiles, and remove those that are provably no longer referenced
e49951eb 1106(@pxref{Invoking guix gc}). Users may also explicitly remove old
fe8ff028
LC
1107generations of their profile so that the packages they refer to can be
1108collected.
eeaf4427 1109
e900c503
LC
1110@cindex reproducibility
1111@cindex reproducible builds
eeaf4427
LC
1112Finally, Guix takes a @dfn{purely functional} approach to package
1113management, as described in the introduction (@pxref{Introduction}).
834129e0 1114Each @file{/gnu/store} package directory name contains a hash of all the
eeaf4427
LC
1115inputs that were used to build that package---compiler, libraries, build
1116scripts, etc. This direct correspondence allows users to make sure a
1117given package installation matches the current state of their
e900c503
LC
1118distribution. It also helps maximize @dfn{build reproducibility}:
1119thanks to the isolated build environments that are used, a given build
1120is likely to yield bit-identical files when performed on different
1121machines (@pxref{Invoking guix-daemon, container}).
eeaf4427 1122
c4202d60 1123@cindex substitutes
eeaf4427 1124This foundation allows Guix to support @dfn{transparent binary/source
c4202d60 1125deployment}. When a pre-built binary for a @file{/gnu/store} item is
18f2887b 1126available from an external source---a @dfn{substitute}, Guix just
c4202d60
LC
1127downloads it and unpacks it;
1128otherwise, it builds the package from source, locally
1129(@pxref{Substitutes}).
eeaf4427 1130
f5fd4fd2
LC
1131Control over the build environment is a feature that is also useful for
1132developers. The @command{guix environment} command allows developers of
1133a package to quickly set up the right development environment for their
1134package, without having to manually install the package's dependencies
1135in their profile (@pxref{Invoking guix environment}).
1136
e49951eb
MW
1137@node Invoking guix package
1138@section Invoking @command{guix package}
eeaf4427 1139
e49951eb 1140The @command{guix package} command is the tool that allows users to
eeaf4427
LC
1141install, upgrade, and remove packages, as well as rolling back to
1142previous configurations. It operates only on the user's own profile,
1143and works with normal user privileges (@pxref{Features}). Its syntax
1144is:
1145
1146@example
e49951eb 1147guix package @var{options}
eeaf4427
LC
1148@end example
1149
ba55b1cb 1150Primarily, @var{options} specifies the operations to be performed during
eeaf4427 1151the transaction. Upon completion, a new profile is created, but
99bd74d5 1152previous @dfn{generations} of the profile remain available, should the user
eeaf4427
LC
1153want to roll back.
1154
6447738c
MW
1155For example, to remove @code{lua} and install @code{guile} and
1156@code{guile-cairo} in a single transaction:
1157
1158@example
1159guix package -r lua -i guile guile-cairo
1160@end example
1161
99bd74d5
LC
1162@command{guix package} also supports a @dfn{declarative approach}
1163whereby the user specifies the exact set of packages to be available and
1164passes it @i{via} the @option{--manifest} option
1165(@pxref{profile-manifest, @option{--manifest}}).
1166
b9e5c0a9 1167For each user, a symlink to the user's default profile is automatically
0ec1af59 1168created in @file{$HOME/.guix-profile}. This symlink always points to the
b9e5c0a9
LC
1169current generation of the user's default profile. Thus, users can add
1170@file{$HOME/.guix-profile/bin} to their @code{PATH} environment
1171variable, and so on.
d664f1b4
LC
1172@cindex search paths
1173If you are not using the Guix System Distribution, consider adding the
1174following lines to your @file{~/.bash_profile} (@pxref{Bash Startup
1175Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned
1176shells get all the right environment variable definitions:
1177
1178@example
1179GUIX_PROFILE="$HOME/.guix-profile" \
1180source "$HOME/.guix-profile/etc/profile"
1181@end example
b9e5c0a9 1182
4379c35b
LC
1183In a multi-user setup, user profiles are stored in a place registered as
1184a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points
1185to (@pxref{Invoking guix gc}). That directory is normally
0ec1af59
LC
1186@code{@var{localstatedir}/profiles/per-user/@var{user}}, where
1187@var{localstatedir} is the value passed to @code{configure} as
4379c35b
LC
1188@code{--localstatedir}, and @var{user} is the user name. The
1189@file{per-user} directory is created when @command{guix-daemon} is
1190started, and the @var{user} sub-directory is created by @command{guix
1191package}.
0ec1af59
LC
1192
1193The @var{options} can be among the following:
1194
eeaf4427
LC
1195@table @code
1196
6447738c
MW
1197@item --install=@var{package} @dots{}
1198@itemx -i @var{package} @dots{}
1199Install the specified @var{package}s.
eeaf4427 1200
6447738c 1201Each @var{package} may specify either a simple package name, such as
eeaf4427 1202@code{guile}, or a package name followed by a hyphen and version number,
724311a2
LC
1203such as @code{guile-1.8.8} or simply @code{guile-1.8} (in the latter
1204case, the newest version prefixed by @code{1.8} is selected.)
1205
1206If no version number is specified, the
dc5669cd
MW
1207newest available version will be selected. In addition, @var{package}
1208may contain a colon, followed by the name of one of the outputs of the
6e721c4d 1209package, as in @code{gcc:doc} or @code{binutils-2.22:lib}
e7f34eb0
LC
1210(@pxref{Packages with Multiple Outputs}). Packages with a corresponding
1211name (and optionally version) are searched for among the GNU
1212distribution modules (@pxref{Package Modules}).
eeaf4427 1213
461572cc
LC
1214@cindex propagated inputs
1215Sometimes packages have @dfn{propagated inputs}: these are dependencies
21461f27
LC
1216that automatically get installed along with the required package
1217(@pxref{package-propagated-inputs, @code{propagated-inputs} in
1218@code{package} objects}, for information about propagated inputs in
1219package definitions).
461572cc 1220
21461f27 1221@anchor{package-cmd-propagated-inputs}
461572cc
LC
1222An example is the GNU MPC library: its C header files refer to those of
1223the GNU MPFR library, which in turn refer to those of the GMP library.
1224Thus, when installing MPC, the MPFR and GMP libraries also get installed
1225in the profile; removing MPC also removes MPFR and GMP---unless they had
1226also been explicitly installed independently.
1227
ba7ea5ce 1228Besides, packages sometimes rely on the definition of environment
5924080d 1229variables for their search paths (see explanation of
ba7ea5ce 1230@code{--search-paths} below). Any missing or possibly incorrect
5924080d
LC
1231environment variable definitions are reported here.
1232
ef010c0f 1233@c XXX: keep me up-to-date
5924080d 1234Finally, when installing a GNU package, the tool reports the
ef010c0f
LC
1235availability of a newer upstream version. In the future, it may provide
1236the option of installing directly from the upstream version, even if
1237that version is not yet in the distribution.
1238
5d4b411f
LC
1239@item --install-from-expression=@var{exp}
1240@itemx -e @var{exp}
1241Install the package @var{exp} evaluates to.
1242
1243@var{exp} must be a Scheme expression that evaluates to a
1244@code{<package>} object. This option is notably useful to disambiguate
1245between same-named variants of a package, with expressions such as
1246@code{(@@ (gnu packages base) guile-final)}.
1247
1248Note that this option installs the first output of the specified
1249package, which may be insufficient when needing a specific output of a
1250multiple-output package.
1251
0d279400
DT
1252@item --install-from-file=@var{file}
1253@itemx -f @var{file}
1254Install the package that the code within @var{file} evaluates to.
1255
1256As an example, @var{file} might contain a definition like this
1257(@pxref{Defining Packages}):
1258
1259@example
1260@verbatiminclude package-hello.scm
1261@end example
1262
1263Developers may find it useful to include such a @file{package.scm} file
1264in the root of their project's source tree that can be used to test
1265development snapshots and create reproducible development environments
1266(@pxref{Invoking guix environment}).
1267
6447738c
MW
1268@item --remove=@var{package} @dots{}
1269@itemx -r @var{package} @dots{}
1270Remove the specified @var{package}s.
eeaf4427 1271
6447738c 1272As for @code{--install}, each @var{package} may specify a version number
13ed095c
LC
1273and/or output name in addition to the package name. For instance,
1274@code{-r glibc:debug} would remove the @code{debug} output of
1275@code{glibc}.
1276
6447738c
MW
1277@item --upgrade[=@var{regexp} @dots{}]
1278@itemx -u [@var{regexp} @dots{}]
1279Upgrade all the installed packages. If one or more @var{regexp}s are
1280specified, upgrade only installed packages whose name matches a
d5f01e48 1281@var{regexp}. Also see the @code{--do-not-upgrade} option below.
eeaf4427 1282
f651b477
LC
1283Note that this upgrades package to the latest version of packages found
1284in the distribution currently installed. To update your distribution,
1285you should regularly run @command{guix pull} (@pxref{Invoking guix
1286pull}).
1287
d5f01e48
MW
1288@item --do-not-upgrade[=@var{regexp} @dots{}]
1289When used together with the @code{--upgrade} option, do @emph{not}
1290upgrade any packages whose name matches a @var{regexp}. For example, to
1291upgrade all packages in the current profile except those containing the
1292substring ``emacs'':
1293
1294@example
1295$ guix package --upgrade . --do-not-upgrade emacs
1296@end example
1297
99bd74d5 1298@item @anchor{profile-manifest}--manifest=@var{file}
1b676447 1299@itemx -m @var{file}
99bd74d5
LC
1300@cindex profile declaration
1301@cindex profile manifest
1302Create a new generation of the profile from the manifest object
1b676447
DT
1303returned by the Scheme code in @var{file}.
1304
99bd74d5
LC
1305This allows you to @emph{declare} the profile's contents rather than
1306constructing it through a sequence of @code{--install} and similar
1307commands. The advantage is that @var{file} can be put under version
1308control, copied to different machines to reproduce the same profile, and
1309so on.
1310
1311@c FIXME: Add reference to (guix profile) documentation when available.
1312@var{file} must return a @dfn{manifest} object, which is roughly a list
1313of packages:
1b676447 1314
99bd74d5 1315@findex packages->manifest
1b676447 1316@example
99bd74d5 1317(use-package-modules guile emacs)
1b676447
DT
1318
1319(packages->manifest
99bd74d5
LC
1320 (list emacs
1321 guile-2.0
1b676447 1322 ;; Use a specific package output.
99bd74d5 1323 (list guile-2.0 "debug")))
1b676447
DT
1324@end example
1325
24e262f0
LC
1326@item --roll-back
1327Roll back to the previous @dfn{generation} of the profile---i.e., undo
1328the last transaction.
1329
1330When combined with options such as @code{--install}, roll back occurs
1331before any other actions.
1332
d9307267 1333When rolling back from the first generation that actually contains
4b2bc804
NK
1334installed packages, the profile is made to point to the @dfn{zeroth
1335generation}, which contains no files apart from its own meta-data.
d9307267 1336
82fe08ed
LC
1337Installing, removing, or upgrading packages from a generation that has
1338been rolled back to overwrites previous future generations. Thus, the
1339history of a profile's generations is always linear.
1340
b3bb82f1
AK
1341@item --switch-generation=@var{pattern}
1342@itemx -S @var{pattern}
1343Switch to a particular generation defined by @var{pattern}.
1344
1345@var{pattern} may be either a generation number or a number prefixed
1346with ``+'' or ``-''. The latter means: move forward/backward by a
1347specified number of generations. For example, if you want to return to
1348the latest generation after @code{--roll-back}, use
1349@code{--switch-generation=+1}.
1350
1351The difference between @code{--roll-back} and
1352@code{--switch-generation=-1} is that @code{--switch-generation} will
1353not make a zeroth generation, so if a specified generation does not
1354exist, the current generation will not be changed.
1355
dbc31ab2 1356@item --search-paths[=@var{kind}]
5924080d
LC
1357@cindex search paths
1358Report environment variable definitions, in Bash syntax, that may be
1359needed in order to use the set of installed packages. These environment
1360variables are used to specify @dfn{search paths} for files used by some
1361of the installed packages.
1362
1363For example, GCC needs the @code{CPATH} and @code{LIBRARY_PATH}
1364environment variables to be defined so it can look for headers and
1365libraries in the user's profile (@pxref{Environment Variables,,, gcc,
1366Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C
1367library are installed in the profile, then @code{--search-paths} will
1368suggest setting these variables to @code{@var{profile}/include} and
1369@code{@var{profile}/lib}, respectively.
1370
dbc31ab2
LC
1371The typical use case is to define these environment variables in the
1372shell:
1373
1374@example
1375$ eval `guix package --search-paths`
1376@end example
1377
1378@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix},
1379meaning that the returned environment variable definitions will either
1380be exact settings, or prefixes or suffixes of the current value of these
1381variables. When omitted, @var{kind} defaults to @code{exact}.
1382
fc2d2339
LC
1383This option can also be used to compute the @emph{combined} search paths
1384of several profiles. Consider this example:
1385
1386@example
1387$ guix package -p foo -i guile
1388$ guix package -p bar -i guile-json
1389$ guix package -p foo -p bar --search-paths
1390@end example
1391
1392The last command above reports about the @code{GUILE_LOAD_PATH}
1393variable, even though, taken individually, neither @file{foo} nor
1394@file{bar} would lead to that recommendation.
1395
1396
eeaf4427
LC
1397@item --profile=@var{profile}
1398@itemx -p @var{profile}
1399Use @var{profile} instead of the user's default profile.
1400
70915c1a
LC
1401@item --verbose
1402Produce verbose output. In particular, emit the environment's build log
1403on the standard error port.
1404
eeaf4427
LC
1405@item --bootstrap
1406Use the bootstrap Guile to build the profile. This option is only
1407useful to distribution developers.
1408
1409@end table
1410
e49951eb 1411In addition to these actions @command{guix package} supports the
733b4130
LC
1412following options to query the current state of a profile, or the
1413availability of packages:
eeaf4427 1414
733b4130
LC
1415@table @option
1416
acc08466
NK
1417@item --search=@var{regexp}
1418@itemx -s @var{regexp}
5763ad92 1419List the available packages whose name, synopsis, or description matches
299112d3
LC
1420@var{regexp}. Print all the meta-data of matching packages in
1421@code{recutils} format (@pxref{Top, GNU recutils databases,, recutils,
1422GNU recutils manual}).
acc08466 1423
299112d3
LC
1424This allows specific fields to be extracted using the @command{recsel}
1425command, for instance:
1426
1427@example
e49951eb 1428$ guix package -s malloc | recsel -p name,version
299112d3
LC
1429name: glibc
1430version: 2.17
1431
1432name: libgc
1433version: 7.2alpha6
1434@end example
acc08466 1435
a12d92f5
LC
1436Similarly, to show the name of all the packages available under the
1437terms of the GNU@tie{}LGPL version 3:
1438
1439@example
1440$ guix package -s "" | recsel -p name -e 'license ~ "LGPL 3"'
1441name: elfutils
1442
1443name: gmp
1444@dots{}
1445@end example
1446
2aa6efb0
CR
1447@item --show=@var{package}
1448Show details about @var{package}, taken from the list of available packages, in
1449@code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU
1450recutils manual}).
1451
1452@example
1453$ guix package --show=python | recsel -p name,version
1454name: python
1455version: 2.7.6
1456
1457name: python
1458version: 3.3.5
1459@end example
1460
1461You may also specify the full name of a package to only get details about a
1462specific version of it:
1463@example
1464$ guix package --show=python-3.3.5 | recsel -p name,version
1465name: python
1466version: 3.3.5
1467@end example
1468
1469
1470
733b4130
LC
1471@item --list-installed[=@var{regexp}]
1472@itemx -I [@var{regexp}]
bd9bde1c
LC
1473List the currently installed packages in the specified profile, with the
1474most recently installed packages shown last. When @var{regexp} is
1475specified, list only installed packages whose name matches @var{regexp}.
733b4130
LC
1476
1477For each installed package, print the following items, separated by
1478tabs: the package name, its version string, the part of the package that
1479is installed (for instance, @code{out} for the default output,
1480@code{include} for its headers, etc.), and the path of this package in
1481the store.
1482
64fc89b6
LC
1483@item --list-available[=@var{regexp}]
1484@itemx -A [@var{regexp}]
5763ad92 1485List packages currently available in the distribution for this system
a1ba8475
LC
1486(@pxref{GNU Distribution}). When @var{regexp} is specified, list only
1487installed packages whose name matches @var{regexp}.
64fc89b6
LC
1488
1489For each package, print the following items separated by tabs: its name,
6e721c4d
LC
1490its version string, the parts of the package (@pxref{Packages with
1491Multiple Outputs}), and the source location of its definition.
64fc89b6 1492
f566d765
LC
1493@item --list-generations[=@var{pattern}]
1494@itemx -l [@var{pattern}]
1495Return a list of generations along with their creation dates; for each
1496generation, show the installed packages, with the most recently
4b2bc804
NK
1497installed packages shown last. Note that the zeroth generation is never
1498shown.
f566d765
LC
1499
1500For each installed package, print the following items, separated by
1501tabs: the name of a package, its version string, the part of the package
1502that is installed (@pxref{Packages with Multiple Outputs}), and the
1503location of this package in the store.
1504
1505When @var{pattern} is used, the command returns only matching
1506generations. Valid patterns include:
1507
1508@itemize
1509@item @emph{Integers and comma-separated integers}. Both patterns denote
1510generation numbers. For instance, @code{--list-generations=1} returns
1511the first one.
1512
1513And @code{--list-generations=1,8,2} outputs three generations in the
1514specified order. Neither spaces nor trailing commas are allowed.
1515
1516@item @emph{Ranges}. @code{--list-generations=2..9} prints the
1517specified generations and everything in between. Note that the start of
1518a range must be lesser than its end.
1519
1520It is also possible to omit the endpoint. For example,
1521@code{--list-generations=2..}, returns all generations starting from the
1522second one.
1523
1524@item @emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks,
1525or months by passing an integer along with the first letter of the
d7ddb257
LC
1526duration. For example, @code{--list-generations=20d} lists generations
1527that are up to 20 days old.
f566d765
LC
1528@end itemize
1529
b7884ca3
NK
1530@item --delete-generations[=@var{pattern}]
1531@itemx -d [@var{pattern}]
d7ddb257
LC
1532When @var{pattern} is omitted, delete all generations except the current
1533one.
b7884ca3
NK
1534
1535This command accepts the same patterns as @option{--list-generations}.
d7ddb257
LC
1536When @var{pattern} is specified, delete the matching generations. When
1537@var{pattern} specifies a duration, generations @emph{older} than the
1538specified duration match. For instance, @code{--delete-generations=1m}
1539deletes generations that are more than one month old.
1540
391bdd8f
LC
1541If the current generation matches, it is @emph{not} deleted. Also, the
1542zeroth generation is never deleted.
b7884ca3 1543
1bb9900a
LC
1544Note that deleting generations prevents roll-back to them.
1545Consequently, this command must be used with care.
1546
733b4130 1547@end table
eeaf4427 1548
70ee5642
LC
1549Finally, since @command{guix package} may actually start build
1550processes, it supports all the common build options that @command{guix
1551build} supports (@pxref{Invoking guix build, common build options}).
1552
c4202d60
LC
1553@node Substitutes
1554@section Substitutes
1555
1556@cindex substitutes
1557@cindex pre-built binaries
1558Guix supports transparent source/binary deployment, which means that it
1559can either build things locally, or download pre-built items from a
1560server. We call these pre-built items @dfn{substitutes}---they are
1561substitutes for local build results. In many cases, downloading a
1562substitute is much faster than building things locally.
1563
1564Substitutes can be anything resulting from a derivation build
1565(@pxref{Derivations}). Of course, in the common case, they are
1566pre-built package binaries, but source tarballs, for instance, which
1567also result from derivation builds, can be available as substitutes.
1568
1569The @code{hydra.gnu.org} server is a front-end to a build farm that
1570builds packages from the GNU distribution continuously for some
9176607e 1571architectures, and makes them available as substitutes. This is the
f8a8e0fe
LC
1572default source of substitutes; it can be overridden by passing the
1573@option{--substitute-urls} option either to @command{guix-daemon}
1574(@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}})
1575or to client tools such as @command{guix package}
1576(@pxref{client-substitute-urls,, client @option{--substitute-urls}
1577option}).
c4202d60
LC
1578
1579@cindex security
1580@cindex digital signatures
1581To allow Guix to download substitutes from @code{hydra.gnu.org}, you
1582must add its public key to the access control list (ACL) of archive
1583imports, using the @command{guix archive} command (@pxref{Invoking guix
1584archive}). Doing so implies that you trust @code{hydra.gnu.org} to not
1585be compromised and to serve genuine substitutes.
1586
1587This public key is installed along with Guix, in
1588@code{@var{prefix}/share/guix/hydra.gnu.org.pub}, where @var{prefix} is
1589the installation prefix of Guix. If you installed Guix from source,
1590make sure you checked the GPG signature of
1591@file{guix-@value{VERSION}.tar.gz}, which contains this public key file.
1592Then, you can run something like this:
1593
1594@example
1595# guix archive --authorize < hydra.gnu.org.pub
1596@end example
1597
1598Once this is in place, the output of a command like @code{guix build}
1599should change from something like:
1600
1601@example
1602$ guix build emacs --dry-run
1603The following derivations would be built:
1604 /gnu/store/yr7bnx8xwcayd6j95r2clmkdl1qh688w-emacs-24.3.drv
1605 /gnu/store/x8qsh1hlhgjx6cwsjyvybnfv2i37z23w-dbus-1.6.4.tar.gz.drv
1606 /gnu/store/1ixwp12fl950d15h2cj11c73733jay0z-alsa-lib-1.0.27.1.tar.bz2.drv
1607 /gnu/store/nlma1pw0p603fpfiqy7kn4zm105r5dmw-util-linux-2.21.drv
1608@dots{}
1609@end example
1610
1611@noindent
1612to something like:
1613
1614@example
1615$ guix build emacs --dry-run
1616The following files would be downloaded:
1617 /gnu/store/pk3n22lbq6ydamyymqkkz7i69wiwjiwi-emacs-24.3
1618 /gnu/store/2ygn4ncnhrpr61rssa6z0d9x22si0va3-libjpeg-8d
1619 /gnu/store/71yz6lgx4dazma9dwn2mcjxaah9w77jq-cairo-1.12.16
1620 /gnu/store/7zdhgp0n1518lvfn8mb96sxqfmvqrl7v-libxrender-0.9.7
1621@dots{}
1622@end example
1623
1624@noindent
1625This indicates that substitutes from @code{hydra.gnu.org} are usable and
1626will be downloaded, when possible, for future builds.
1627
1628Guix ignores substitutes that are not signed, or that are not signed by
ef27aa9c 1629one of the keys listed in the ACL. It also detects and raises an error
c4202d60
LC
1630when attempting to use a substitute that has been tampered with.
1631
1632The substitute mechanism can be disabled globally by running
1633@code{guix-daemon} with @code{--no-substitutes} (@pxref{Invoking
1634guix-daemon}). It can also be disabled temporarily by passing the
1635@code{--no-substitutes} option to @command{guix package}, @command{guix
1636build}, and other command-line tools.
1637
1638
1639Today, each individual's control over their own computing is at the
1640mercy of institutions, corporations, and groups with enough power and
1641determination to subvert the computing infrastructure and exploit its
1642weaknesses. While using @code{hydra.gnu.org} substitutes can be
1643convenient, we encourage users to also build on their own, or even run
1644their own build farm, such that @code{hydra.gnu.org} is less of an
8ce229fc
LC
1645interesting target. One way to help is by publishing the software you
1646build using @command{guix publish} so that others have one more choice
1647of server to download substitutes from (@pxref{Invoking guix publish}).
c4202d60
LC
1648
1649Guix has the foundations to maximize build reproducibility
1650(@pxref{Features}). In most cases, independent builds of a given
1651package or derivation should yield bit-identical results. Thus, through
1652a diverse set of independent package builds, we can strengthen the
d23c20f1
LC
1653integrity of our systems. The @command{guix challenge} command aims to
1654help users assess substitute servers, and to assist developers in
1655finding out about non-deterministic package builds (@pxref{Invoking guix
a8d65643
LC
1656challenge}). Similarly, the @option{--check} option of @command{guix
1657build} allows users to check whether previously-installed substitutes
1658are genuine by rebuilding them locally (@pxref{build-check,
1659@command{guix build --check}}).
c4202d60
LC
1660
1661In the future, we want Guix to have support to publish and retrieve
1662binaries to/from other users, in a peer-to-peer fashion. If you would
1663like to discuss this project, join us on @email{guix-devel@@gnu.org}.
1664
1665
6e721c4d
LC
1666@node Packages with Multiple Outputs
1667@section Packages with Multiple Outputs
1668
1669@cindex multiple-output packages
1670@cindex package outputs
1671
1672Often, packages defined in Guix have a single @dfn{output}---i.e., the
1673source package leads exactly one directory in the store. When running
1674@command{guix package -i glibc}, one installs the default output of the
1675GNU libc package; the default output is called @code{out}, but its name
1676can be omitted as shown in this command. In this particular case, the
1677default output of @code{glibc} contains all the C header files, shared
1678libraries, static libraries, Info documentation, and other supporting
1679files.
1680
1681Sometimes it is more appropriate to separate the various types of files
1682produced from a single source package into separate outputs. For
1683instance, the GLib C library (used by GTK+ and related packages)
1684installs more than 20 MiB of reference documentation as HTML pages.
1685To save space for users who do not need it, the documentation goes to a
1686separate output, called @code{doc}. To install the main GLib output,
1687which contains everything but the documentation, one would run:
1688
1689@example
1690guix package -i glib
1691@end example
1692
1693The command to install its documentation is:
1694
1695@example
1696guix package -i glib:doc
1697@end example
1698
1699Some packages install programs with different ``dependency footprints''.
1700For instance, the WordNet package install both command-line tools and
1701graphical user interfaces (GUIs). The former depend solely on the C
1702library, whereas the latter depend on Tcl/Tk and the underlying X
1703libraries. In this case, we leave the command-line tools in the default
1704output, whereas the GUIs are in a separate output. This allows users
fcc58db6
LC
1705who do not need the GUIs to save space. The @command{guix size} command
1706can help find out about such situations (@pxref{Invoking guix size}).
88856916 1707@command{guix graph} can also be helpful (@pxref{Invoking guix graph}).
6e721c4d
LC
1708
1709There are several such multiple-output packages in the GNU distribution.
91ef73d4
LC
1710Other conventional output names include @code{lib} for libraries and
1711possibly header files, @code{bin} for stand-alone programs, and
1712@code{debug} for debugging information (@pxref{Installing Debugging
1713Files}). The outputs of a packages are listed in the third column of
1714the output of @command{guix package --list-available} (@pxref{Invoking
1715guix package}).
6e721c4d 1716
eeaf4427 1717
e49951eb
MW
1718@node Invoking guix gc
1719@section Invoking @command{guix gc}
fe8ff028
LC
1720
1721@cindex garbage collector
1722Packages that are installed but not used may be @dfn{garbage-collected}.
e49951eb 1723The @command{guix gc} command allows users to explicitly run the garbage
c22eb992
LC
1724collector to reclaim space from the @file{/gnu/store} directory. It is
1725the @emph{only} way to remove files from @file{/gnu/store}---removing
1726files or directories manually may break it beyond repair!
fe8ff028
LC
1727
1728The garbage collector has a set of known @dfn{roots}: any file under
834129e0 1729@file{/gnu/store} reachable from a root is considered @dfn{live} and
fe8ff028
LC
1730cannot be deleted; any other file is considered @dfn{dead} and may be
1731deleted. The set of garbage collector roots includes default user
e49951eb
MW
1732profiles, and may be augmented with @command{guix build --root}, for
1733example (@pxref{Invoking guix build}).
fe8ff028 1734
1bb9900a
LC
1735Prior to running @code{guix gc --collect-garbage} to make space, it is
1736often useful to remove old generations from user profiles; that way, old
1737package builds referenced by those generations can be reclaimed. This
1738is achieved by running @code{guix package --delete-generations}
1739(@pxref{Invoking guix package}).
1740
e49951eb 1741The @command{guix gc} command has three modes of operation: it can be
fe8ff028 1742used to garbage-collect any dead files (the default), to delete specific
7770aafc
LC
1743files (the @code{--delete} option), to print garbage-collector
1744information, or for more advanced queries. The garbage collection
1745options are as follows:
fe8ff028
LC
1746
1747@table @code
1748@item --collect-garbage[=@var{min}]
1749@itemx -C [@var{min}]
834129e0 1750Collect garbage---i.e., unreachable @file{/gnu/store} files and
fe8ff028
LC
1751sub-directories. This is the default operation when no option is
1752specified.
1753
1754When @var{min} is given, stop once @var{min} bytes have been collected.
1755@var{min} may be a number of bytes, or it may include a unit as a
4a44d7bb
LC
1756suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes
1757(@pxref{Block size, size specifications,, coreutils, GNU Coreutils}).
fe8ff028
LC
1758
1759When @var{min} is omitted, collect all the garbage.
1760
1761@item --delete
1762@itemx -d
1763Attempt to delete all the store files and directories specified as
1764arguments. This fails if some of the files are not in the store, or if
1765they are still live.
1766
30d9aa54
LC
1767@item --list-failures
1768List store items corresponding to cached build failures.
1769
1770This prints nothing unless the daemon was started with
1771@option{--cache-failures} (@pxref{Invoking guix-daemon,
1772@option{--cache-failures}}).
1773
1774@item --clear-failures
1775Remove the specified store items from the failed-build cache.
1776
1777Again, this option only makes sense when the daemon is started with
1778@option{--cache-failures}. Otherwise, it does nothing.
1779
fe8ff028
LC
1780@item --list-dead
1781Show the list of dead files and directories still present in the
1782store---i.e., files and directories no longer reachable from any root.
1783
1784@item --list-live
1785Show the list of live store files and directories.
ba8b732d
LC
1786
1787@end table
1788
1789In addition, the references among existing store files can be queried:
1790
1791@table @code
1792
1793@item --references
1794@itemx --referrers
1795List the references (respectively, the referrers) of store files given
1796as arguments.
1797
8e59fdd5
LC
1798@item --requisites
1799@itemx -R
fcc58db6 1800@cindex closure
8e59fdd5
LC
1801List the requisites of the store files passed as arguments. Requisites
1802include the store files themselves, their references, and the references
1803of these, recursively. In other words, the returned list is the
1804@dfn{transitive closure} of the store files.
1805
fcc58db6 1806@xref{Invoking guix size}, for a tool to profile the size of an
88856916
LC
1807element's closure. @xref{Invoking guix graph}, for a tool to visualize
1808the graph of references.
fcc58db6 1809
fe8ff028
LC
1810@end table
1811
7770aafc
LC
1812Lastly, the following options allow you to check the integrity of the
1813store and to control disk usage.
1814
1815@table @option
1816
1817@item --verify[=@var{options}]
1818@cindex integrity, of the store
1819@cindex integrity checking
1820Verify the integrity of the store.
1821
1822By default, make sure that all the store items marked as valid in the
1823daemon's database actually exist in @file{/gnu/store}.
1824
1825When provided, @var{options} must a comma-separated list containing one
1826or more of @code{contents} and @code{repair}.
1827
1828When passing @option{--verify=contents}, the daemon will compute the
1829content hash of each store item and compare it against its hash in the
1830database. Hash mismatches are reported as data corruptions. Because it
1831traverses @emph{all the files in the store}, this command can take a
1832long time, especially on systems with a slow disk drive.
1833
1834@cindex repairing the store
1835Using @option{--verify=repair} or @option{--verify=contents,repair}
1836causes the daemon to try to repair corrupt store items by fetching
1837substitutes for them (@pxref{Substitutes}). Because repairing is not
1838atomic, and thus potentially dangerous, it is available only to the
1839system administrator.
1840
1841@item --optimize
1842@cindex deduplication
1843Optimize the store by hard-linking identical files---this is
1844@dfn{deduplication}.
1845
1846The daemon performs deduplication after each successful build or archive
1847import, unless it was started with @code{--disable-deduplication}
1848(@pxref{Invoking guix-daemon, @code{--disable-deduplication}}). Thus,
1849this option is primarily useful when the daemon was running with
1850@code{--disable-deduplication}.
1851
1852@end table
eeaf4427 1853
f651b477
LC
1854@node Invoking guix pull
1855@section Invoking @command{guix pull}
1856
1857Packages are installed or upgraded to the latest version available in
1858the distribution currently available on your local machine. To update
1859that distribution, along with the Guix tools, you must run @command{guix
1860pull}: the command downloads the latest Guix source code and package
1861descriptions, and deploys it.
1862
1863On completion, @command{guix package} will use packages and package
1864versions from this just-retrieved copy of Guix. Not only that, but all
1865the Guix commands and Scheme modules will also be taken from that latest
1866version. New @command{guix} sub-commands added by the update also
ef54b61d
AV
1867become available@footnote{Under the hood, @command{guix pull} updates
1868the @file{~/.config/guix/latest} symbolic link to point to the latest
1869Guix, and the @command{guix} command loads code from there.}.
f651b477
LC
1870
1871The @command{guix pull} command is usually invoked with no arguments,
1872but it supports the following options:
1873
1874@table @code
1875@item --verbose
1876Produce verbose output, writing build logs to the standard error output.
1877
ab5d72ad
LC
1878@item --url=@var{url}
1879Download the source tarball of Guix from @var{url}.
1880
1881By default, the tarball is taken from its canonical address at
1882@code{gnu.org}, for the stable branch of Guix.
1883
f651b477
LC
1884@item --bootstrap
1885Use the bootstrap Guile to build the latest Guix. This option is only
1886useful to Guix developers.
1887@end table
1888
760c60d6
LC
1889
1890@node Invoking guix archive
1891@section Invoking @command{guix archive}
1892
1893The @command{guix archive} command allows users to @dfn{export} files
1894from the store into a single archive, and to later @dfn{import} them.
1895In particular, it allows store files to be transferred from one machine
1896to another machine's store. For example, to transfer the @code{emacs}
1897package to a machine connected over SSH, one would run:
1898
1899@example
56607088 1900guix archive --export -r emacs | ssh the-machine guix archive --import
760c60d6
LC
1901@end example
1902
87236aed 1903@noindent
56607088
LC
1904Similarly, a complete user profile may be transferred from one machine
1905to another like this:
1906
1907@example
1908guix archive --export -r $(readlink -f ~/.guix-profile) | \
1909 ssh the-machine guix-archive --import
1910@end example
1911
1912@noindent
1913However, note that, in both examples, all of @code{emacs} and the
1914profile as well as all of their dependencies are transferred (due to
1915@code{-r}), regardless of what is already available in the target
1916machine's store. The @code{--missing} option can help figure out which
1917items are missing from the target's store.
87236aed 1918
760c60d6 1919Archives are stored in the ``Nix archive'' or ``Nar'' format, which is
0dbd88db
LC
1920comparable in spirit to `tar', but with a few noteworthy differences
1921that make it more appropriate for our purposes. First, rather than
1922recording all Unix meta-data for each file, the Nar format only mentions
1923the file type (regular, directory, or symbolic link); Unix permissions
1924and owner/group are dismissed. Second, the order in which directory
1925entries are stored always follows the order of file names according to
1926the C locale collation order. This makes archive production fully
1927deterministic.
1928
1929When exporting, the daemon digitally signs the contents of the archive,
1930and that digital signature is appended. When importing, the daemon
1931verifies the signature and rejects the import in case of an invalid
1932signature or if the signing key is not authorized.
760c60d6
LC
1933@c FIXME: Add xref to daemon doc about signatures.
1934
1935The main options are:
1936
1937@table @code
1938@item --export
1939Export the specified store files or packages (see below.) Write the
1940resulting archive to the standard output.
1941
56607088
LC
1942Dependencies are @emph{not} included in the output, unless
1943@code{--recursive} is passed.
1944
1945@item -r
1946@itemx --recursive
1947When combined with @code{--export}, this instructs @command{guix
1948archive} to include dependencies of the given items in the archive.
1949Thus, the resulting archive is self-contained: it contains the closure
1950of the exported store items.
1951
760c60d6
LC
1952@item --import
1953Read an archive from the standard input, and import the files listed
1954therein into the store. Abort if the archive has an invalid digital
f82cc5fd
LC
1955signature, or if it is signed by a public key not among the authorized
1956keys (see @code{--authorize} below.)
554f26ec 1957
87236aed
LC
1958@item --missing
1959Read a list of store file names from the standard input, one per line,
1960and write on the standard output the subset of these files missing from
1961the store.
1962
554f26ec 1963@item --generate-key[=@var{parameters}]
f82cc5fd 1964@cindex signing, archives
554f26ec
LC
1965Generate a new key pair for the daemons. This is a prerequisite before
1966archives can be exported with @code{--export}. Note that this operation
1967usually takes time, because it needs to gather enough entropy to
1968generate the key pair.
1969
1970The generated key pair is typically stored under @file{/etc/guix}, in
1971@file{signing-key.pub} (public key) and @file{signing-key.sec} (private
867d8473
LC
1972key, which must be kept secret.) When @var{parameters} is omitted,
1973an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt
1974versions before 1.6.0, it is a 4096-bit RSA key.
1975Alternately, @var{parameters} can specify
554f26ec
LC
1976@code{genkey} parameters suitable for Libgcrypt (@pxref{General
1977public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The
1978Libgcrypt Reference Manual}).
f82cc5fd
LC
1979
1980@item --authorize
1981@cindex authorizing, archives
1982Authorize imports signed by the public key passed on standard input.
1983The public key must be in ``s-expression advanced format''---i.e., the
1984same format as the @file{signing-key.pub} file.
1985
1986The list of authorized keys is kept in the human-editable file
1987@file{/etc/guix/acl}. The file contains
1988@url{http://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format
1989s-expressions''} and is structured as an access-control list in the
1990@url{http://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure
1991(SPKI)}.
c6f8e9dd
LC
1992
1993@item --extract=@var{directory}
1994@itemx -x @var{directory}
1995Read a single-item archive as served by substitute servers
1996(@pxref{Substitutes}) and extract it to @var{directory}. This is a
1997low-level operation needed in only very narrow use cases; see below.
1998
1999For example, the following command extracts the substitute for Emacs
2000served by @code{hydra.gnu.org} to @file{/tmp/emacs}:
2001
2002@example
2003$ wget -O - \
2004 http://hydra.gnu.org/nar/@dots{}-emacs-24.5 \
2005 | bunzip2 | guix archive -x /tmp/emacs
2006@end example
2007
2008Single-item archives are different from multiple-item archives produced
2009by @command{guix archive --export}; they contain a single store item,
2010and they do @emph{not} embed a signature. Thus this operation does
2011@emph{no} signature verification and its output should be considered
2012unsafe.
2013
2014The primary purpose of this operation is to facilitate inspection of
2015archive contents coming from possibly untrusted substitute servers.
2016
760c60d6
LC
2017@end table
2018
2019To export store files as an archive to the standard output, run:
2020
2021@example
2022guix archive --export @var{options} @var{specifications}...
2023@end example
2024
2025@var{specifications} may be either store file names or package
2026specifications, as for @command{guix package} (@pxref{Invoking guix
2027package}). For instance, the following command creates an archive
2028containing the @code{gui} output of the @code{git} package and the main
2029output of @code{emacs}:
2030
2031@example
834129e0 2032guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar
760c60d6
LC
2033@end example
2034
2035If the specified packages are not built yet, @command{guix archive}
2036automatically builds them. The build process may be controlled with the
2037same options that can be passed to the @command{guix build} command
70ee5642 2038(@pxref{Invoking guix build, common build options}).
760c60d6 2039
c554de89
AK
2040@c *********************************************************************
2041@include emacs.texi
760c60d6 2042
568717fd
LC
2043@c *********************************************************************
2044@node Programming Interface
2045@chapter Programming Interface
2046
3dc1970d
LC
2047GNU Guix provides several Scheme programming interfaces (APIs) to
2048define, build, and query packages. The first interface allows users to
2049write high-level package definitions. These definitions refer to
2050familiar packaging concepts, such as the name and version of a package,
2051its build system, and its dependencies. These definitions can then be
2052turned into concrete build actions.
2053
ba55b1cb 2054Build actions are performed by the Guix daemon, on behalf of users. In a
3dc1970d 2055standard setup, the daemon has write access to the store---the
834129e0 2056@file{/gnu/store} directory---whereas users do not. The recommended
3dc1970d
LC
2057setup also has the daemon perform builds in chroots, under a specific
2058build users, to minimize interference with the rest of the system.
2059
2060@cindex derivation
2061Lower-level APIs are available to interact with the daemon and the
2062store. To instruct the daemon to perform a build action, users actually
2063provide it with a @dfn{derivation}. A derivation is a low-level
2064representation of the build actions to be taken, and the environment in
2065which they should occur---derivations are to package definitions what
49ad317a
LC
2066assembly is to C programs. The term ``derivation'' comes from the fact
2067that build results @emph{derive} from them.
3dc1970d
LC
2068
2069This chapter describes all these APIs in turn, starting from high-level
2070package definitions.
2071
568717fd 2072@menu
b860f382 2073* Defining Packages:: Defining new packages.
7458bd0a 2074* Build Systems:: Specifying how packages are built.
b860f382
LC
2075* The Store:: Manipulating the package store.
2076* Derivations:: Low-level interface to package derivations.
2077* The Store Monad:: Purely functional interface to the store.
21b679f6 2078* G-Expressions:: Manipulating build expressions.
568717fd
LC
2079@end menu
2080
2081@node Defining Packages
2082@section Defining Packages
2083
3dc1970d
LC
2084The high-level interface to package definitions is implemented in the
2085@code{(guix packages)} and @code{(guix build-system)} modules. As an
2086example, the package definition, or @dfn{recipe}, for the GNU Hello
2087package looks like this:
2088
2089@example
e7f34eb0
LC
2090(define-module (gnu packages hello)
2091 #:use-module (guix packages)
2092 #:use-module (guix download)
2093 #:use-module (guix build-system gnu)
a6dcdcac
SB
2094 #:use-module (guix licenses)
2095 #:use-module (gnu packages gawk))
b22a12fd 2096
79f5dd59 2097(define-public hello
3dc1970d
LC
2098 (package
2099 (name "hello")
17d8e33f 2100 (version "2.10")
3dc1970d 2101 (source (origin
17d8e33f
ML
2102 (method url-fetch)
2103 (uri (string-append "mirror://gnu/hello/hello-" version
2104 ".tar.gz"))
2105 (sha256
2106 (base32
2107 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
3dc1970d 2108 (build-system gnu-build-system)
7458bd0a 2109 (arguments `(#:configure-flags '("--enable-silent-rules")))
3dc1970d 2110 (inputs `(("gawk" ,gawk)))
7458bd0a
LC
2111 (synopsis "Hello, GNU world: An example GNU package")
2112 (description "Guess what GNU Hello prints!")
3dc1970d 2113 (home-page "http://www.gnu.org/software/hello/")
b22a12fd 2114 (license gpl3+)))
3dc1970d
LC
2115@end example
2116
2117@noindent
2118Without being a Scheme expert, the reader may have guessed the meaning
e7f34eb0 2119of the various fields here. This expression binds variable @code{hello}
3dc1970d
LC
2120to a @code{<package>} object, which is essentially a record
2121(@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}).
2122This package object can be inspected using procedures found in the
2123@code{(guix packages)} module; for instance, @code{(package-name hello)}
2124returns---surprise!---@code{"hello"}.
2125
2f7d2d91
LC
2126With luck, you may be able to import part or all of the definition of
2127the package you are interested in from another repository, using the
2128@code{guix import} command (@pxref{Invoking guix import}).
2129
e7f34eb0
LC
2130In the example above, @var{hello} is defined into a module of its own,
2131@code{(gnu packages hello)}. Technically, this is not strictly
2132necessary, but it is convenient to do so: all the packages defined in
2133modules under @code{(gnu packages @dots{})} are automatically known to
2134the command-line tools (@pxref{Package Modules}).
2135
3dc1970d
LC
2136There are a few points worth noting in the above package definition:
2137
2138@itemize
2139@item
a2bf4907
LC
2140The @code{source} field of the package is an @code{<origin>} object
2141(@pxref{origin Reference}, for the complete reference).
3dc1970d
LC
2142Here, the @code{url-fetch} method from @code{(guix download)} is used,
2143meaning that the source is a file to be downloaded over FTP or HTTP.
2144
2145The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of
2146the GNU mirrors defined in @code{(guix download)}.
2147
2148The @code{sha256} field specifies the expected SHA256 hash of the file
2149being downloaded. It is mandatory, and allows Guix to check the
2150integrity of the file. The @code{(base32 @dots{})} form introduces the
6c365eca 2151base32 representation of the hash. You can obtain this information with
210cc920
LC
2152@code{guix download} (@pxref{Invoking guix download}) and @code{guix
2153hash} (@pxref{Invoking guix hash}).
3dc1970d 2154
f9cc8971
LC
2155@cindex patches
2156When needed, the @code{origin} form can also have a @code{patches} field
2157listing patches to be applied, and a @code{snippet} field giving a
2158Scheme expression to modify the source code.
2159
3dc1970d
LC
2160@item
2161@cindex GNU Build System
7458bd0a
LC
2162The @code{build-system} field specifies the procedure to build the
2163package (@pxref{Build Systems}). Here, @var{gnu-build-system}
2164represents the familiar GNU Build System, where packages may be
2165configured, built, and installed with the usual @code{./configure &&
2166make && make check && make install} command sequence.
2167
2168@item
2169The @code{arguments} field specifies options for the build system
2170(@pxref{Build Systems}). Here it is interpreted by
2171@var{gnu-build-system} as a request run @file{configure} with the
2172@code{--enable-silent-rules} flag.
3dc1970d
LC
2173
2174@item
2175The @code{inputs} field specifies inputs to the build process---i.e.,
2176build-time or run-time dependencies of the package. Here, we define an
2177input called @code{"gawk"} whose value is that of the @var{gawk}
2178variable; @var{gawk} is itself bound to a @code{<package>} object.
2179
2180Note that GCC, Coreutils, Bash, and other essential tools do not need to
2181be specified as inputs here. Instead, @var{gnu-build-system} takes care
7458bd0a 2182of ensuring that they are present (@pxref{Build Systems}).
3dc1970d
LC
2183
2184However, any other dependencies need to be specified in the
2185@code{inputs} field. Any dependency not specified here will simply be
2186unavailable to the build process, possibly leading to a build failure.
2187@end itemize
2188
87eafdbd
TUBK
2189@xref{package Reference}, for a full description of possible fields.
2190
2f7d2d91 2191Once a package definition is in place, the
e49951eb 2192package may actually be built using the @code{guix build} command-line
39bee8a2
LC
2193tool (@pxref{Invoking guix build}). You can easily jump back to the
2194package definition using the @command{guix edit} command
2195(@pxref{Invoking guix edit}).
2196@xref{Packaging Guidelines}, for
b4f5e0e8
CR
2197more information on how to test package definitions, and
2198@ref{Invoking guix lint}, for information on how to check a definition
2199for style conformance.
2200
7458bd0a
LC
2201Eventually, updating the package definition to a new upstream version
2202can be partly automated by the @command{guix refresh} command
2203(@pxref{Invoking guix refresh}).
3dc1970d
LC
2204
2205Behind the scenes, a derivation corresponding to the @code{<package>}
2206object is first computed by the @code{package-derivation} procedure.
834129e0 2207That derivation is stored in a @code{.drv} file under @file{/gnu/store}.
ba55b1cb 2208The build actions it prescribes may then be realized by using the
3dc1970d
LC
2209@code{build-derivations} procedure (@pxref{The Store}).
2210
2211@deffn {Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]
59688fc4
LC
2212Return the @code{<derivation>} object of @var{package} for @var{system}
2213(@pxref{Derivations}).
3dc1970d
LC
2214
2215@var{package} must be a valid @code{<package>} object, and @var{system}
2216must be a string denoting the target system type---e.g.,
2217@code{"x86_64-linux"} for an x86_64 Linux-based GNU system. @var{store}
2218must be a connection to the daemon, which operates on the store
2219(@pxref{The Store}).
2220@end deffn
568717fd 2221
9c1edabd
LC
2222@noindent
2223@cindex cross-compilation
2224Similarly, it is possible to compute a derivation that cross-builds a
2225package for some other system:
2226
2227@deffn {Scheme Procedure} package-cross-derivation @var{store} @
2228 @var{package} @var{target} [@var{system}]
59688fc4
LC
2229Return the @code{<derivation>} object of @var{package} cross-built from
2230@var{system} to @var{target}.
9c1edabd
LC
2231
2232@var{target} must be a valid GNU triplet denoting the target hardware
2233and operating system, such as @code{"mips64el-linux-gnu"}
2234(@pxref{Configuration Names, GNU configuration triplets,, configure, GNU
2235Configure and Build System}).
2236@end deffn
2237
87eafdbd
TUBK
2238@menu
2239* package Reference :: The package data type.
2240* origin Reference:: The origin data type.
2241@end menu
2242
2243
2244@node package Reference
2245@subsection @code{package} Reference
2246
2247This section summarizes all the options available in @code{package}
2248declarations (@pxref{Defining Packages}).
2249
2250@deftp {Data Type} package
2251This is the data type representing a package recipe.
2252
2253@table @asis
2254@item @code{name}
2255The name of the package, as a string.
2256
2257@item @code{version}
2258The version of the package, as a string.
2259
2260@item @code{source}
2261An origin object telling how the source code for the package should be
2262acquired (@pxref{origin Reference}).
2263
2264@item @code{build-system}
2265The build system that should be used to build the package (@pxref{Build
2266Systems}).
2267
2268@item @code{arguments} (default: @code{'()})
2269The arguments that should be passed to the build system. This is a
2270list, typically containing sequential keyword-value pairs.
2271
2272@item @code{inputs} (default: @code{'()})
70650c68
LC
2273@itemx @code{native-inputs} (default: @code{'()})
2274@itemx @code{propagated-inputs} (default: @code{'()})
2275@cindex inputs, of packages
2276These fields list dependencies of the package. Each one is a list of
2277tuples, where each tuple has a label for the input (a string) as its
2278first element, a package, origin, or derivation as its second element,
2279and optionally the name of the output thereof that should be used, which
2280defaults to @code{"out"} (@pxref{Packages with Multiple Outputs}, for
2281more on package outputs). For example, the list below specifies 3
2282inputs:
87eafdbd 2283
70650c68
LC
2284@example
2285`(("libffi" ,libffi)
2286 ("libunistring" ,libunistring)
2287 ("glib:bin" ,glib "bin")) ;the "bin" output of Glib
2288@end example
2289
2290@cindex cross compilation, package dependencies
2291The distinction between @code{native-inputs} and @code{inputs} is
2292necessary when considering cross-compilation. When cross-compiling,
2293dependencies listed in @code{inputs} are built for the @emph{target}
2294architecture; conversely, dependencies listed in @code{native-inputs}
2295are built for the architecture of the @emph{build} machine.
2296
2297@code{native-inputs} is typically where you would list tools needed at
2298build time but not at run time, such as Autoconf, Automake, pkg-config,
2299Gettext, or Bison. @command{guix lint} can report likely mistakes in
2300this area (@pxref{Invoking guix lint}).
2301
2302@anchor{package-propagated-inputs}
2303Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the
2304specified packages will be force-installed alongside the package they
2305belong to (@pxref{package-cmd-propagated-inputs, @command{guix
2306package}}, for information on how @command{guix package} deals with
2307propagated inputs.)
21461f27 2308
e0508b6b
LC
2309For example this is necessary when a C/C++ library needs headers of
2310another library to compile, or when a pkg-config file refers to another
2311one @i{via} its @code{Requires} field.
2312
2313Another example where @code{propagated-inputs} is useful is for
2314languages that lack a facility to record the run-time search path akin
2315to ELF's @code{RUNPATH}; this includes Guile, Python, Perl, GHC, and
2316more. To ensure that libraries written in those languages can find
2317library code they depend on at run time, run-time dependencies must be
2318listed in @code{propagated-inputs} rather than @code{inputs}.
87eafdbd 2319
87eafdbd
TUBK
2320@item @code{self-native-input?} (default: @code{#f})
2321This is a Boolean field telling whether the package should use itself as
2322a native input when cross-compiling.
2323
2324@item @code{outputs} (default: @code{'("out")})
2325The list of output names of the package. @xref{Packages with Multiple
2326Outputs}, for typical uses of additional outputs.
2327
2328@item @code{native-search-paths} (default: @code{'()})
2329@itemx @code{search-paths} (default: @code{'()})
2330A list of @code{search-path-specification} objects describing
2331search-path environment variables honored by the package.
2332
2333@item @code{replacement} (default: @code{#f})
2334This must either @code{#f} or a package object that will be used as a
2335@dfn{replacement} for this package. @xref{Security Updates, grafts},
2336for details.
2337
2338@item @code{synopsis}
2339A one-line description of the package.
2340
2341@item @code{description}
2342A more elaborate description of the package.
2343
2344@item @code{license}
2345The license of the package; a value from @code{(guix licenses)}.
2346
2347@item @code{home-page}
2348The URL to the home-page of the package, as a string.
2349
2350@item @code{supported-systems} (default: @var{%supported-systems})
2351The list of systems supported by the package, as strings of the form
2352@code{architecture-kernel}, for example @code{"x86_64-linux"}.
2353
2354@item @code{maintainers} (default: @code{'()})
2355The list of maintainers of the package, as @code{maintainer} objects.
2356
2357@item @code{location} (default: source location of the @code{package} form)
2358The source location of the package. It's useful to override this when
2359inheriting from another package, in which case this field is not
2360automatically corrected.
2361@end table
2362@end deftp
2363
2364
2365@node origin Reference
2366@subsection @code{origin} Reference
2367
2368This section summarizes all the options available in @code{origin}
2369declarations (@pxref{Defining Packages}).
2370
2371@deftp {Data Type} origin
2372This is the data type representing a source code origin.
2373
2374@table @asis
2375@item @code{uri}
2376An object containing the URI of the source. The object type depends on
2377the @code{method} (see below). For example, when using the
2378@var{url-fetch} method of @code{(guix download)}, the valid @code{uri}
2379values are: a URL represented as a string, or a list thereof.
2380
2381@item @code{method}
2382A procedure that will handle the URI.
2383
2384Examples include:
2385
2386@table @asis
2387@item @var{url-fetch} from @code{(guix download)}
2388download a file the HTTP, HTTPS, or FTP URL specified in the
2389@code{uri} field;
2390
2391@item @var{git-fetch} from @code{(guix git-download)}
2392clone the Git version control repository, and check out the revision
2393specified in the @code{uri} field as a @code{git-reference} object; a
2394@code{git-reference} looks like this:
2395
2396@example
2397(git-reference
2398 (url "git://git.debian.org/git/pkg-shadow/shadow")
2399 (commit "v4.1.5.1"))
2400@end example
2401@end table
2402
2403@item @code{sha256}
2404A bytevector containing the SHA-256 hash of the source. Typically the
2405@code{base32} form is used here to generate the bytevector from a
2406base-32 string.
2407
2408@item @code{file-name} (default: @code{#f})
2409The file name under which the source code should be saved. When this is
2410@code{#f}, a sensible default value will be used in most cases. In case
2411the source is fetched from a URL, the file name from the URL will be
2412used. For version control checkouts, it's recommended to provide the
2413file name explicitly because the default is not very descriptive.
2414
2415@item @code{patches} (default: @code{'()})
2416A list of file names containing patches to be applied to the source.
2417
2418@item @code{snippet} (default: @code{#f})
2419A quoted piece of code that will be run in the source directory to make
2420any modifications, which is sometimes more convenient than a patch.
2421
2422@item @code{patch-flags} (default: @code{'("-p1")})
2423A list of command-line flags that should be passed to the @code{patch}
2424command.
2425
2426@item @code{patch-inputs} (default: @code{#f})
2427Input packages or derivations to the patching process. When this is
2428@code{#f}, the usual set of inputs necessary for patching are provided,
2429such as GNU@tie{}Patch.
2430
2431@item @code{modules} (default: @code{'()})
2432A list of Guile modules that should be loaded during the patching
2433process and while running the code in the @code{snippet} field.
2434
2435@item @code{imported-modules} (default: @code{'()})
2436The list of Guile modules to import in the patch derivation, for use by
2437the @code{snippet}.
2438
2439@item @code{patch-guile} (default: @code{#f})
2440The Guile package that should be used in the patching process. When
2441this is @code{#f}, a sensible default is used.
2442@end table
2443@end deftp
2444
9c1edabd 2445
7458bd0a
LC
2446@node Build Systems
2447@section Build Systems
2448
2449@cindex build system
2450Each package definition specifies a @dfn{build system} and arguments for
2451that build system (@pxref{Defining Packages}). This @code{build-system}
2452field represents the build procedure of the package, as well implicit
2453dependencies of that build procedure.
2454
2455Build systems are @code{<build-system>} objects. The interface to
2456create and manipulate them is provided by the @code{(guix build-system)}
2457module, and actual build systems are exported by specific modules.
2458
f5fd4fd2 2459@cindex bag (low-level package representation)
0d5a559f
LC
2460Under the hood, build systems first compile package objects to
2461@dfn{bags}. A @dfn{bag} is like a package, but with less
2462ornamentation---in other words, a bag is a lower-level representation of
2463a package, which includes all the inputs of that package, including some
2464that were implicitly added by the build system. This intermediate
2465representation is then compiled to a derivation (@pxref{Derivations}).
2466
7458bd0a
LC
2467Build systems accept an optional list of @dfn{arguments}. In package
2468definitions, these are passed @i{via} the @code{arguments} field
2469(@pxref{Defining Packages}). They are typically keyword arguments
2470(@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU
2471Guile Reference Manual}). The value of these arguments is usually
2472evaluated in the @dfn{build stratum}---i.e., by a Guile process launched
2473by the daemon (@pxref{Derivations}).
2474
2475The main build system is @var{gnu-build-system}, which implements the
2476standard build procedure for GNU packages and many other packages. It
2477is provided by the @code{(guix build-system gnu)} module.
2478
2479@defvr {Scheme Variable} gnu-build-system
2480@var{gnu-build-system} represents the GNU Build System, and variants
2481thereof (@pxref{Configuration, configuration and makefile conventions,,
2482standards, GNU Coding Standards}).
2483
2484@cindex build phases
2485In a nutshell, packages using it configured, built, and installed with
2486the usual @code{./configure && make && make check && make install}
2487command sequence. In practice, a few additional steps are often needed.
2488All these steps are split up in separate @dfn{phases},
2489notably@footnote{Please see the @code{(guix build gnu-build-system)}
2490modules for more details about the build phases.}:
2491
2492@table @code
2493@item unpack
2494Unpack the source tarball, and change the current directory to the
2495extracted source tree. If the source is actually a directory, copy it
2496to the build tree, and enter that directory.
2497
2498@item patch-source-shebangs
2499Patch shebangs encountered in source files so they refer to the right
2500store file names. For instance, this changes @code{#!/bin/sh} to
2501@code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}.
2502
2503@item configure
2504Run the @file{configure} script with a number of default options, such
2505as @code{--prefix=/gnu/store/@dots{}}, as well as the options specified
2506by the @code{#:configure-flags} argument.
2507
2508@item build
2509Run @code{make} with the list of flags specified with
2510@code{#:make-flags}. If the @code{#:parallel-builds?} argument is true
2511(the default), build with @code{make -j}.
2512
2513@item check
2514Run @code{make check}, or some other target specified with
2515@code{#:test-target}, unless @code{#:tests? #f} is passed. If the
2516@code{#:parallel-tests?} argument is true (the default), run @code{make
2517check -j}.
2518
2519@item install
2520Run @code{make install} with the flags listed in @code{#:make-flags}.
2521
2522@item patch-shebangs
2523Patch shebangs on the installed executable files.
2524
2525@item strip
2526Strip debugging symbols from ELF files (unless @code{#:strip-binaries?}
2527is false), copying them to the @code{debug} output when available
2528(@pxref{Installing Debugging Files}).
2529@end table
2530
2531@vindex %standard-phases
2532The build-side module @code{(guix build gnu-build-system)} defines
2533@var{%standard-phases} as the default list of build phases.
2534@var{%standard-phases} is a list of symbol/procedure pairs, where the
2535procedure implements the actual phase.
2536
2537The list of phases used for a particular package can be changed with the
2538@code{#:phases} parameter. For instance, passing:
2539
2540@example
2541#:phases (alist-delete 'configure %standard-phases)
2542@end example
2543
9bf404e9 2544means that all the phases described above will be used, except the
7458bd0a
LC
2545@code{configure} phase.
2546
2547In addition, this build system ensures that the ``standard'' environment
2548for GNU packages is available. This includes tools such as GCC, libc,
2549Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix
2550build-system gnu)} module for a complete list.) We call these the
2551@dfn{implicit inputs} of a package, because package definitions don't
2552have to mention them.
2553@end defvr
2554
2555Other @code{<build-system>} objects are defined to support other
2556conventions and tools used by free software packages. They inherit most
2557of @var{gnu-build-system}, and differ mainly in the set of inputs
2558implicitly added to the build process, and in the list of phases
2559executed. Some of these build systems are listed below.
2560
2561@defvr {Scheme Variable} cmake-build-system
2562This variable is exported by @code{(guix build-system cmake)}. It
2563implements the build procedure for packages using the
2564@url{http://www.cmake.org, CMake build tool}.
2565
2566It automatically adds the @code{cmake} package to the set of inputs.
2567Which package is used can be specified with the @code{#:cmake}
2568parameter.
9849cfc1
LC
2569
2570The @code{#:configure-flags} parameter is taken as a list of flags
2571passed to the @command{cmake} command. The @code{#:build-type}
2572parameter specifies in abstract terms the flags passed to the compiler;
2573it defaults to @code{"RelWithDebInfo"} (short for ``release mode with
2574debugging information''), which roughly means that code is compiled with
2575@code{-O2 -g}, as is the case for Autoconf-based packages by default.
7458bd0a
LC
2576@end defvr
2577
3afcf52b
FB
2578@defvr {Scheme Variable} glib-or-gtk-build-system
2579This variable is exported by @code{(guix build-system glib-or-gtk)}. It
2580is intended for use with packages making use of GLib or GTK+.
2581
2582This build system adds the following two phases to the ones defined by
2583@var{gnu-build-system}:
2584
2585@table @code
2586@item glib-or-gtk-wrap
2587The phase @code{glib-or-gtk-wrap} ensures that programs found under
2588@file{bin/} are able to find GLib's ``schemas'' and
2589@uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+
2590modules}. This is achieved by wrapping the programs in launch scripts
2591that appropriately set the @code{XDG_DATA_DIRS} and @code{GTK_PATH}
2592environment variables.
2593
73aa8ddb
LC
2594It is possible to exclude specific package outputs from that wrapping
2595process by listing their names in the
2596@code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful
2597when an output is known not to contain any GLib or GTK+ binaries, and
2598where wrapping would gratuitously add a dependency of that output on
2599GLib and GTK+.
2600
3afcf52b
FB
2601@item glib-or-gtk-compile-schemas
2602The phase @code{glib-or-gtk-compile-schemas} makes sure that all GLib's
2603@uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html,
2604GSettings schemas} are compiled. Compilation is performed by the
2605@command{glib-compile-schemas} program. It is provided by the package
2606@code{glib:bin} which is automatically imported by the build system.
2607The @code{glib} package providing @command{glib-compile-schemas} can be
2608specified with the @code{#:glib} parameter.
2609@end table
2610
2611Both phases are executed after the @code{install} phase.
2612@end defvr
2613
7458bd0a
LC
2614@defvr {Scheme Variable} python-build-system
2615This variable is exported by @code{(guix build-system python)}. It
2616implements the more or less standard build procedure used by Python
2617packages, which consists in running @code{python setup.py build} and
2618then @code{python setup.py install --prefix=/gnu/store/@dots{}}.
2619
2620For packages that install stand-alone Python programs under @code{bin/},
2621it takes care of wrapping these programs so their @code{PYTHONPATH}
2622environment variable points to all the Python libraries they depend on.
2623
2624Which Python package is used can be specified with the @code{#:python}
2625parameter.
2626@end defvr
2627
2628@defvr {Scheme Variable} perl-build-system
2629This variable is exported by @code{(guix build-system perl)}. It
2d2a53fc
EB
2630implements the standard build procedure for Perl packages, which either
2631consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}},
2632followed by @code{Build} and @code{Build install}; or in running
2633@code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by
2634@code{make} and @code{make install}; depending on which of
2635@code{Build.PL} or @code{Makefile.PL} is present in the package
2636distribution. Preference is given to the former if both @code{Build.PL}
2637and @code{Makefile.PL} exist in the package distribution. This
2638preference can be reversed by specifying @code{#t} for the
2639@code{#:make-maker?} parameter.
2640
2641The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation
2642passes flags specified by the @code{#:make-maker-flags} or
2643@code{#:module-build-flags} parameter, respectively.
7458bd0a
LC
2644
2645Which Perl package is used can be specified with @code{#:perl}.
2646@end defvr
2647
f8f3bef6
RW
2648@defvr {Scheme Variable} r-build-system
2649This variable is exported by @code{(guix build-system r)}. It
2650implements the build procedure used by @uref{http://r-project.org, R}
2651packages, which essentially is little more than running @code{R CMD
2652INSTALL --library=/gnu/store/@dots{}} in an environment where
2653@code{R_LIBS_SITE} contains the paths to all R package inputs. Tests
2654are run after installation using the R function
2655@code{tools::testInstalledPackage}.
2656@end defvr
2657
c08f9818
DT
2658@defvr {Scheme Variable} ruby-build-system
2659This variable is exported by @code{(guix build-system ruby)}. It
2660implements the RubyGems build procedure used by Ruby packages, which
2661involves running @code{gem build} followed by @code{gem install}.
2662
5dc87623
DT
2663The @code{source} field of a package that uses this build system
2664typically references a gem archive, since this is the format that Ruby
2665developers use when releasing their software. The build system unpacks
2666the gem archive, potentially patches the source, runs the test suite,
2667repackages the gem, and installs it. Additionally, directories and
2668tarballs may be referenced to allow building unreleased gems from Git or
2669a traditional source release tarball.
e83c6d00 2670
c08f9818 2671Which Ruby package is used can be specified with the @code{#:ruby}
6e9f2913
PP
2672parameter. A list of additional flags to be passed to the @command{gem}
2673command can be specified with the @code{#:gem-flags} parameter.
c08f9818 2674@end defvr
7458bd0a 2675
a677c726
RW
2676@defvr {Scheme Variable} waf-build-system
2677This variable is exported by @code{(guix build-system waf)}. It
2678implements a build procedure around the @code{waf} script. The common
2679phases---@code{configure}, @code{build}, and @code{install}---are
2680implemented by passing their names as arguments to the @code{waf}
2681script.
2682
2683The @code{waf} script is executed by the Python interpreter. Which
2684Python package is used to run the script can be specified with the
2685@code{#:python} parameter.
2686@end defvr
2687
14dfdf2e
FB
2688@defvr {Scheme Variable} haskell-build-system
2689This variable is exported by @code{(guix build-system haskell)}. It
2690implements the Cabal build procedure used by Haskell packages, which
2691involves running @code{runhaskell Setup.hs configure
2692--prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}.
2693Instead of installing the package by running @code{runhaskell Setup.hs
2694install}, to avoid trying to register libraries in the read-only
2695compiler store directory, the build system uses @code{runhaskell
2696Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In
2697addition, the build system generates the package documentation by
2698running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f}
2699is passed. Optional Haddock parameters can be passed with the help of
2700the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is
2701not found, the build system looks for @code{Setup.lhs} instead.
2702
2703Which Haskell compiler is used can be specified with the @code{#:haskell}
a54bd6d7 2704parameter which defaults to @code{ghc}.
14dfdf2e
FB
2705@end defvr
2706
e9137a53
FB
2707@defvr {Scheme Variable} emacs-build-system
2708This variable is exported by @code{(guix build-system emacs)}. It
2709implements an installation procedure similar to the one of Emacs' own
2710packaging system (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
2711
2712It first creates the @code{@var{package}-autoloads.el} file, then it
2713byte compiles all Emacs Lisp files. Differently from the Emacs
2714packaging system, the Info documentation files are moved to the standard
2715documentation directory and the @file{dir} file is deleted. Each
2716package is installed in its own directory under
2717@file{share/emacs/site-lisp/guix.d}.
2718@end defvr
2719
7458bd0a
LC
2720Lastly, for packages that do not need anything as sophisticated, a
2721``trivial'' build system is provided. It is trivial in the sense that
2722it provides basically no support: it does not pull any implicit inputs,
2723and does not have a notion of build phases.
2724
2725@defvr {Scheme Variable} trivial-build-system
2726This variable is exported by @code{(guix build-system trivial)}.
2727
2728This build system requires a @code{#:builder} argument. This argument
2729must be a Scheme expression that builds the package's output(s)---as
2730with @code{build-expression->derivation} (@pxref{Derivations,
2731@code{build-expression->derivation}}).
2732@end defvr
2733
568717fd
LC
2734@node The Store
2735@section The Store
2736
e531ac2a
LC
2737@cindex store
2738@cindex store paths
2739
2740Conceptually, the @dfn{store} is where derivations that have been
834129e0 2741successfully built are stored---by default, under @file{/gnu/store}.
e531ac2a 2742Sub-directories in the store are referred to as @dfn{store paths}. The
4988dd40 2743store has an associated database that contains information such as the
e531ac2a
LC
2744store paths referred to by each store path, and the list of @emph{valid}
2745store paths---paths that result from a successful build.
2746
2747The store is always accessed by the daemon on behalf of its clients
2748(@pxref{Invoking guix-daemon}). To manipulate the store, clients
2749connect to the daemon over a Unix-domain socket, send it requests, and
2750read the result---these are remote procedure calls, or RPCs.
2751
2752The @code{(guix store)} module provides procedures to connect to the
2753daemon, and to perform RPCs. These are described below.
2754
2755@deffn {Scheme Procedure} open-connection [@var{file}] [#:reserve-space? #t]
2756Connect to the daemon over the Unix-domain socket at @var{file}. When
2757@var{reserve-space?} is true, instruct it to reserve a little bit of
2758extra space on the file system so that the garbage collector can still
2759operate, should the disk become full. Return a server object.
2760
2761@var{file} defaults to @var{%default-socket-path}, which is the normal
2762location given the options that were passed to @command{configure}.
2763@end deffn
2764
2765@deffn {Scheme Procedure} close-connection @var{server}
2766Close the connection to @var{server}.
2767@end deffn
2768
2769@defvr {Scheme Variable} current-build-output-port
2770This variable is bound to a SRFI-39 parameter, which refers to the port
2771where build and error logs sent by the daemon should be written.
2772@end defvr
2773
2774Procedures that make RPCs all take a server object as their first
2775argument.
2776
2777@deffn {Scheme Procedure} valid-path? @var{server} @var{path}
2778Return @code{#t} when @var{path} is a valid store path.
2779@end deffn
2780
cfbf9160 2781@deffn {Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]
e531ac2a
LC
2782Add @var{text} under file @var{name} in the store, and return its store
2783path. @var{references} is the list of store paths referred to by the
2784resulting store path.
2785@end deffn
2786
874e6874 2787@deffn {Scheme Procedure} build-derivations @var{server} @var{derivations}
59688fc4
LC
2788Build @var{derivations} (a list of @code{<derivation>} objects or
2789derivation paths), and return when the worker is done building them.
2790Return @code{#t} on success.
874e6874
LC
2791@end deffn
2792
b860f382
LC
2793Note that the @code{(guix monads)} module provides a monad as well as
2794monadic versions of the above procedures, with the goal of making it
2795more convenient to work with code that accesses the store (@pxref{The
2796Store Monad}).
2797
e531ac2a
LC
2798@c FIXME
2799@i{This section is currently incomplete.}
568717fd
LC
2800
2801@node Derivations
2802@section Derivations
2803
874e6874
LC
2804@cindex derivations
2805Low-level build actions and the environment in which they are performed
2806are represented by @dfn{derivations}. A derivation contain the
2807following pieces of information:
2808
2809@itemize
2810@item
2811The outputs of the derivation---derivations produce at least one file or
2812directory in the store, but may produce more.
2813
2814@item
2815The inputs of the derivations, which may be other derivations or plain
2816files in the store (patches, build scripts, etc.)
2817
2818@item
2819The system type targeted by the derivation---e.g., @code{x86_64-linux}.
2820
2821@item
2822The file name of a build script in the store, along with the arguments
2823to be passed.
2824
2825@item
2826A list of environment variables to be defined.
2827
2828@end itemize
2829
2830@cindex derivation path
2831Derivations allow clients of the daemon to communicate build actions to
2832the store. They exist in two forms: as an in-memory representation,
2833both on the client- and daemon-side, and as files in the store whose
2834name end in @code{.drv}---these files are referred to as @dfn{derivation
2835paths}. Derivations paths can be passed to the @code{build-derivations}
2836procedure to perform the build actions they prescribe (@pxref{The
2837Store}).
2838
2839The @code{(guix derivations)} module provides a representation of
2840derivations as Scheme objects, along with procedures to create and
2841otherwise manipulate derivations. The lowest-level primitive to create
2842a derivation is the @code{derivation} procedure:
2843
1909431c
LC
2844@deffn {Scheme Procedure} derivation @var{store} @var{name} @var{builder} @
2845 @var{args} [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
2096ef47 2846 [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @
1909431c 2847 [#:system (%current-system)] [#:references-graphs #f] @
4a6aeb67
LC
2848 [#:allowed-references #f] [#:leaked-env-vars #f] [#:local-build? #f] @
2849 [#:substitutable? #t]
59688fc4
LC
2850Build a derivation with the given arguments, and return the resulting
2851@code{<derivation>} object.
874e6874 2852
2096ef47 2853When @var{hash} and @var{hash-algo} are given, a
874e6874 2854@dfn{fixed-output derivation} is created---i.e., one whose result is
36bbbbd1
LC
2855known in advance, such as a file download. If, in addition,
2856@var{recursive?} is true, then that fixed output may be an executable
2857file or a directory and @var{hash} must be the hash of an archive
2858containing this output.
5b0c9d16 2859
858e9282 2860When @var{references-graphs} is true, it must be a list of file
5b0c9d16
LC
2861name/store path pairs. In that case, the reference graph of each store
2862path is exported in the build environment in the corresponding file, in
2863a simple text format.
1909431c 2864
b53be755
LC
2865When @var{allowed-references} is true, it must be a list of store items
2866or outputs that the derivation's output may refer to.
2867
c0468155
LC
2868When @var{leaked-env-vars} is true, it must be a list of strings
2869denoting environment variables that are allowed to ``leak'' from the
2870daemon's environment to the build environment. This is only applicable
2871to fixed-output derivations---i.e., when @var{hash} is true. The main
2872use is to allow variables such as @code{http_proxy} to be passed to
2873derivations that download files.
2874
1909431c
LC
2875When @var{local-build?} is true, declare that the derivation is not a
2876good candidate for offloading and should rather be built locally
2877(@pxref{Daemon Offload Setup}). This is the case for small derivations
2878where the costs of data transfers would outweigh the benefits.
4a6aeb67
LC
2879
2880When @var{substitutable?} is false, declare that substitutes of the
2881derivation's output should not be used (@pxref{Substitutes}). This is
2882useful, for instance, when building packages that capture details of the
2883host CPU instruction set.
874e6874
LC
2884@end deffn
2885
2886@noindent
2887Here's an example with a shell script as its builder, assuming
2888@var{store} is an open connection to the daemon, and @var{bash} points
2889to a Bash executable in the store:
2890
2891@lisp
2892(use-modules (guix utils)
2893 (guix store)
2894 (guix derivations))
2895
59688fc4
LC
2896(let ((builder ; add the Bash script to the store
2897 (add-text-to-store store "my-builder.sh"
2898 "echo hello world > $out\n" '())))
2899 (derivation store "foo"
2900 bash `("-e" ,builder)
21b679f6 2901 #:inputs `((,bash) (,builder))
59688fc4 2902 #:env-vars '(("HOME" . "/homeless"))))
834129e0 2903@result{} #<derivation /gnu/store/@dots{}-foo.drv => /gnu/store/@dots{}-foo>
874e6874
LC
2904@end lisp
2905
21b679f6
LC
2906As can be guessed, this primitive is cumbersome to use directly. A
2907better approach is to write build scripts in Scheme, of course! The
2908best course of action for that is to write the build code as a
2909``G-expression'', and to pass it to @code{gexp->derivation}. For more
6621cdb6 2910information, @pxref{G-Expressions}.
21b679f6
LC
2911
2912Once upon a time, @code{gexp->derivation} did not exist and constructing
2913derivations with build code written in Scheme was achieved with
2914@code{build-expression->derivation}, documented below. This procedure
2915is now deprecated in favor of the much nicer @code{gexp->derivation}.
874e6874 2916
dd1a5a15
LC
2917@deffn {Scheme Procedure} build-expression->derivation @var{store} @
2918 @var{name} @var{exp} @
2919 [#:system (%current-system)] [#:inputs '()] @
2920 [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
36bbbbd1 2921 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
63a42824 2922 [#:references-graphs #f] [#:allowed-references #f] @
4a6aeb67 2923 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
874e6874
LC
2924Return a derivation that executes Scheme expression @var{exp} as a
2925builder for derivation @var{name}. @var{inputs} must be a list of
2926@code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted,
2927@code{"out"} is assumed. @var{modules} is a list of names of Guile
2928modules from the current search path to be copied in the store,
2929compiled, and made available in the load path during the execution of
2930@var{exp}---e.g., @code{((guix build utils) (guix build
2931gnu-build-system))}.
2932
2933@var{exp} is evaluated in an environment where @code{%outputs} is bound
2934to a list of output/path pairs, and where @code{%build-inputs} is bound
2935to a list of string/output-path pairs made from @var{inputs}.
2936Optionally, @var{env-vars} is a list of string pairs specifying the name
2937and value of environment variables visible to the builder. The builder
2938terminates by passing the result of @var{exp} to @code{exit}; thus, when
2939@var{exp} returns @code{#f}, the build is considered to have failed.
2940
2941@var{exp} is built using @var{guile-for-build} (a derivation). When
2942@var{guile-for-build} is omitted or is @code{#f}, the value of the
2943@code{%guile-for-build} fluid is used instead.
9c629a27 2944
63a42824 2945See the @code{derivation} procedure for the meaning of
4a6aeb67
LC
2946@var{references-graphs}, @var{allowed-references}, @var{local-build?},
2947and @var{substitutable?}.
874e6874
LC
2948@end deffn
2949
2950@noindent
2951Here's an example of a single-output derivation that creates a directory
2952containing one file:
2953
2954@lisp
2955(let ((builder '(let ((out (assoc-ref %outputs "out")))
834129e0 2956 (mkdir out) ; create /gnu/store/@dots{}-goo
874e6874
LC
2957 (call-with-output-file (string-append out "/test")
2958 (lambda (p)
2959 (display '(hello guix) p))))))
dd1a5a15 2960 (build-expression->derivation store "goo" builder))
874e6874 2961
834129e0 2962@result{} #<derivation /gnu/store/@dots{}-goo.drv => @dots{}>
874e6874
LC
2963@end lisp
2964
568717fd 2965
b860f382
LC
2966@node The Store Monad
2967@section The Store Monad
2968
2969@cindex monad
2970
2971The procedures that operate on the store described in the previous
2972sections all take an open connection to the build daemon as their first
2973argument. Although the underlying model is functional, they either have
2974side effects or depend on the current state of the store.
2975
2976The former is inconvenient: the connection to the build daemon has to be
2977carried around in all those functions, making it impossible to compose
2978functions that do not take that parameter with functions that do. The
2979latter can be problematic: since store operations have side effects
2980and/or depend on external state, they have to be properly sequenced.
2981
2982@cindex monadic values
2983@cindex monadic functions
2984This is where the @code{(guix monads)} module comes in. This module
2985provides a framework for working with @dfn{monads}, and a particularly
2986useful monad for our uses, the @dfn{store monad}. Monads are a
2987construct that allows two things: associating ``context'' with values
2988(in our case, the context is the store), and building sequences of
561fb6c3 2989computations (here computations include accesses to the store.) Values
b860f382
LC
2990in a monad---values that carry this additional context---are called
2991@dfn{monadic values}; procedures that return such values are called
2992@dfn{monadic procedures}.
2993
2994Consider this ``normal'' procedure:
2995
2996@example
45adbd62
LC
2997(define (sh-symlink store)
2998 ;; Return a derivation that symlinks the 'bash' executable.
2999 (let* ((drv (package-derivation store bash))
3000 (out (derivation->output-path drv))
3001 (sh (string-append out "/bin/bash")))
3002 (build-expression->derivation store "sh"
3003 `(symlink ,sh %output))))
b860f382
LC
3004@end example
3005
c6f30b81
LC
3006Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten
3007as a monadic function:
b860f382
LC
3008
3009@example
45adbd62 3010(define (sh-symlink)
b860f382 3011 ;; Same, but return a monadic value.
c6f30b81
LC
3012 (mlet %store-monad ((drv (package->derivation bash)))
3013 (gexp->derivation "sh"
3014 #~(symlink (string-append #$drv "/bin/bash")
3015 #$output))))
b860f382
LC
3016@end example
3017
c6f30b81
LC
3018There several things to note in the second version: the @code{store}
3019parameter is now implicit and is ``threaded'' in the calls to the
3020@code{package->derivation} and @code{gexp->derivation} monadic
3021procedures, and the monadic value returned by @code{package->derivation}
3022is @dfn{bound} using @code{mlet} instead of plain @code{let}.
3023
3024As it turns out, the call to @code{package->derivation} can even be
3025omitted since it will take place implicitly, as we will see later
3026(@pxref{G-Expressions}):
3027
3028@example
3029(define (sh-symlink)
3030 (gexp->derivation "sh"
3031 #~(symlink (string-append #$bash "/bin/bash")
3032 #$output)))
3033@end example
b860f382 3034
7ce21611
LC
3035@c See
3036@c <https://syntaxexclamation.wordpress.com/2014/06/26/escaping-continuations/>
3037@c for the funny quote.
3038Calling the monadic @code{sh-symlink} has no effect. As someone once
3039said, ``you exit a monad like you exit a building on fire: by running''.
3040So, to exit the monad and get the desired effect, one must use
3041@code{run-with-store}:
b860f382
LC
3042
3043@example
8e9aa37f
CAW
3044(run-with-store (open-connection) (sh-symlink))
3045@result{} /gnu/store/...-sh-symlink
b860f382
LC
3046@end example
3047
b9b86078
LC
3048Note that the @code{(guix monad-repl)} module extends Guile's REPL with
3049new ``meta-commands'' to make it easier to deal with monadic procedures:
3050@code{run-in-store}, and @code{enter-store-monad}. The former, is used
3051to ``run'' a single monadic value through the store:
3052
3053@example
3054scheme@@(guile-user)> ,run-in-store (package->derivation hello)
3055$1 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3056@end example
3057
3058The latter enters a recursive REPL, where all the return values are
3059automatically run through the store:
3060
3061@example
3062scheme@@(guile-user)> ,enter-store-monad
3063store-monad@@(guile-user) [1]> (package->derivation hello)
3064$2 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3065store-monad@@(guile-user) [1]> (text-file "foo" "Hello!")
3066$3 = "/gnu/store/@dots{}-foo"
3067store-monad@@(guile-user) [1]> ,q
3068scheme@@(guile-user)>
3069@end example
3070
3071@noindent
3072Note that non-monadic values cannot be returned in the
3073@code{store-monad} REPL.
3074
e87f0591
LC
3075The main syntactic forms to deal with monads in general are provided by
3076the @code{(guix monads)} module and are described below.
b860f382
LC
3077
3078@deffn {Scheme Syntax} with-monad @var{monad} @var{body} ...
3079Evaluate any @code{>>=} or @code{return} forms in @var{body} as being
3080in @var{monad}.
3081@end deffn
3082
3083@deffn {Scheme Syntax} return @var{val}
3084Return a monadic value that encapsulates @var{val}.
3085@end deffn
3086
751630c9 3087@deffn {Scheme Syntax} >>= @var{mval} @var{mproc} ...
b860f382 3088@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic
751630c9
LC
3089procedures @var{mproc}@dots{}@footnote{This operation is commonly
3090referred to as ``bind'', but that name denotes an unrelated procedure in
3091Guile. Thus we use this somewhat cryptic symbol inherited from the
3092Haskell language.}. There can be one @var{mproc} or several of them, as
3093in this example:
3094
3095@example
3096(run-with-state
3097 (with-monad %state-monad
3098 (>>= (return 1)
3099 (lambda (x) (return (+ 1 x)))
3100 (lambda (x) (return (* 2 x)))))
3101 'some-state)
3102
3103@result{} 4
3104@result{} some-state
3105@end example
b860f382
LC
3106@end deffn
3107
3108@deffn {Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @
3109 @var{body} ...
3110@deffnx {Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @
3111 @var{body} ...
3112Bind the variables @var{var} to the monadic values @var{mval} in
3113@var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the
3114``normal'' value @var{val}, as per @code{let}.
3115
3116@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let}
3117(@pxref{Local Bindings,,, guile, GNU Guile Reference Manual}).
3118@end deffn
3119
405a9d4e
LC
3120@deffn {Scheme System} mbegin @var{monad} @var{mexp} ...
3121Bind @var{mexp} and the following monadic expressions in sequence,
3122returning the result of the last expression.
3123
3124This is akin to @code{mlet}, except that the return values of the
3125monadic expressions are ignored. In that sense, it is analogous to
3126@code{begin}, but applied to monadic expressions.
3127@end deffn
3128
561fb6c3
LC
3129@cindex state monad
3130The @code{(guix monads)} module provides the @dfn{state monad}, which
3131allows an additional value---the state---to be @emph{threaded} through
3132monadic procedure calls.
3133
3134@defvr {Scheme Variable} %state-monad
3135The state monad. Procedures in the state monad can access and change
3136the state that is threaded.
3137
3138Consider the example below. The @code{square} procedure returns a value
3139in the state monad. It returns the square of its argument, but also
3140increments the current state value:
3141
3142@example
3143(define (square x)
3144 (mlet %state-monad ((count (current-state)))
3145 (mbegin %state-monad
3146 (set-current-state (+ 1 count))
3147 (return (* x x)))))
3148
3149(run-with-state (sequence %state-monad (map square (iota 3))) 0)
3150@result{} (0 1 4)
3151@result{} 3
3152@end example
3153
3154When ``run'' through @var{%state-monad}, we obtain that additional state
3155value, which is the number of @code{square} calls.
3156@end defvr
3157
3158@deffn {Monadic Procedure} current-state
3159Return the current state as a monadic value.
3160@end deffn
3161
3162@deffn {Monadic Procedure} set-current-state @var{value}
3163Set the current state to @var{value} and return the previous state as a
3164monadic value.
3165@end deffn
3166
3167@deffn {Monadic Procedure} state-push @var{value}
3168Push @var{value} to the current state, which is assumed to be a list,
3169and return the previous state as a monadic value.
3170@end deffn
3171
3172@deffn {Monadic Procedure} state-pop
3173Pop a value from the current state and return it as a monadic value.
3174The state is assumed to be a list.
3175@end deffn
3176
3177@deffn {Scheme Procedure} run-with-state @var{mval} [@var{state}]
3178Run monadic value @var{mval} starting with @var{state} as the initial
3179state. Return two values: the resulting value, and the resulting state.
3180@end deffn
3181
e87f0591
LC
3182The main interface to the store monad, provided by the @code{(guix
3183store)} module, is as follows.
b860f382
LC
3184
3185@defvr {Scheme Variable} %store-monad
561fb6c3
LC
3186The store monad---an alias for @var{%state-monad}.
3187
3188Values in the store monad encapsulate accesses to the store. When its
3189effect is needed, a value of the store monad must be ``evaluated'' by
3190passing it to the @code{run-with-store} procedure (see below.)
b860f382
LC
3191@end defvr
3192
3193@deffn {Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]
3194Run @var{mval}, a monadic value in the store monad, in @var{store}, an
3195open store connection.
3196@end deffn
3197
ad372953 3198@deffn {Monadic Procedure} text-file @var{name} @var{text} [@var{references}]
b860f382 3199Return as a monadic value the absolute file name in the store of the file
ad372953
LC
3200containing @var{text}, a string. @var{references} is a list of store items that the
3201resulting text file refers to; it defaults to the empty list.
45adbd62
LC
3202@end deffn
3203
0a90af15
LC
3204@deffn {Monadic Procedure} interned-file @var{file} [@var{name}] @
3205 [#:recursive? #t]
3206Return the name of @var{file} once interned in the store. Use
3207@var{name} as its store name, or the basename of @var{file} if
3208@var{name} is omitted.
3209
3210When @var{recursive?} is true, the contents of @var{file} are added
3211recursively; if @var{file} designates a flat file and @var{recursive?}
3212is true, its contents are added, and its permission bits are kept.
3213
3214The example below adds a file to the store, under two different names:
3215
3216@example
3217(run-with-store (open-connection)
3218 (mlet %store-monad ((a (interned-file "README"))
3219 (b (interned-file "README" "LEGU-MIN")))
3220 (return (list a b))))
3221
3222@result{} ("/gnu/store/rwm@dots{}-README" "/gnu/store/44i@dots{}-LEGU-MIN")
3223@end example
3224
3225@end deffn
3226
e87f0591
LC
3227The @code{(guix packages)} module exports the following package-related
3228monadic procedures:
3229
b860f382 3230@deffn {Monadic Procedure} package-file @var{package} [@var{file}] @
4231f05b
LC
3231 [#:system (%current-system)] [#:target #f] @
3232 [#:output "out"] Return as a monadic
b860f382
LC
3233value in the absolute file name of @var{file} within the @var{output}
3234directory of @var{package}. When @var{file} is omitted, return the name
4231f05b
LC
3235of the @var{output} directory of @var{package}. When @var{target} is
3236true, use it as a cross-compilation target triplet.
b860f382
LC
3237@end deffn
3238
b860f382 3239@deffn {Monadic Procedure} package->derivation @var{package} [@var{system}]
4231f05b
LC
3240@deffnx {Monadic Procedure} package->cross-derivation @var{package} @
3241 @var{target} [@var{system}]
3242Monadic version of @code{package-derivation} and
3243@code{package-cross-derivation} (@pxref{Defining Packages}).
b860f382
LC
3244@end deffn
3245
3246
21b679f6
LC
3247@node G-Expressions
3248@section G-Expressions
3249
3250@cindex G-expression
3251@cindex build code quoting
3252So we have ``derivations'', which represent a sequence of build actions
3253to be performed to produce an item in the store (@pxref{Derivations}).
3254Those build actions are performed when asking the daemon to actually
3255build the derivations; they are run by the daemon in a container
3256(@pxref{Invoking guix-daemon}).
3257
3258@cindex strata of code
3259It should come as no surprise that we like to write those build actions
3260in Scheme. When we do that, we end up with two @dfn{strata} of Scheme
3261code@footnote{The term @dfn{stratum} in this context was coined by
ef4ab0a4
LC
3262Manuel Serrano et al.@: in the context of their work on Hop. Oleg
3263Kiselyov, who has written insightful
3264@url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code
3265on this topic}, refers to this kind of code generation as
3266@dfn{staging}.}: the ``host code''---code that defines packages, talks
3267to the daemon, etc.---and the ``build code''---code that actually
3268performs build actions, such as making directories, invoking
3269@command{make}, etc.
21b679f6
LC
3270
3271To describe a derivation and its build actions, one typically needs to
3272embed build code inside host code. It boils down to manipulating build
3273code as data, and Scheme's homoiconicity---code has a direct
3274representation as data---comes in handy for that. But we need more than
3275Scheme's normal @code{quasiquote} mechanism to construct build
3276expressions.
3277
3278The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of
3279S-expressions adapted to build expressions. G-expressions, or
3280@dfn{gexps}, consist essentially in three syntactic forms: @code{gexp},
3281@code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~},
3282@code{#$}, and @code{#$@@}), which are comparable respectively to
3283@code{quasiquote}, @code{unquote}, and @code{unquote-splicing}
3284(@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile
3285Reference Manual}). However, there are major differences:
3286
3287@itemize
3288@item
3289Gexps are meant to be written to a file and run or manipulated by other
3290processes.
3291
3292@item
b39fc6f7
LC
3293When a high-level object such as a package or derivation is unquoted
3294inside a gexp, the result is as if its output file name had been
3295introduced.
ff40e9b7 3296
21b679f6
LC
3297@item
3298Gexps carry information about the packages or derivations they refer to,
3299and these dependencies are automatically added as inputs to the build
3300processes that use them.
3301@end itemize
3302
c2b84676 3303@cindex lowering, of high-level objects in gexps
343eacbe
LC
3304This mechanism is not limited to package and derivation
3305objects: @dfn{compilers} able to ``lower'' other high-level objects to
c2b84676
LC
3306derivations or files in the store can be defined,
3307such that these objects can also be inserted
343eacbe
LC
3308into gexps. For example, a useful type of high-level object that can be
3309inserted in a gexp is ``file-like objects'', which make it easy to
3310add files to the store and refer to them in
558e8b11
LC
3311derivations and such (see @code{local-file} and @code{plain-file}
3312below.)
b39fc6f7 3313
21b679f6
LC
3314To illustrate the idea, here is an example of a gexp:
3315
3316@example
3317(define build-exp
3318 #~(begin
3319 (mkdir #$output)
3320 (chdir #$output)
aff8ce7c 3321 (symlink (string-append #$coreutils "/bin/ls")
21b679f6
LC
3322 "list-files")))
3323@end example
3324
3325This gexp can be passed to @code{gexp->derivation}; we obtain a
3326derivation that builds a directory containing exactly one symlink to
3327@file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:
3328
3329@example
3330(gexp->derivation "the-thing" build-exp)
3331@end example
3332
e20fd1bf 3333As one would expect, the @code{"/gnu/store/@dots{}-coreutils-8.22"} string is
21b679f6
LC
3334substituted to the reference to the @var{coreutils} package in the
3335actual build code, and @var{coreutils} is automatically made an input to
3336the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp
3337output)}) is replaced by a string containing the derivation's output
667b2508
LC
3338directory name.
3339
3340@cindex cross compilation
3341In a cross-compilation context, it is useful to distinguish between
3342references to the @emph{native} build of a package---that can run on the
3343host---versus references to cross builds of a package. To that end, the
3344@code{#+} plays the same role as @code{#$}, but is a reference to a
3345native package build:
3346
3347@example
3348(gexp->derivation "vi"
3349 #~(begin
3350 (mkdir #$output)
3351 (system* (string-append #+coreutils "/bin/ln")
3352 "-s"
3353 (string-append #$emacs "/bin/emacs")
3354 (string-append #$output "/bin/vi")))
3355 #:target "mips64el-linux")
3356@end example
3357
3358@noindent
3359In the example above, the native build of @var{coreutils} is used, so
3360that @command{ln} can actually run on the host; but then the
3361cross-compiled build of @var{emacs} is referenced.
3362
3363The syntactic form to construct gexps is summarized below.
21b679f6
LC
3364
3365@deffn {Scheme Syntax} #~@var{exp}
3366@deffnx {Scheme Syntax} (gexp @var{exp})
3367Return a G-expression containing @var{exp}. @var{exp} may contain one
3368or more of the following forms:
3369
3370@table @code
3371@item #$@var{obj}
3372@itemx (ungexp @var{obj})
b39fc6f7
LC
3373Introduce a reference to @var{obj}. @var{obj} may have one of the
3374supported types, for example a package or a
21b679f6
LC
3375derivation, in which case the @code{ungexp} form is replaced by its
3376output file name---e.g., @code{"/gnu/store/@dots{}-coreutils-8.22}.
3377
b39fc6f7
LC
3378If @var{obj} is a list, it is traversed and references to supported
3379objects are substituted similarly.
21b679f6
LC
3380
3381If @var{obj} is another gexp, its contents are inserted and its
3382dependencies are added to those of the containing gexp.
3383
3384If @var{obj} is another kind of object, it is inserted as is.
3385
b39fc6f7
LC
3386@item #$@var{obj}:@var{output}
3387@itemx (ungexp @var{obj} @var{output})
21b679f6 3388This is like the form above, but referring explicitly to the
b39fc6f7
LC
3389@var{output} of @var{obj}---this is useful when @var{obj} produces
3390multiple outputs (@pxref{Packages with Multiple Outputs}).
21b679f6 3391
667b2508
LC
3392@item #+@var{obj}
3393@itemx #+@var{obj}:output
3394@itemx (ungexp-native @var{obj})
3395@itemx (ungexp-native @var{obj} @var{output})
3396Same as @code{ungexp}, but produces a reference to the @emph{native}
3397build of @var{obj} when used in a cross compilation context.
3398
21b679f6
LC
3399@item #$output[:@var{output}]
3400@itemx (ungexp output [@var{output}])
3401Insert a reference to derivation output @var{output}, or to the main
3402output when @var{output} is omitted.
3403
3404This only makes sense for gexps passed to @code{gexp->derivation}.
3405
3406@item #$@@@var{lst}
3407@itemx (ungexp-splicing @var{lst})
3408Like the above, but splices the contents of @var{lst} inside the
3409containing list.
3410
667b2508
LC
3411@item #+@@@var{lst}
3412@itemx (ungexp-native-splicing @var{lst})
3413Like the above, but refers to native builds of the objects listed in
3414@var{lst}.
3415
21b679f6
LC
3416@end table
3417
3418G-expressions created by @code{gexp} or @code{#~} are run-time objects
3419of the @code{gexp?} type (see below.)
3420@end deffn
3421
3422@deffn {Scheme Procedure} gexp? @var{obj}
3423Return @code{#t} if @var{obj} is a G-expression.
3424@end deffn
3425
3426G-expressions are meant to be written to disk, either as code building
3427some derivation, or as plain files in the store. The monadic procedures
3428below allow you to do that (@pxref{The Store Monad}, for more
3429information about monads.)
3430
3431@deffn {Monadic Procedure} gexp->derivation @var{name} @var{exp} @
ce45eb4c 3432 [#:system (%current-system)] [#:target #f] [#:graft? #t] @
21b679f6
LC
3433 [#:hash #f] [#:hash-algo #f] @
3434 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
4684f301 3435 [#:module-path @var{%load-path}] @
c8351d9a 3436 [#:references-graphs #f] [#:allowed-references #f] @
c0468155 3437 [#:leaked-env-vars #f] @
0309e1b0 3438 [#:script-name (string-append @var{name} "-builder")] @
4a6aeb67 3439 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
21b679f6 3440Return a derivation @var{name} that runs @var{exp} (a gexp) with
0309e1b0
LC
3441@var{guile-for-build} (a derivation) on @var{system}; @var{exp} is
3442stored in a file called @var{script-name}. When @var{target} is true,
3443it is used as the cross-compilation target triplet for packages referred
3444to by @var{exp}.
21b679f6 3445
ce45eb4c
LC
3446Make @var{modules} available in the evaluation context of @var{exp};
3447@var{modules} is a list of names of Guile modules searched in
3448@var{module-path} to be copied in the store, compiled, and made available in
21b679f6
LC
3449the load path during the execution of @var{exp}---e.g., @code{((guix
3450build utils) (guix build gnu-build-system))}.
3451
ce45eb4c
LC
3452@var{graft?} determines whether packages referred to by @var{exp} should be grafted when
3453applicable.
3454
b53833b2
LC
3455When @var{references-graphs} is true, it must be a list of tuples of one of the
3456following forms:
3457
3458@example
3459(@var{file-name} @var{package})
3460(@var{file-name} @var{package} @var{output})
3461(@var{file-name} @var{derivation})
3462(@var{file-name} @var{derivation} @var{output})
3463(@var{file-name} @var{store-item})
3464@end example
3465
3466The right-hand-side of each element of @var{references-graphs} is automatically made
3467an input of the build process of @var{exp}. In the build environment, each
3468@var{file-name} contains the reference graph of the corresponding item, in a simple
3469text format.
3470
c8351d9a
LC
3471@var{allowed-references} must be either @code{#f} or a list of output names and packages.
3472In the latter case, the list denotes store items that the result is allowed to
3473refer to. Any reference to another store item will lead to a build error.
3474
e20fd1bf 3475The other arguments are as for @code{derivation} (@pxref{Derivations}).
21b679f6
LC
3476@end deffn
3477
343eacbe 3478@cindex file-like objects
e1c153e0
LC
3479The @code{local-file}, @code{plain-file}, @code{computed-file},
3480@code{program-file}, and @code{scheme-file} procedures below return
3481@dfn{file-like objects}. That is, when unquoted in a G-expression,
3482these objects lead to a file in the store. Consider this G-expression:
343eacbe
LC
3483
3484@example
3485#~(system* (string-append #$glibc "/sbin/nscd") "-f"
3486 #$(local-file "/tmp/my-nscd.conf"))
3487@end example
3488
3489The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it
3490to the store. Once expanded, for instance @i{via}
3491@code{gexp->derivation}, the G-expression refers to that copy under
3492@file{/gnu/store}; thus, modifying or removing the file in @file{/tmp}
3493does not have any effect on what the G-expression does.
3494@code{plain-file} can be used similarly; it differs in that the file
3495content is directly passed as a string.
3496
d9ae938f
LC
3497@deffn {Scheme Procedure} local-file @var{file} [@var{name}] @
3498 [#:recursive? #t]
3499Return an object representing local file @var{file} to add to the store; this
9d3994f7
LC
3500object can be used in a gexp. If @var{file} is a relative file name, it is looked
3501up relative to the source file where this form appears. @var{file} will be added to
3502the store under @var{name}--by default the base name of @var{file}.
d9ae938f
LC
3503
3504When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file}
3505designates a flat file and @var{recursive?} is true, its contents are added, and its
3506permission bits are kept.
3507
3508This is the declarative counterpart of the @code{interned-file} monadic
3509procedure (@pxref{The Store Monad, @code{interned-file}}).
3510@end deffn
3511
558e8b11
LC
3512@deffn {Scheme Procedure} plain-file @var{name} @var{content}
3513Return an object representing a text file called @var{name} with the given
3514@var{content} (a string) to be added to the store.
3515
3516This is the declarative counterpart of @code{text-file}.
3517@end deffn
3518
91937029
LC
3519@deffn {Scheme Procedure} computed-file @var{name} @var{gexp} @
3520 [#:modules '()] [#:options '(#:local-build? #t)]
3521Return an object representing the store item @var{name}, a file or
3522directory computed by @var{gexp}. @var{modules} specifies the set of
3523modules visible in the execution context of @var{gexp}. @var{options}
3524is a list of additional arguments to pass to @code{gexp->derivation}.
3525
3526This is the declarative counterpart of @code{gexp->derivation}.
3527@end deffn
3528
21b679f6
LC
3529@deffn {Monadic Procedure} gexp->script @var{name} @var{exp}
3530Return an executable script @var{name} that runs @var{exp} using
3531@var{guile} with @var{modules} in its search path.
3532
3533The example below builds a script that simply invokes the @command{ls}
3534command:
3535
3536@example
3537(use-modules (guix gexp) (gnu packages base))
3538
3539(gexp->script "list-files"
3540 #~(execl (string-append #$coreutils "/bin/ls")
3541 "ls"))
3542@end example
3543
3544When ``running'' it through the store (@pxref{The Store Monad,
e20fd1bf 3545@code{run-with-store}}), we obtain a derivation that produces an
21b679f6
LC
3546executable file @file{/gnu/store/@dots{}-list-files} along these lines:
3547
3548@example
3549#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds
3550!#
3551(execl (string-append "/gnu/store/@dots{}-coreutils-8.22"/bin/ls")
3552 "ls")
3553@end example
3554@end deffn
3555
15a01c72
LC
3556@deffn {Scheme Procedure} program-file @var{name} @var{exp} @
3557 [#:modules '()] [#:guile #f]
3558Return an object representing the executable store item @var{name} that
3559runs @var{gexp}. @var{guile} is the Guile package used to execute that
3560script, and @var{modules} is the list of modules visible to that script.
3561
3562This is the declarative counterpart of @code{gexp->script}.
3563@end deffn
3564
21b679f6
LC
3565@deffn {Monadic Procedure} gexp->file @var{name} @var{exp}
3566Return a derivation that builds a file @var{name} containing @var{exp}.
3567
3568The resulting file holds references to all the dependencies of @var{exp}
3569or a subset thereof.
3570@end deffn
1ed19464 3571
e1c153e0
LC
3572@deffn {Scheme Procedure} scheme-file @var{name} @var{exp}
3573Return an object representing the Scheme file @var{name} that contains
3574@var{exp}.
3575
3576This is the declarative counterpart of @code{gexp->file}.
3577@end deffn
3578
1ed19464
LC
3579@deffn {Monadic Procedure} text-file* @var{name} @var{text} @dots{}
3580Return as a monadic value a derivation that builds a text file
3581containing all of @var{text}. @var{text} may list, in addition to
d9ae938f
LC
3582strings, objects of any type that can be used in a gexp: packages,
3583derivations, local file objects, etc. The resulting store file holds
3584references to all these.
1ed19464
LC
3585
3586This variant should be preferred over @code{text-file} anytime the file
3587to create will reference items from the store. This is typically the
3588case when building a configuration file that embeds store file names,
3589like this:
3590
3591@example
3592(define (profile.sh)
3593 ;; Return the name of a shell script in the store that
3594 ;; initializes the 'PATH' environment variable.
3595 (text-file* "profile.sh"
3596 "export PATH=" coreutils "/bin:"
3597 grep "/bin:" sed "/bin\n"))
3598@end example
3599
3600In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file
3601will references @var{coreutils}, @var{grep}, and @var{sed}, thereby
3602preventing them from being garbage-collected during its lifetime.
3603@end deffn
21b679f6 3604
b751cde3
LC
3605@deffn {Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}
3606Return an object representing store file @var{name} containing
3607@var{text}. @var{text} is a sequence of strings and file-like objects,
3608as in:
3609
3610@example
3611(mixed-text-file "profile"
3612 "export PATH=" coreutils "/bin:" grep "/bin")
3613@end example
3614
3615This is the declarative counterpart of @code{text-file*}.
3616@end deffn
3617
21b679f6
LC
3618Of course, in addition to gexps embedded in ``host'' code, there are
3619also modules containing build tools. To make it clear that they are
3620meant to be used in the build stratum, these modules are kept in the
3621@code{(guix build @dots{})} name space.
3622
c2b84676
LC
3623@cindex lowering, of high-level objects in gexps
3624Internally, high-level objects are @dfn{lowered}, using their compiler,
3625to either derivations or store items. For instance, lowering a package
3626yields a derivation, and lowering a @code{plain-file} yields a store
3627item. This is achieved using the @code{lower-object} monadic procedure.
3628
3629@deffn {Monadic Procedure} lower-object @var{obj} [@var{system}] @
3630 [#:target #f]
3631Return as a value in @var{%store-monad} the derivation or store item
3632corresponding to @var{obj} for @var{system}, cross-compiling for
3633@var{target} if @var{target} is true. @var{obj} must be an object that
3634has an associated gexp compiler, such as a @code{<package>}.
3635@end deffn
3636
21b679f6 3637
568717fd
LC
3638@c *********************************************************************
3639@node Utilities
3640@chapter Utilities
3641
210cc920
LC
3642This section describes tools primarily targeted at developers and users
3643who write new package definitions. They complement the Scheme
3644programming interface of Guix in a convenient way.
3645
568717fd 3646@menu
37166310 3647* Invoking guix build:: Building packages from the command line.
39bee8a2 3648* Invoking guix edit:: Editing package definitions.
210cc920 3649* Invoking guix download:: Downloading a file and printing its hash.
37166310 3650* Invoking guix hash:: Computing the cryptographic hash of a file.
2f7d2d91 3651* Invoking guix import:: Importing package definitions.
37166310 3652* Invoking guix refresh:: Updating package definitions.
b4f5e0e8 3653* Invoking guix lint:: Finding errors in package definitions.
fcc58db6 3654* Invoking guix size:: Profiling disk usage.
88856916 3655* Invoking guix graph:: Visualizing the graph of packages.
372c4bbc 3656* Invoking guix environment:: Setting up development environments.
aff8ce7c 3657* Invoking guix publish:: Sharing substitutes.
d23c20f1 3658* Invoking guix challenge:: Challenging substitute servers.
32efa254 3659* Invoking guix container:: Process isolation.
568717fd
LC
3660@end menu
3661
e49951eb
MW
3662@node Invoking guix build
3663@section Invoking @command{guix build}
568717fd 3664
e49951eb 3665The @command{guix build} command builds packages or derivations and
6798a8e4
LC
3666their dependencies, and prints the resulting store paths. Note that it
3667does not modify the user's profile---this is the job of the
e49951eb 3668@command{guix package} command (@pxref{Invoking guix package}). Thus,
6798a8e4
LC
3669it is mainly useful for distribution developers.
3670
3671The general syntax is:
c78bd12b
LC
3672
3673@example
e49951eb 3674guix build @var{options} @var{package-or-derivation}@dots{}
c78bd12b
LC
3675@end example
3676
3677@var{package-or-derivation} may be either the name of a package found in
5401dd75
LC
3678the software distribution such as @code{coreutils} or
3679@code{coreutils-8.20}, or a derivation such as
834129e0 3680@file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a
e7f34eb0
LC
3681package with the corresponding name (and optionally version) is searched
3682for among the GNU distribution modules (@pxref{Package Modules}).
3683
3684Alternatively, the @code{--expression} option may be used to specify a
3685Scheme expression that evaluates to a package; this is useful when
3686disambiguation among several same-named packages or package variants is
3687needed.
c78bd12b
LC
3688
3689The @var{options} may be zero or more of the following:
3690
3691@table @code
3692
34a1783f
DT
3693@item --file=@var{file}
3694@itemx -f @var{file}
3695
3696Build the package or derivation that the code within @var{file}
3697evaluates to.
3698
3699As an example, @var{file} might contain a package definition like this
3700(@pxref{Defining Packages}):
3701
3702@example
3703@verbatiminclude package-hello.scm
3704@end example
3705
c78bd12b
LC
3706@item --expression=@var{expr}
3707@itemx -e @var{expr}
ac5de156 3708Build the package or derivation @var{expr} evaluates to.
c78bd12b 3709
5401dd75 3710For example, @var{expr} may be @code{(@@ (gnu packages guile)
c78bd12b
LC
3711guile-1.8)}, which unambiguously designates this specific variant of
3712version 1.8 of Guile.
3713
56b82106
LC
3714Alternately, @var{expr} may be a G-expression, in which case it is used
3715as a build program passed to @code{gexp->derivation}
3716(@pxref{G-Expressions}).
3717
3718Lastly, @var{expr} may refer to a zero-argument monadic procedure
ac5de156
LC
3719(@pxref{The Store Monad}). The procedure must return a derivation as a
3720monadic value, which is then passed through @code{run-with-store}.
3721
c78bd12b
LC
3722@item --source
3723@itemx -S
3724Build the packages' source derivations, rather than the packages
3725themselves.
3726
e49951eb 3727For instance, @code{guix build -S gcc} returns something like
834129e0 3728@file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is GCC's source tarball.
c78bd12b 3729
f9cc8971
LC
3730The returned source tarball is the result of applying any patches and
3731code snippets specified in the package's @code{origin} (@pxref{Defining
3732Packages}).
3733
2cdfe13d
EB
3734@item --sources
3735Fetch and return the source of @var{package-or-derivation} and all their
3736dependencies, recursively. This is a handy way to obtain a local copy
3737of all the source code needed to build @var{packages}, allowing you to
3738eventually build them even without network access. It is an extension
3739of the @code{--source} option and can accept one of the following
3740optional argument values:
3741
3742@table @code
3743@item package
3744This value causes the @code{--sources} option to behave in the same way
3745as the @code{--source} option.
3746
3747@item all
3748Build all packages' source derivations, including any source that might
3749be listed as @code{inputs}. This is the default value.
3750
3751@example
3752$ guix build --sources tzdata
3753The following derivations will be built:
3754 /gnu/store/@dots{}-tzdata2015b.tar.gz.drv
3755 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
3756@end example
3757
3758@item transitive
3759Build all packages' source derivations, as well as all source
3760derivations for packages' transitive inputs. This can be used e.g. to
3761prefetch package source for later offline building.
3762
3763@example
3764$ guix build --sources=transitive tzdata
3765The following derivations will be built:
3766 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
3767 /gnu/store/@dots{}-findutils-4.4.2.tar.xz.drv
3768 /gnu/store/@dots{}-grep-2.21.tar.xz.drv
3769 /gnu/store/@dots{}-coreutils-8.23.tar.xz.drv
3770 /gnu/store/@dots{}-make-4.1.tar.xz.drv
3771 /gnu/store/@dots{}-bash-4.3.tar.xz.drv
3772@dots{}
3773@end example
3774
3775@end table
3776
c78bd12b
LC
3777@item --system=@var{system}
3778@itemx -s @var{system}
3779Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of
3780the host's system type.
3781
3782An example use of this is on Linux-based systems, which can emulate
3783different personalities. For instance, passing
3784@code{--system=i686-linux} on an @code{x86_64-linux} system allows users
3785to build packages in a complete 32-bit environment.
3786
e55ec43d
LC
3787@item --target=@var{triplet}
3788@cindex cross-compilation
3789Cross-build for @var{triplet}, which must be a valid GNU triplet, such
3790as @code{"mips64el-linux-gnu"} (@pxref{Configuration Names, GNU
3791configuration triplets,, configure, GNU Configure and Build System}).
3792
7f3673f2
LC
3793@item --with-source=@var{source}
3794Use @var{source} as the source of the corresponding package.
3795@var{source} must be a file name or a URL, as for @command{guix
3796download} (@pxref{Invoking guix download}).
3797
3798The ``corresponding package'' is taken to be one specified on the
3799command line whose name matches the base of @var{source}---e.g., if
3800@var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding
3801package is @code{guile}. Likewise, the version string is inferred from
3802@var{source}; in the previous example, it's @code{2.0.10}.
3803
3804This option allows users to try out versions of packages other than the
3805one provided by the distribution. The example below downloads
3806@file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for
3807the @code{ed} package:
3808
3809@example
3810guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz
3811@end example
3812
3813As a developer, @code{--with-source} makes it easy to test release
3814candidates:
3815
3816@example
3817guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz
3818@end example
3819
a43b55f1
LC
3820@dots{} or to build from a checkout in a pristine environment:
3821
3822@example
3823$ git clone git://git.sv.gnu.org/guix.git
3824$ guix build guix --with-source=./guix
3825@end example
3826
a8d65643
LC
3827@anchor{build-check}
3828@item --check
3829@cindex determinism, checking
3830@cindex reproducibility, checking
3831Rebuild @var{package-or-derivation}, which are already available in the
3832store, and raise an error if the build results are not bit-for-bit
3833identical.
3834
3835This mechanism allows you to check whether previously-installed
3836substitutes are genuine (@pxref{Substitutes}), or whether a package's
3837build result is deterministic. @xref{Invoking guix challenge}, for more
3838background information and tools.
3839
05962f29
LC
3840@item --no-grafts
3841Do not ``graft'' packages. In practice, this means that package updates
3842available as grafts are not applied. @xref{Security Updates}, for more
3843information on grafts.
7f3673f2 3844
c78bd12b
LC
3845@item --derivations
3846@itemx -d
3847Return the derivation paths, not the output paths, of the given
3848packages.
3849
70ee5642
LC
3850@item --root=@var{file}
3851@itemx -r @var{file}
3852Make @var{file} a symlink to the result, and register it as a garbage
3853collector root.
3854
3855@item --log-file
3f208ad7 3856Return the build log file names or URLs for the given
70ee5642
LC
3857@var{package-or-derivation}s, or raise an error if build logs are
3858missing.
3859
3860This works regardless of how packages or derivations are specified. For
3861instance, the following invocations are equivalent:
3862
3863@example
3864guix build --log-file `guix build -d guile`
3865guix build --log-file `guix build guile`
3866guix build --log-file guile
3867guix build --log-file -e '(@@ (gnu packages guile) guile-2.0)'
3868@end example
3869
3f208ad7
LC
3870If a log is unavailable locally, and unless @code{--no-substitutes} is
3871passed, the command looks for a corresponding log on one of the
3872substitute servers (as specified with @code{--substitute-urls}.)
70ee5642 3873
3f208ad7
LC
3874So for instance, let's say you want to see the build log of GDB on MIPS
3875but you're actually on an @code{x86_64} machine:
3876
3877@example
3878$ guix build --log-file gdb -s mips64el-linux
3879http://hydra.gnu.org/log/@dots{}-gdb-7.10
3880@end example
3881
3882You can freely access a huge library of build logs!
70ee5642
LC
3883@end table
3884
3885@cindex common build options
3886In addition, a number of options that control the build process are
3887common to @command{guix build} and other commands that can spawn builds,
3888such as @command{guix package} or @command{guix archive}. These are the
3889following:
3890
3891@table @code
3892
300868ba
LC
3893@item --load-path=@var{directory}
3894@itemx -L @var{directory}
3895Add @var{directory} to the front of the package module search path
3896(@pxref{Package Modules}).
3897
3898This allows users to define their own packages and make them visible to
3899the command-line tools.
3900
c78bd12b
LC
3901@item --keep-failed
3902@itemx -K
3903Keep the build tree of failed builds. Thus, if a build fail, its build
3904tree is kept under @file{/tmp}, in a directory whose name is shown at
3905the end of the build log. This is useful when debugging build issues.
3906
3907@item --dry-run
3908@itemx -n
3909Do not build the derivations.
3910
56b1f4b7
LC
3911@item --fallback
3912When substituting a pre-built binary fails, fall back to building
3913packages locally.
3914
f8a8e0fe
LC
3915@item --substitute-urls=@var{urls}
3916@anchor{client-substitute-urls}
3917Consider @var{urls} the whitespace-separated list of substitute source
3918URLs, overriding the default list of URLs of @command{guix-daemon}
3919(@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs}).
3920
3921This means that substitutes may be downloaded from @var{urls}, provided
3922they are signed by a key authorized by the system administrator
3923(@pxref{Substitutes}).
3924
c78bd12b 3925@item --no-substitutes
b5385b52 3926Do not use substitutes for build products. That is, always build things
c4202d60
LC
3927locally instead of allowing downloads of pre-built binaries
3928(@pxref{Substitutes}).
c78bd12b 3929
5b74fe06
LC
3930@item --rounds=@var{n}
3931Build each derivation @var{n} times in a row, and raise an error if
3932consecutive build results are not bit-for-bit identical.
3933
3934This is a useful way to detect non-deterministic builds processes.
3935Non-deterministic build processes are a problem because they make it
3936practically impossible for users to @emph{verify} whether third-party
3937binaries are genuine. @xref{Invoking guix challenge}, for more.
3938
3939Note that, currently, the differing build results are not kept around,
3940so you will have to manually investigate in case of an error---e.g., by
3941stashing one of the build results with @code{guix archive --export},
3942then rebuilding, and finally comparing the two results.
3943
425b0bfc 3944@item --no-build-hook
4ec2e92d
LC
3945Do not attempt to offload builds @i{via} the daemon's ``build hook''
3946(@pxref{Daemon Offload Setup}). That is, always build things locally
3947instead of offloading builds to remote machines.
425b0bfc 3948
969e678e
LC
3949@item --max-silent-time=@var{seconds}
3950When the build or substitution process remains silent for more than
3951@var{seconds}, terminate it and report a build failure.
3952
002622b6
LC
3953@item --timeout=@var{seconds}
3954Likewise, when the build or substitution process lasts for more than
3955@var{seconds}, terminate it and report a build failure.
3956
3957By default there is no timeout. This behavior can be restored with
3958@code{--timeout=0}.
3959
07ab4bf1
LC
3960@item --verbosity=@var{level}
3961Use the given verbosity level. @var{level} must be an integer between 0
3962and 5; higher means more verbose output. Setting a level of 4 or more
3963may be helpful when debugging setup issues with the build daemon.
3964
70ee5642
LC
3965@item --cores=@var{n}
3966@itemx -c @var{n}
3967Allow the use of up to @var{n} CPU cores for the build. The special
3968value @code{0} means to use as many CPU cores as available.
bf421152 3969
f6526eb3
LC
3970@item --max-jobs=@var{n}
3971@itemx -M @var{n}
3972Allow at most @var{n} build jobs in parallel. @xref{Invoking
3973guix-daemon, @code{--max-jobs}}, for details about this option and the
3974equivalent @command{guix-daemon} option.
3975
c78bd12b
LC
3976@end table
3977
e49951eb 3978Behind the scenes, @command{guix build} is essentially an interface to
c78bd12b
LC
3979the @code{package-derivation} procedure of the @code{(guix packages)}
3980module, and to the @code{build-derivations} procedure of the @code{(guix
01d8ac64 3981derivations)} module.
c78bd12b 3982
16eb115e
DP
3983In addition to options explicitly passed on the command line,
3984@command{guix build} and other @command{guix} commands that support
3985building honor the @code{GUIX_BUILD_OPTIONS} environment variable.
3986
3987@defvr {Environment Variable} GUIX_BUILD_OPTIONS
3988Users can define this variable to a list of command line options that
3989will automatically be used by @command{guix build} and other
3990@command{guix} commands that can perform builds, as in the example
3991below:
3992
3993@example
3994$ export GUIX_BUILD_OPTIONS="--no-substitutes -c 2 -L /foo/bar"
3995@end example
3996
847391fe
DP
3997These options are parsed independently, and the result is appended to
3998the parsed command-line options.
16eb115e
DP
3999@end defvr
4000
4001
39bee8a2
LC
4002@node Invoking guix edit
4003@section Invoking @command{guix edit}
4004
4005@cindex package definition, editing
4006So many packages, so many source files! The @command{guix edit} command
4007facilitates the life of packagers by pointing their editor at the source
4008file containing the definition of the specified packages. For instance:
4009
4010@example
4011guix edit gcc-4.8 vim
4012@end example
4013
4014@noindent
6237b9fa
LC
4015launches the program specified in the @code{VISUAL} or in the
4016@code{EDITOR} environment variable to edit the recipe of GCC@tie{}4.8.4
4017and that of Vim.
39bee8a2
LC
4018
4019If you are using Emacs, note that the Emacs user interface provides
6248e326
AK
4020similar functionality in the ``package info'' and ``package list''
4021buffers created by @kbd{M-x guix-search-by-name} and similar commands
4022(@pxref{Emacs Commands}).
39bee8a2
LC
4023
4024
210cc920
LC
4025@node Invoking guix download
4026@section Invoking @command{guix download}
4027
4028When writing a package definition, developers typically need to download
4029the package's source tarball, compute its SHA256 hash, and write that
4030hash in the package definition (@pxref{Defining Packages}). The
4031@command{guix download} tool helps with this task: it downloads a file
4032from the given URI, adds it to the store, and prints both its file name
4033in the store and its SHA256 hash.
4034
4035The fact that the downloaded file is added to the store saves bandwidth:
4036when the developer eventually tries to build the newly defined package
4037with @command{guix build}, the source tarball will not have to be
4038downloaded again because it is already in the store. It is also a
4039convenient way to temporarily stash files, which may be deleted
4040eventually (@pxref{Invoking guix gc}).
4041
4042The @command{guix download} command supports the same URIs as used in
4043package definitions. In particular, it supports @code{mirror://} URIs.
4044@code{https} URIs (HTTP over TLS) are supported @emph{provided} the
4045Guile bindings for GnuTLS are available in the user's environment; when
537c8bb3
LC
4046they are not available, an error is raised. @xref{Guile Preparations,
4047how to install the GnuTLS bindings for Guile,, gnutls-guile,
4048GnuTLS-Guile}, for more information.
210cc920
LC
4049
4050The following option is available:
4051
4052@table @code
4053@item --format=@var{fmt}
4054@itemx -f @var{fmt}
4055Write the hash in the format specified by @var{fmt}. For more
081145cf 4056information on the valid values for @var{fmt}, @pxref{Invoking guix hash}.
210cc920
LC
4057@end table
4058
6c365eca
NK
4059@node Invoking guix hash
4060@section Invoking @command{guix hash}
4061
210cc920 4062The @command{guix hash} command computes the SHA256 hash of a file.
6c365eca
NK
4063It is primarily a convenience tool for anyone contributing to the
4064distribution: it computes the cryptographic hash of a file, which can be
4065used in the definition of a package (@pxref{Defining Packages}).
4066
4067The general syntax is:
4068
4069@example
4070guix hash @var{option} @var{file}
4071@end example
4072
4073@command{guix hash} has the following option:
4074
4075@table @code
4076
4077@item --format=@var{fmt}
4078@itemx -f @var{fmt}
210cc920 4079Write the hash in the format specified by @var{fmt}.
6c365eca
NK
4080
4081Supported formats: @code{nix-base32}, @code{base32}, @code{base16}
4082(@code{hex} and @code{hexadecimal} can be used as well).
4083
4084If the @option{--format} option is not specified, @command{guix hash}
4085will output the hash in @code{nix-base32}. This representation is used
4086in the definitions of packages.
4087
3140f2df
LC
4088@item --recursive
4089@itemx -r
4090Compute the hash on @var{file} recursively.
4091
4092In this case, the hash is computed on an archive containing @var{file},
4093including its children if it is a directory. Some of @var{file}'s
4094meta-data is part of the archive; for instance, when @var{file} is a
4095regular file, the hash is different depending on whether @var{file} is
4096executable or not. Meta-data such as time stamps has no impact on the
4097hash (@pxref{Invoking guix archive}).
4098@c FIXME: Replace xref above with xref to an ``Archive'' section when
4099@c it exists.
4100
6c365eca
NK
4101@end table
4102
2f7d2d91
LC
4103@node Invoking guix import
4104@section Invoking @command{guix import}
4105
4106@cindex importing packages
4107@cindex package import
4108@cindex package conversion
4109The @command{guix import} command is useful for people willing to add a
4110package to the distribution but who'd rather do as little work as
4111possible to get there---a legitimate demand. The command knows of a few
4112repositories from which it can ``import'' package meta-data. The result
4113is a package definition, or a template thereof, in the format we know
4114(@pxref{Defining Packages}).
4115
4116The general syntax is:
4117
4118@example
4119guix import @var{importer} @var{options}@dots{}
4120@end example
4121
4122@var{importer} specifies the source from which to import package
4123meta-data, and @var{options} specifies a package identifier and other
4124options specific to @var{importer}. Currently, the available
4125``importers'' are:
4126
4127@table @code
4128@item gnu
4129Import meta-data for the given GNU package. This provides a template
4130for the latest version of that GNU package, including the hash of its
4131source tarball, and its canonical synopsis and description.
4132
4133Additional information such as the package's dependencies and its
4134license needs to be figured out manually.
4135
4136For example, the following command returns a package definition for
4137GNU@tie{}Hello:
4138
4139@example
4140guix import gnu hello
4141@end example
4142
4143Specific command-line options are:
4144
4145@table @code
4146@item --key-download=@var{policy}
4147As for @code{guix refresh}, specify the policy to handle missing OpenPGP
4148keys when verifying the package's signature. @xref{Invoking guix
4149refresh, @code{--key-download}}.
4150@end table
4151
4152@item pypi
4153@cindex pypi
4154Import meta-data from the @uref{https://pypi.python.org/, Python Package
4155Index}@footnote{This functionality requires Guile-JSON to be installed.
4156@xref{Requirements}.}. Information is taken from the JSON-formatted
4157description available at @code{pypi.python.org} and usually includes all
4158the relevant information, including package dependencies.
4159
4160The command below imports meta-data for the @code{itsdangerous} Python
4161package:
4162
4163@example
4164guix import pypi itsdangerous
4165@end example
4166
3aae8145
DT
4167@item gem
4168@cindex gem
4169Import meta-data from @uref{https://rubygems.org/,
4170RubyGems}@footnote{This functionality requires Guile-JSON to be
4171installed. @xref{Requirements}.}. Information is taken from the
4172JSON-formatted description available at @code{rubygems.org} and includes
4173most relevant information, including runtime dependencies. There are
4174some caveats, however. The meta-data doesn't distinguish between
4175synopses and descriptions, so the same string is used for both fields.
4176Additionally, the details of non-Ruby dependencies required to build
4177native extensions is unavailable and left as an exercise to the
4178packager.
4179
4180The command below imports meta-data for the @code{rails} Ruby package:
4181
4182@example
4183guix import gem rails
4184@end example
4185
d45dc6da
EB
4186@item cpan
4187@cindex CPAN
4188Import meta-data from @uref{https://www.metacpan.org/, MetaCPAN}.
4189Information is taken from the JSON-formatted meta-data provided through
4190@uref{https://api.metacpan.org/, MetaCPAN's API} and includes most
66392e47
EB
4191relevant information, such as module dependencies. License information
4192should be checked closely. If Perl is available in the store, then the
4193@code{corelist} utility will be used to filter core modules out of the
4194list of dependencies.
d45dc6da
EB
4195
4196The command command below imports meta-data for the @code{Acme::Boolean}
4197Perl module:
4198
4199@example
4200guix import cpan Acme::Boolean
4201@end example
4202
e1248602
RW
4203@item cran
4204@cindex CRAN
4205Import meta-data from @uref{http://cran.r-project.org/, CRAN}, the
4206central repository for the @uref{http://r-project.org, GNU@tie{}R
4207statistical and graphical environment}.
4208
b1186502 4209Information is extracted from the package's DESCRIPTION file.
e1248602
RW
4210
4211The command command below imports meta-data for the @code{Cairo}
4212R package:
4213
4214@example
4215guix import cran Cairo
4216@end example
4217
2f7d2d91
LC
4218@item nix
4219Import meta-data from a local copy of the source of the
4220@uref{http://nixos.org/nixpkgs/, Nixpkgs distribution}@footnote{This
4221relies on the @command{nix-instantiate} command of
4222@uref{http://nixos.org/nix/, Nix}.}. Package definitions in Nixpkgs are
4223typically written in a mixture of Nix-language and Bash code. This
4224command only imports the high-level package structure that is written in
4225the Nix language. It normally includes all the basic fields of a
4226package definition.
4227
4228When importing a GNU package, the synopsis and descriptions are replaced
4229by their canonical upstream variant.
4230
961d0d2d
LC
4231Usually, you will first need to do:
4232
4233@example
4234export NIX_REMOTE=daemon
4235@end example
4236
4237@noindent
4238so that @command{nix-instantiate} does not try to open the Nix database.
4239
2f7d2d91
LC
4240As an example, the command below imports the package definition of
4241LibreOffice (more precisely, it imports the definition of the package
4242bound to the @code{libreoffice} top-level attribute):
4243
4244@example
4245guix import nix ~/path/to/nixpkgs libreoffice
4246@end example
863af4e1
FB
4247
4248@item hackage
4249@cindex hackage
4250Import meta-data from Haskell community's central package archive
4251@uref{https://hackage.haskell.org/, Hackage}. Information is taken from
4252Cabal files and includes all the relevant information, including package
4253dependencies.
4254
4255Specific command-line options are:
4256
4257@table @code
a4154748
FB
4258@item --stdin
4259@itemx -s
4260Read a Cabal file from the standard input.
863af4e1
FB
4261@item --no-test-dependencies
4262@itemx -t
a4154748
FB
4263Do not include dependencies required by the test suites only.
4264@item --cabal-environment=@var{alist}
4265@itemx -e @var{alist}
4266@var{alist} is a Scheme alist defining the environment in which the
4267Cabal conditionals are evaluated. The accepted keys are: @code{os},
4268@code{arch}, @code{impl} and a string representing the name of a flag.
4269The value associated with a flag has to be either the symbol
4270@code{true} or @code{false}. The value associated with other keys
4271has to conform to the Cabal file format definition. The default value
4272associated with the keys @code{os}, @code{arch} and @code{impl} is
4273@samp{linux}, @samp{x86_64} and @samp{ghc} respectively.
863af4e1
FB
4274@end table
4275
4276The command below imports meta-data for the latest version of the
a4154748
FB
4277@code{HTTP} Haskell package without including test dependencies and
4278specifying the value of the flag @samp{network-uri} as @code{false}:
863af4e1
FB
4279
4280@example
a4154748 4281guix import hackage -t -e "'((\"network-uri\" . false))" HTTP
863af4e1
FB
4282@end example
4283
4284A specific package version may optionally be specified by following the
4285package name by a hyphen and a version number as in the following example:
4286
4287@example
4288guix import hackage mtl-2.1.3.1
4289@end example
7f74a931
FB
4290
4291@item elpa
4292@cindex elpa
4293Import meta-data from an Emacs Lisp Package Archive (ELPA) package
4294repository (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
4295
4296Specific command-line options are:
4297
4298@table @code
4299@item --archive=@var{repo}
4300@itemx -a @var{repo}
4301@var{repo} identifies the archive repository from which to retrieve the
4302information. Currently the supported repositories and their identifiers
4303are:
4304@itemize -
4305@item
840bd1d3 4306@uref{http://elpa.gnu.org/packages, GNU}, selected by the @code{gnu}
7f74a931
FB
4307identifier. This is the default.
4308
4309@item
840bd1d3 4310@uref{http://stable.melpa.org/packages, MELPA-Stable}, selected by the
7f74a931
FB
4311@code{melpa-stable} identifier.
4312
4313@item
840bd1d3 4314@uref{http://melpa.org/packages, MELPA}, selected by the @code{melpa}
7f74a931
FB
4315identifier.
4316@end itemize
4317@end table
2f7d2d91
LC
4318@end table
4319
4320The structure of the @command{guix import} code is modular. It would be
4321useful to have more importers for other package formats, and your help
4322is welcome here (@pxref{Contributing}).
4323
37166310
LC
4324@node Invoking guix refresh
4325@section Invoking @command{guix refresh}
4326
4327The primary audience of the @command{guix refresh} command is developers
4328of the GNU software distribution. By default, it reports any packages
4329provided by the distribution that are outdated compared to the latest
4330upstream version, like this:
4331
4332@example
4333$ guix refresh
4334gnu/packages/gettext.scm:29:13: gettext would be upgraded from 0.18.1.1 to 0.18.2.1
4335gnu/packages/glib.scm:77:12: glib would be upgraded from 2.34.3 to 2.37.0
4336@end example
4337
4338It does so by browsing each package's FTP directory and determining the
bcb571cb
LC
4339highest version number of the source tarballs therein. The command
4340knows how to update specific types of packages: GNU packages, ELPA
4341packages, etc.---see the documentation for @option{--type} below. The
4342are many packages, though, for which it lacks a method to determine
4343whether a new upstream release is available. However, the mechanism is
4344extensible, so feel free to get in touch with us to add a new method!
37166310
LC
4345
4346When passed @code{--update}, it modifies distribution source files to
4347update the version numbers and source tarball hashes of those packages'
4348recipes (@pxref{Defining Packages}). This is achieved by downloading
4349each package's latest source tarball and its associated OpenPGP
4350signature, authenticating the downloaded tarball against its signature
4351using @command{gpg}, and finally computing its hash. When the public
4352key used to sign the tarball is missing from the user's keyring, an
4353attempt is made to automatically retrieve it from a public key server;
4354when it's successful, the key is added to the user's keyring; otherwise,
4355@command{guix refresh} reports an error.
4356
4357The following options are supported:
4358
4359@table @code
4360
2d7fc7da
LC
4361@item --expression=@var{expr}
4362@itemx -e @var{expr}
4363Consider the package @var{expr} evaluates to.
4364
4365This is useful to precisely refer to a package, as in this example:
4366
4367@example
4368guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'
4369@end example
4370
4371This command lists the dependents of the ``final'' libc (essentially all
4372the packages.)
4373
37166310
LC
4374@item --update
4375@itemx -u
38e16b49
LC
4376Update distribution source files (package recipes) in place. This is
4377usually run from a checkout of the Guix source tree (@pxref{Running
4378Guix Before It Is Installed}):
4379
4380@example
4381$ ./pre-inst-env guix refresh -s non-core
4382@end example
4383
081145cf 4384@xref{Defining Packages}, for more information on package definitions.
37166310
LC
4385
4386@item --select=[@var{subset}]
4387@itemx -s @var{subset}
4388Select all the packages in @var{subset}, one of @code{core} or
4389@code{non-core}.
4390
4391The @code{core} subset refers to all the packages at the core of the
4392distribution---i.e., packages that are used to build ``everything
4393else''. This includes GCC, libc, Binutils, Bash, etc. Usually,
4394changing one of these packages in the distribution entails a rebuild of
4395all the others. Thus, such updates are an inconvenience to users in
4396terms of build time or bandwidth used to achieve the upgrade.
4397
4398The @code{non-core} subset refers to the remaining packages. It is
4399typically useful in cases where an update of the core packages would be
4400inconvenient.
4401
bcb571cb
LC
4402@item --type=@var{updater}
4403@itemx -t @var{updater}
7191adc5
AK
4404Select only packages handled by @var{updater} (may be a comma-separated
4405list of updaters). Currently, @var{updater} may be one of:
bcb571cb
LC
4406
4407@table @code
4408@item gnu
4409the updater for GNU packages;
e80c0f85
LC
4410@item gnome
4411the updater for GNOME packages;
bcb571cb 4412@item elpa
d882c235
LC
4413the updater for @uref{http://elpa.gnu.org/, ELPA} packages;
4414@item cran
b9d044ef 4415the updater for @uref{http://cran.r-project.org/, CRAN} packages;
bab020d7 4416@item pypi
b9d044ef 4417the updater for @uref{https://pypi.python.org, PyPI} packages.
bcb571cb
LC
4418@end table
4419
4420For instance, the following commands only checks for updates of Emacs
d882c235 4421packages hosted at @code{elpa.gnu.org} and updates of CRAN packages:
bcb571cb
LC
4422
4423@example
7191adc5 4424$ guix refresh --type=elpa,cran
d882c235 4425gnu/packages/statistics.scm:819:13: r-testthat would be upgraded from 0.10.0 to 0.11.0
bcb571cb
LC
4426gnu/packages/emacs.scm:856:13: emacs-auctex would be upgraded from 11.88.6 to 11.88.9
4427@end example
4428
37166310
LC
4429@end table
4430
4431In addition, @command{guix refresh} can be passed one or more package
4432names, as in this example:
4433
4434@example
38e16b49 4435$ ./pre-inst-env guix refresh -u emacs idutils gcc-4.8.4
37166310
LC
4436@end example
4437
4438@noindent
4439The command above specifically updates the @code{emacs} and
4440@code{idutils} packages. The @code{--select} option would have no
4441effect in this case.
4442
7d193ec3
EB
4443When considering whether to upgrade a package, it is sometimes
4444convenient to know which packages would be affected by the upgrade and
4445should be checked for compatibility. For this the following option may
4446be used when passing @command{guix refresh} one or more package names:
4447
4448@table @code
4449
6ffa706b
AK
4450@item --list-updaters
4451@itemx -L
4452List available updaters and exit (see @option{--type} above.)
4453
7d193ec3
EB
4454@item --list-dependent
4455@itemx -l
4456List top-level dependent packages that would need to be rebuilt as a
4457result of upgrading one or more packages.
4458
4459@end table
4460
4461Be aware that the @code{--list-dependent} option only
4462@emph{approximates} the rebuilds that would be required as a result of
4463an upgrade. More rebuilds might be required under some circumstances.
4464
4465@example
7779ab61
LC
4466$ guix refresh --list-dependent flex
4467Building the following 120 packages would ensure 213 dependent packages are rebuilt:
4468hop-2.4.0 geiser-0.4 notmuch-0.18 mu-0.9.9.5 cflow-1.4 idutils-4.6 @dots{}
7d193ec3
EB
4469@end example
4470
4471The command above lists a set of packages that could be built to check
4472for compatibility with an upgraded @code{flex} package.
4473
f9230085
LC
4474The following options can be used to customize GnuPG operation:
4475
4476@table @code
4477
f9230085
LC
4478@item --gpg=@var{command}
4479Use @var{command} as the GnuPG 2.x command. @var{command} is searched
4480for in @code{$PATH}.
4481
2bc53ba9
LC
4482@item --key-download=@var{policy}
4483Handle missing OpenPGP keys according to @var{policy}, which may be one
4484of:
4485
4486@table @code
4487@item always
4488Always download missing OpenPGP keys from the key server, and add them
4489to the user's GnuPG keyring.
4490
4491@item never
4492Never try to download missing OpenPGP keys. Instead just bail out.
4493
4494@item interactive
4495When a package signed with an unknown OpenPGP key is encountered, ask
4496the user whether to download it or not. This is the default behavior.
4497@end table
4498
4499@item --key-server=@var{host}
4500Use @var{host} as the OpenPGP key server when importing a public key.
4501
f9230085
LC
4502@end table
4503
b4f5e0e8
CR
4504@node Invoking guix lint
4505@section Invoking @command{guix lint}
4506The @command{guix lint} is meant to help package developers avoid common
873c4085
LC
4507errors and use a consistent style. It runs a number of checks on a
4508given set of packages in order to find common mistakes in their
4509definitions. Available @dfn{checkers} include (see
4510@code{--list-checkers} for a complete list):
4511
4512@table @code
4513@item synopsis
4514@itemx description
4515Validate certain typographical and stylistic rules about package
4516descriptions and synopses.
4517
4518@item inputs-should-be-native
4519Identify inputs that should most likely be native inputs.
4520
4521@item source
4522@itemx home-page
50f5c46d 4523@itemx source-file-name
873c4085 4524Probe @code{home-page} and @code{source} URLs and report those that are
50f5c46d
EB
4525invalid. Check that the source file name is meaningful, e.g. is not
4526just a version number or ``git-checkout'', and should not have a
4527@code{file-name} declared (@pxref{origin Reference}).
40a7d4e5 4528
5432734b
LC
4529@item cve
4530Report known vulnerabilities found in the Common Vulnerabilities and
4531Exposures (CVE) database
4532@uref{https://nvd.nist.gov/download.cfm#CVE_FEED, published by the US
4533NIST}.
4534
40a7d4e5
LC
4535@item formatting
4536Warn about obvious source code formatting issues: trailing white space,
4537use of tabulations, etc.
873c4085 4538@end table
b4f5e0e8
CR
4539
4540The general syntax is:
4541
4542@example
4543guix lint @var{options} @var{package}@dots{}
4544@end example
4545
4546If no package is given on the command line, then all packages are checked.
4547The @var{options} may be zero or more of the following:
4548
4549@table @code
4550
dd7c013d
CR
4551@item --checkers
4552@itemx -c
4553Only enable the checkers specified in a comma-separated list using the
4554names returned by @code{--list-checkers}.
4555
b4f5e0e8
CR
4556@item --list-checkers
4557@itemx -l
4558List and describe all the available checkers that will be run on packages
4559and exit.
4560
4561@end table
37166310 4562
fcc58db6
LC
4563@node Invoking guix size
4564@section Invoking @command{guix size}
4565
4566The @command{guix size} command helps package developers profile the
4567disk usage of packages. It is easy to overlook the impact of an
4568additional dependency added to a package, or the impact of using a
4569single output for a package that could easily be split (@pxref{Packages
4570with Multiple Outputs}). These are the typical issues that
4571@command{guix size} can highlight.
4572
4573The command can be passed a package specification such as @code{gcc-4.8}
4574or @code{guile:debug}, or a file name in the store. Consider this
4575example:
4576
4577@example
4578$ guix size coreutils
4579store item total self
4580/gnu/store/@dots{}-coreutils-8.23 70.0 13.9 19.8%
4581/gnu/store/@dots{}-gmp-6.0.0a 55.3 2.5 3.6%
4582/gnu/store/@dots{}-acl-2.2.52 53.7 0.5 0.7%
4583/gnu/store/@dots{}-attr-2.4.46 53.2 0.3 0.5%
4584/gnu/store/@dots{}-gcc-4.8.4-lib 52.9 15.7 22.4%
4585/gnu/store/@dots{}-glibc-2.21 37.2 37.2 53.1%
4586@end example
4587
4588@cindex closure
4589The store items listed here constitute the @dfn{transitive closure} of
4590Coreutils---i.e., Coreutils and all its dependencies, recursively---as
4591would be returned by:
4592
4593@example
4594$ guix gc -R /gnu/store/@dots{}-coreutils-8.23
4595@end example
4596
4597Here the output shows 3 columns next to store items. The first column,
4598labeled ``total'', shows the size in mebibytes (MiB) of the closure of
4599the store item---that is, its own size plus the size of all its
4600dependencies. The next column, labeled ``self'', shows the size of the
4601item itself. The last column shows the ratio of the item's size to the
4602space occupied by all the items listed here.
4603
4604In this example, we see that the closure of Coreutils weighs in at
460570@tie{}MiB, half of which is taken by libc. (That libc represents a
4606large fraction of the closure is not a problem @i{per se} because it is
4607always available on the system anyway.)
4608
4609When the package passed to @command{guix size} is available in the
4610store, @command{guix size} queries the daemon to determine its
4611dependencies, and measures its size in the store, similar to @command{du
4612-ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU
4613Coreutils}).
4614
4615When the given package is @emph{not} in the store, @command{guix size}
4616reports information based on information about the available substitutes
4617(@pxref{Substitutes}). This allows it to profile disk usage of store
4618items that are not even on disk, only available remotely.
4619
a8f996c6 4620The available options are:
fcc58db6
LC
4621
4622@table @option
4623
d490d06e
LC
4624@item --substitute-urls=@var{urls}
4625Use substitute information from @var{urls}.
4626@xref{client-substitute-urls, the same option for @code{guix build}}.
4627
a8f996c6
LC
4628@item --map-file=@var{file}
4629Write to @var{file} a graphical map of disk usage as a PNG file.
4630
4631For the example above, the map looks like this:
4632
4633@image{images/coreutils-size-map,5in,, map of Coreutils disk usage
4634produced by @command{guix size}}
4635
4636This option requires that
4637@uref{http://wingolog.org/software/guile-charting/, Guile-Charting} be
4638installed and visible in Guile's module search path. When that is not
4639the case, @command{guix size} fails as it tries to load it.
4640
fcc58db6
LC
4641@item --system=@var{system}
4642@itemx -s @var{system}
4643Consider packages for @var{system}---e.g., @code{x86_64-linux}.
4644
4645@end table
4646
88856916
LC
4647@node Invoking guix graph
4648@section Invoking @command{guix graph}
4649
4650@cindex DAG
4651Packages and their dependencies form a @dfn{graph}, specifically a
4652directed acyclic graph (DAG). It can quickly become difficult to have a
4653mental model of the package DAG, so the @command{guix graph} command is
4654here to provide a visual representation of the DAG. @command{guix
4655graph} emits a DAG representation in the input format of
4656@uref{http://www.graphviz.org/, Graphviz}, so its output can be passed
4657directly to Graphviz's @command{dot} command, for instance. The general
4658syntax is:
4659
4660@example
4661guix graph @var{options} @var{package}@dots{}
4662@end example
4663
4664For example, the following command generates a PDF file representing the
4665package DAG for the GNU@tie{}Core Utilities, showing its build-time
4666dependencies:
4667
4668@example
4669guix graph coreutils | dot -Tpdf > dag.pdf
4670@end example
4671
4672The output looks like this:
4673
4674@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}
4675
4676Nice little graph, no?
4677
4678But there's more than one graph! The one above is concise: it's the
4679graph of package objects, omitting implicit inputs such as GCC, libc,
4680grep, etc. It's often useful to have such a concise graph, but
4681sometimes you want to see more details. @command{guix graph} supports
4682several types of graphs, allowing you to choose the level of details:
4683
4684@table @code
4685@item package
4686This is the default type, the one we used above. It shows the DAG of
4687package objects, excluding implicit dependencies. It is concise, but
4688filters out many details.
4689
4690@item bag-emerged
4691This is the package DAG, @emph{including} implicit inputs.
4692
4693For instance, the following command:
4694
4695@example
4696guix graph --type=bag-emerged coreutils | dot -Tpdf > dag.pdf
4697@end example
4698
4699... yields this bigger graph:
4700
4701@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}
4702
4703At the bottom of the graph, we see all the implicit inputs of
4704@var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}}).
4705
4706Now, note that the dependencies of those implicit inputs---that is, the
4707@dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown
4708here, for conciseness.
4709
4710@item bag
4711Similar to @code{bag-emerged}, but this time including all the bootstrap
4712dependencies.
4713
38b92daa
LC
4714@item bag-with-origins
4715Similar to @code{bag}, but also showing origins and their dependencies.
4716
88856916
LC
4717@item derivations
4718This is the most detailed representation: It shows the DAG of
4719derivations (@pxref{Derivations}) and plain store items. Compared to
4720the above representation, many additional nodes are visible, including
4721builds scripts, patches, Guile modules, etc.
4722
4723@end table
4724
4725All the above types correspond to @emph{build-time dependencies}. The
4726following graph type represents the @emph{run-time dependencies}:
4727
4728@table @code
4729@item references
4730This is the graph of @dfn{references} of a package output, as returned
4731by @command{guix gc --references} (@pxref{Invoking guix gc}).
4732
4733If the given package output is not available in the store, @command{guix
4734graph} attempts to obtain dependency information from substitutes.
4735@end table
4736
4737The available options are the following:
4738
4739@table @option
4740@item --type=@var{type}
4741@itemx -t @var{type}
4742Produce a graph output of @var{type}, where @var{type} must be one of
4743the values listed above.
4744
4745@item --list-types
4746List the supported graph types.
4c8f997a
LC
4747
4748@item --expression=@var{expr}
4749@itemx -e @var{expr}
4750Consider the package @var{expr} evaluates to.
4751
4752This is useful to precisely refer to a package, as in this example:
4753
4754@example
4755guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'
4756@end example
88856916
LC
4757@end table
4758
4759
372c4bbc
DT
4760@node Invoking guix environment
4761@section Invoking @command{guix environment}
4762
f5fd4fd2 4763@cindex reproducible build environments
fe36d84e 4764@cindex development environments
372c4bbc
DT
4765The purpose of @command{guix environment} is to assist hackers in
4766creating reproducible development environments without polluting their
4767package profile. The @command{guix environment} tool takes one or more
4768packages, builds all of the necessary inputs, and creates a shell
4769environment to use them.
4770
4771The general syntax is:
4772
4773@example
4774guix environment @var{options} @var{package}@dots{}
4775@end example
4776
fe36d84e
LC
4777The following example spawns a new shell set up for the development of
4778GNU@tie{}Guile:
372c4bbc
DT
4779
4780@example
4781guix environment guile
4782@end example
4783
4784If the specified packages are not built yet, @command{guix environment}
4785automatically builds them. The new shell's environment is an augmented
4786version of the environment that @command{guix environment} was run in.
4787It contains the necessary search paths for building the given package
4788added to the existing environment variables. To create a ``pure''
4789environment in which the original environment variables have been unset,
50500f7c
LC
4790use the @code{--pure} option@footnote{Users sometimes wrongfully augment
4791environment variables such as @code{PATH} in their @file{~/.bashrc}
4792file. As a consequence, when @code{guix environment} launches it, Bash
4793may read @file{~/.bashrc}, thereby introducing ``impurities'' in these
4794environment variables. It is an error to define such environment
4795variables in @file{.bashrc}; instead, they should be defined in
4796@file{.bash_profile}, which is sourced only by log-in shells.
4797@xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for
4798details on Bash start-up files.}.
372c4bbc 4799
28de8d25
LC
4800@vindex GUIX_ENVIRONMENT
4801@command{guix environment} defines the @code{GUIX_ENVIRONMENT}
4802variable in the shell it spaws. This allows users to, say, define a
4803specific prompt for development environments in their @file{.bashrc}
4804(@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):
4805
4806@example
4807if [ -n "$GUIX_ENVIRONMENT" ]
4808then
4809 export PS1="\u@@\h \w [dev]\$ "
4810fi
4811@end example
4812
372c4bbc
DT
4813Additionally, more than one package may be specified, in which case the
4814union of the inputs for the given packages are used. For example, the
4815command below spawns a shell where all of the dependencies of both Guile
4816and Emacs are available:
4817
4818@example
4819guix environment guile emacs
4820@end example
4821
1de2fe95
DT
4822Sometimes an interactive shell session is not desired. An arbitrary
4823command may be invoked by placing the @code{--} token to separate the
4824command from the rest of the arguments:
372c4bbc
DT
4825
4826@example
1de2fe95 4827guix environment guile -- make -j4
372c4bbc
DT
4828@end example
4829
fe36d84e
LC
4830In other situations, it is more convenient to specify the list of
4831packages needed in the environment. For example, the following command
4832runs @command{python} from an environment containing Python@tie{}2.7 and
4833NumPy:
4834
4835@example
1de2fe95 4836guix environment --ad-hoc python2-numpy python-2.7 -- python
fe36d84e
LC
4837@end example
4838
cc90fbbf
DT
4839Furthermore, one might want the dependencies of a package and also some
4840additional packages that are not build-time or runtime dependencies, but
4841are useful when developing nonetheless. Because of this, the
4842@code{--ad-hoc} flag is positional. Packages appearing before
4843@code{--ad-hoc} are interpreted as packages whose dependencies will be
4844added to the environment. Packages appearing after are interpreted as
4845packages that will be added to the environment directly. For example,
4846the following command creates a Guix development environment that
4847additionally includes Git and strace:
4848
4849@example
4850guix environment guix --ad-hoc git strace
4851@end example
4852
f535dcbe
DT
4853Sometimes it is desirable to isolate the environment as much as
4854possible, for maximal purity and reproducibility. In particular, when
4855using Guix on a host distro that is not GuixSD, it is desirable to
4856prevent access to @file{/usr/bin} and other system-wide resources from
4857the development environment. For example, the following command spawns
4858a Guile REPL in a ``container'' where only the store and the current
4859working directory are mounted:
4860
4861@example
4862guix environment --ad-hoc --container guile -- guile
4863@end example
4864
0f252e26 4865@quotation Note
cfd35b4e 4866The @code{--container} option requires Linux-libre 3.19 or newer.
0f252e26
DT
4867@end quotation
4868
fe36d84e 4869The available options are summarized below.
372c4bbc
DT
4870
4871@table @code
4872@item --expression=@var{expr}
4873@itemx -e @var{expr}
c9c282ce
DT
4874Create an environment for the package or list of packages that
4875@var{expr} evaluates to.
372c4bbc 4876
fe36d84e
LC
4877For example, running:
4878
4879@example
4880guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'
4881@end example
4882
4883starts a shell with the environment for this specific variant of the
4884PETSc package.
4885
c9c282ce
DT
4886Running:
4887
4888@example
5c2b2f00 4889guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'
c9c282ce
DT
4890@end example
4891
4892starts a shell with all the GuixSD base packages available.
4893
372c4bbc
DT
4894@item --load=@var{file}
4895@itemx -l @var{file}
c9c282ce
DT
4896Create an environment for the package or list of packages that the code
4897within @var{file} evaluates to.
372c4bbc 4898
fe36d84e
LC
4899As an example, @var{file} might contain a definition like this
4900(@pxref{Defining Packages}):
4901
4902@example
4903@verbatiminclude environment-gdb.scm
4904@end example
4905
a54bd6d7
DT
4906@item --ad-hoc
4907Include all specified packages in the resulting environment, as if an
4908@i{ad hoc} package were defined with them as inputs. This option is
4909useful for quickly creating an environment without having to write a
4910package expression to contain the desired inputs.
4911
4912For instance, the command:
4913
4914@example
1de2fe95 4915guix environment --ad-hoc guile guile-sdl -- guile
a54bd6d7
DT
4916@end example
4917
4918runs @command{guile} in an environment where Guile and Guile-SDL are
4919available.
4920
417c39f1
LC
4921Note that this example implicitly asks for the default output of
4922@code{guile} and @code{guile-sdl} but it is possible to ask for a
4923specific output---e.g., @code{glib:bin} asks for the @code{bin} output
4924of @code{glib} (@pxref{Packages with Multiple Outputs}).
4925
cc90fbbf
DT
4926This option may be composed with the default behavior of @command{guix
4927environment}. Packages appearing before @code{--ad-hoc} are interpreted
4928as packages whose dependencies will be added to the environment, the
4929default behavior. Packages appearing after are interpreted as packages
4930that will be added to the environment directly.
4931
372c4bbc
DT
4932@item --pure
4933Unset existing environment variables when building the new environment.
4934This has the effect of creating an environment in which search paths
4935only contain package inputs.
4936
4937@item --search-paths
4938Display the environment variable definitions that make up the
4939environment.
ce367ef3
LC
4940
4941@item --system=@var{system}
4942@itemx -s @var{system}
4943Attempt to build for @var{system}---e.g., @code{i686-linux}.
f535dcbe
DT
4944
4945@item --container
4946@itemx -C
4947@cindex container
4948Run @var{command} within an isolated container. The current working
56b6befb 4949directory outside the container is mapped inside the
f535dcbe
DT
4950container. Additionally, the spawned process runs as the current user
4951outside the container, but has root privileges in the context of the
4952container.
4953
4954@item --network
4955@itemx -N
4956For containers, share the network namespace with the host system.
4957Containers created without this flag only have access to the loopback
4958device.
4959
4960@item --expose=@var{source}[=@var{target}]
4961For containers, expose the file system @var{source} from the host system
4962as the read-only file system @var{target} within the container. If
4963@var{target} is not specified, @var{source} is used as the target mount
4964point in the container.
4965
4966The example below spawns a Guile REPL in a container in which the user's
4967home directory is accessible read-only via the @file{/exchange}
4968directory:
4969
4970@example
4971guix environment --container --expose=$HOME=/exchange guile -- guile
4972@end example
4973
5c2b2f00 4974@item --share=@var{source}[=@var{target}]
f535dcbe
DT
4975For containers, share the file system @var{source} from the host system
4976as the writable file system @var{target} within the container. If
4977@var{target} is not specified, @var{source} is used as the target mount
4978point in the container.
4979
4980The example below spawns a Guile REPL in a container in which the user's
4981home directory is accessible for both reading and writing via the
4982@file{/exchange} directory:
4983
4984@example
4985guix environment --container --share=$HOME=/exchange guile -- guile
4986@end example
372c4bbc
DT
4987@end table
4988
4989It also supports all of the common build options that @command{guix
4990build} supports (@pxref{Invoking guix build, common build options}).
4991
aff8ce7c
DT
4992@node Invoking guix publish
4993@section Invoking @command{guix publish}
4994
4995The purpose of @command{guix publish} is to enable users to easily share
8ce229fc
LC
4996their store with others, which can then use it as a substitute server
4997(@pxref{Substitutes}).
4998
4999When @command{guix publish} runs, it spawns an HTTP server which allows
5000anyone with network access to obtain substitutes from it. This means
5001that any machine running Guix can also act as if it were a build farm,
5002since the HTTP interface is compatible with Hydra, the software behind
5003the @code{hydra.gnu.org} build farm.
aff8ce7c
DT
5004
5005For security, each substitute is signed, allowing recipients to check
5006their authenticity and integrity (@pxref{Substitutes}). Because
5007@command{guix publish} uses the system's signing key, which is only
5463fe51
LC
5008readable by the system administrator, it must be started as root; the
5009@code{--user} option makes it drop root privileges early on.
aff8ce7c 5010
b18812b6
LC
5011The signing key pair must be generated before @command{guix publish} is
5012launched, using @command{guix archive --generate-key} (@pxref{Invoking
5013guix archive}).
5014
aff8ce7c
DT
5015The general syntax is:
5016
5017@example
5018guix publish @var{options}@dots{}
5019@end example
5020
5021Running @command{guix publish} without any additional arguments will
5022spawn an HTTP server on port 8080:
5023
5024@example
5025guix publish
5026@end example
5027
5028Once a publishing server has been authorized (@pxref{Invoking guix
5029archive}), the daemon may download substitutes from it:
5030
5031@example
5032guix-daemon --substitute-urls=http://example.org:8080
5033@end example
5034
5035The following options are available:
5036
5037@table @code
5038@item --port=@var{port}
5039@itemx -p @var{port}
5040Listen for HTTP requests on @var{port}.
5041
9e2292ef
LC
5042@item --listen=@var{host}
5043Listen on the network interface for @var{host}. The default is to
5044accept connections from any interface.
5045
5463fe51
LC
5046@item --user=@var{user}
5047@itemx -u @var{user}
5048Change privileges to @var{user} as soon as possible---i.e., once the
5049server socket is open and the signing key has been read.
5050
aff8ce7c
DT
5051@item --repl[=@var{port}]
5052@itemx -r [@var{port}]
5053Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile
8ce229fc
LC
5054Reference Manual}) on @var{port} (37146 by default). This is used
5055primarily for debugging a running @command{guix publish} server.
aff8ce7c
DT
5056@end table
5057
1c52181f
LC
5058Enabling @command{guix publish} on a GuixSD system is a one-liner: just
5059add a call to @code{guix-publish-service} in the @code{services} field
5060of the @code{operating-system} declaration (@pxref{guix-publish-service,
5061@code{guix-publish-service}}).
5062
d23c20f1
LC
5063
5064@node Invoking guix challenge
5065@section Invoking @command{guix challenge}
5066
5067@cindex reproducible builds
5068@cindex verifiable builds
5069
5070Do the binaries provided by this server really correspond to the source
5071code it claims to build? Is this package's build process deterministic?
5072These are the questions the @command{guix challenge} command attempts to
5073answer.
5074
5075The former is obviously an important question: Before using a substitute
5076server (@pxref{Substitutes}), you'd rather @emph{verify} that it
5077provides the right binaries, and thus @emph{challenge} it. The latter
5078is what enables the former: If package builds are deterministic, then
5079independent builds of the package should yield the exact same result,
5080bit for bit; if a server provides a binary different from the one
5081obtained locally, it may be either corrupt or malicious.
5082
5083We know that the hash that shows up in @file{/gnu/store} file names is
5084the hash of all the inputs of the process that built the file or
5085directory---compilers, libraries, build scripts,
5086etc. (@pxref{Introduction}). Assuming deterministic build processes,
5087one store file name should map to exactly one build output.
5088@command{guix challenge} checks whether there is, indeed, a single
5089mapping by comparing the build outputs of several independent builds of
5090any given store item.
5091
5092The command's output looks like this:
5093
5094@smallexample
5095$ guix challenge --substitute-urls="http://hydra.gnu.org http://guix.example.org"
5096updating list of substitutes from 'http://hydra.gnu.org'... 100.0%
5097updating list of substitutes from 'http://guix.example.org'... 100.0%
5098/gnu/store/@dots{}-openssl-1.0.2d contents differ:
5099 local hash: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
5100 http://hydra.gnu.org/nar/@dots{}-openssl-1.0.2d: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
5101 http://guix.example.org/nar/@dots{}-openssl-1.0.2d: 1zy4fmaaqcnjrzzajkdn3f5gmjk754b43qkq47llbyak9z0qjyim
5102/gnu/store/@dots{}-git-2.5.0 contents differ:
5103 local hash: 00p3bmryhjxrhpn2gxs2fy0a15lnip05l97205pgbk5ra395hyha
5104 http://hydra.gnu.org/nar/@dots{}-git-2.5.0: 069nb85bv4d4a6slrwjdy8v1cn4cwspm3kdbmyb81d6zckj3nq9f
5105 http://guix.example.org/nar/@dots{}-git-2.5.0: 0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73
5106/gnu/store/@dots{}-pius-2.1.1 contents differ:
5107 local hash: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
5108 http://hydra.gnu.org/nar/@dots{}-pius-2.1.1: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
5109 http://guix.example.org/nar/@dots{}-pius-2.1.1: 1cy25x1a4fzq5rk0pmvc8xhwyffnqz95h2bpvqsz2mpvlbccy0gs
5110@end smallexample
5111
5112@noindent
5113In this example, @command{guix challenge} first scans the store to
5114determine the set of locally-built derivations---as opposed to store
5115items that were downloaded from a substitute server---and then queries
5116all the substitute servers. It then reports those store items for which
5117the servers obtained a result different from the local build.
5118
5119@cindex non-determinism, in package builds
5120As an example, @code{guix.example.org} always gets a different answer.
5121Conversely, @code{hydra.gnu.org} agrees with local builds, except in the
5122case of Git. This might indicate that the build process of Git is
5123non-deterministic, meaning that its output varies as a function of
5124various things that Guix does not fully control, in spite of building
5125packages in isolated environments (@pxref{Features}). Most common
5126sources of non-determinism include the addition of timestamps in build
5127results, the inclusion of random numbers, and directory listings sorted
5128by inode number. See @uref{http://reproducible.debian.net/howto/}, for
5129more information.
5130
5131To find out what's wrong with this Git binary, we can do something along
5132these lines (@pxref{Invoking guix archive}):
5133
5134@example
5135$ wget -q -O - http://hydra.gnu.org/nar/@dots{}-git-2.5.0 \
5136 | guix archive -x /tmp/git
043f4698 5137$ diff -ur --no-dereference /gnu/store/@dots{}-git.2.5.0 /tmp/git
d23c20f1
LC
5138@end example
5139
5140This command shows the difference between the files resulting from the
5141local build, and the files resulting from the build on
5142@code{hydra.gnu.org} (@pxref{Overview, Comparing and Merging Files,,
5143diffutils, Comparing and Merging Files}). The @command{diff} command
5144works great for text files. When binary files differ, a better option
5145is @uref{http://diffoscope.org/, Diffoscope}, a tool that helps
5146visualize differences for all kinds of files.
5147
5148Once you've done that work, you can tell whether the differences are due
5149to a non-deterministic build process or to a malicious server. We try
5150hard to remove sources of non-determinism in packages to make it easier
5151to verify substitutes, but of course, this is a process, one that
5152involves not just Guix but a large part of the free software community.
5153In the meantime, @command{guix challenge} is one tool to help address
5154the problem.
5155
5156If you are writing packages for Guix, you are encouraged to check
5157whether @code{hydra.gnu.org} and other substitute servers obtain the
5158same build result as you did with:
5159
5160@example
5161$ guix challenge @var{package}
5162@end example
5163
5164@noindent
5165... where @var{package} is a package specification such as
5166@code{guile-2.0} or @code{glibc:debug}.
5167
5168The general syntax is:
5169
5170@example
5171guix challenge @var{options} [@var{packages}@dots{}]
5172@end example
5173
5174The one option that matters is:
5175
5176@table @code
5177
5178@item --substitute-urls=@var{urls}
5179Consider @var{urls} the whitespace-separated list of substitute source
5180URLs to compare to.
5181
5182@end table
5183
5184
32efa254
DT
5185@node Invoking guix container
5186@section Invoking @command{guix container}
5187@cindex container
5188
5189@quotation Note
5190As of version @value{VERSION}, this tool is experimental. The interface
5191is subject to radical change in the future.
5192@end quotation
5193
5194The purpose of @command{guix container} is to manipulate processes
5195running within an isolated environment, commonly known as a
46c36586 5196``container'', typically created by the @command{guix environment}
32efa254
DT
5197(@pxref{Invoking guix environment}) and @command{guix system container}
5198(@pxref{Invoking guix system}) commands.
5199
5200The general syntax is:
5201
5202@example
5203guix container @var{action} @var{options}@dots{}
5204@end example
5205
5206@var{action} specifies the operation to perform with a container, and
5207@var{options} specifies the context-specific arguments for the action.
5208
5209The following actions are available:
5210
5211@table @code
5212@item exec
5213Execute a command within the context of a running container.
5214
5215The syntax is:
5216
5217@example
5218guix container exec @var{pid} @var{program} @var{arguments}@dots{}
5219@end example
5220
5221@var{pid} specifies the process ID of the running container.
5222@var{program} specifies an executable file name within the container's
5223root file system. @var{arguments} are the additional options that will
5224be passed to @var{program}.
5225
5226The following command launches an interactive login shell inside a
5227GuixSD container, started by @command{guix system container}, and whose
5228process ID is 9001:
5229
5230@example
5231guix container exec 9001 /run/current-system/profile/bin/bash --login
5232@end example
5233
5234Note that the @var{pid} cannot be the parent process of a container. It
5235must be the container's PID 1 or one of its child processes.
5236
5237@end table
5238
a1ba8475
LC
5239@c *********************************************************************
5240@node GNU Distribution
5241@chapter GNU Distribution
5242
3ca2731c 5243@cindex Guix System Distribution
4705641f 5244@cindex GuixSD
3ca2731c
LC
5245Guix comes with a distribution of the GNU system consisting entirely of
5246free software@footnote{The term ``free'' here refers to the
a1ba8475 5247@url{http://www.gnu.org/philosophy/free-sw.html,freedom provided to
3ca2731c 5248users of that software}.}. The
35ed9306
LC
5249distribution can be installed on its own (@pxref{System Installation}),
5250but it is also possible to install Guix as a package manager on top of
5251an installed GNU/Linux system (@pxref{Installation}). To distinguish
3ca2731c 5252between the two, we refer to the standalone distribution as the Guix
4705641f 5253System Distribution, or GuixSD.
35ed9306
LC
5254
5255The distribution provides core GNU packages such as GNU libc, GCC, and
5256Binutils, as well as many GNU and non-GNU applications. The complete
5257list of available packages can be browsed
093ae1be 5258@url{http://www.gnu.org/software/guix/packages,on-line} or by
d03bb653 5259running @command{guix package} (@pxref{Invoking guix package}):
a1ba8475
LC
5260
5261@example
e49951eb 5262guix package --list-available
a1ba8475
LC
5263@end example
5264
35ed9306 5265Our goal has been to provide a practical 100% free software distribution of
401c53c4
LC
5266Linux-based and other variants of GNU, with a focus on the promotion and
5267tight integration of GNU components, and an emphasis on programs and
5268tools that help users exert that freedom.
5269
3ca2731c 5270Packages are currently available on the following platforms:
c320011d
LC
5271
5272@table @code
5273
5274@item x86_64-linux
5275Intel/AMD @code{x86_64} architecture, Linux-Libre kernel;
5276
5277@item i686-linux
5278Intel 32-bit architecture (IA32), Linux-Libre kernel;
5279
aa1e1947 5280@item armhf-linux
aa725117 5281ARMv7-A architecture with hard float, Thumb-2 and NEON,
aa1e1947
MW
5282using the EABI hard-float ABI, and Linux-Libre kernel.
5283
c320011d
LC
5284@item mips64el-linux
5285little-endian 64-bit MIPS processors, specifically the Loongson series,
5286n32 application binary interface (ABI), and Linux-Libre kernel.
5287
5288@end table
5289
4705641f 5290GuixSD itself is currently only available on @code{i686} and @code{x86_64}.
3ca2731c 5291
c320011d
LC
5292@noindent
5293For information on porting to other architectures or kernels,
5294@xref{Porting}.
5295
401c53c4 5296@menu
5af6de3e 5297* System Installation:: Installing the whole operating system.
35ed9306 5298* System Configuration:: Configuring the operating system.
91ef73d4 5299* Installing Debugging Files:: Feeding the debugger.
05962f29 5300* Security Updates:: Deploying security fixes quickly.
401c53c4 5301* Package Modules:: Packages from the programmer's viewpoint.
da7cabd4 5302* Packaging Guidelines:: Growing the distribution.
401c53c4 5303* Bootstrapping:: GNU/Linux built from scratch.
8b315a6d 5304* Porting:: Targeting another platform or kernel.
401c53c4
LC
5305@end menu
5306
5307Building this distribution is a cooperative effort, and you are invited
081145cf 5308to join! @xref{Contributing}, for information about how you can help.
401c53c4 5309
5af6de3e
LC
5310@node System Installation
5311@section System Installation
5312
3ca2731c
LC
5313@cindex Guix System Distribution
5314This section explains how to install the Guix System Distribution
5315on a machine. The Guix package manager can
35ed9306
LC
5316also be installed on top of a running GNU/Linux system,
5317@pxref{Installation}.
5af6de3e
LC
5318
5319@ifinfo
5320@c This paragraph is for people reading this from tty2 of the
5321@c installation image.
5322You're reading this documentation with an Info reader. For details on
5323how to use it, hit the @key{RET} key (``return'' or ``enter'') on the
6621cdb6 5324link that follows: @pxref{Help,,, info, Info: An Introduction}. Hit
5af6de3e
LC
5325@kbd{l} afterwards to come back here.
5326@end ifinfo
5327
8aaaae38
LC
5328@subsection Limitations
5329
4705641f 5330As of version @value{VERSION}, the Guix System Distribution (GuixSD) is
3ca2731c 5331not production-ready. It may contain bugs and lack important
8aaaae38
LC
5332features. Thus, if you are looking for a stable production system that
5333respects your freedom as a computer user, a good solution at this point
5334is to consider @url{http://www.gnu.org/distros/free-distros.html, one of
5335more established GNU/Linux distributions}. We hope you can soon switch
4705641f 5336to the GuixSD without fear, of course. In the meantime, you can
8aaaae38
LC
5337also keep using your distribution and try out the package manager on top
5338of it (@pxref{Installation}).
5339
5340Before you proceed with the installation, be aware of the following
5341noteworthy limitations applicable to version @value{VERSION}:
5342
5343@itemize
5344@item
5345The installation process does not include a graphical user interface and
5346requires familiarity with GNU/Linux (see the following subsections to
5347get a feel of what that means.)
5348
5349@item
093ae1be
LC
5350The system does not yet provide full GNOME and KDE desktops. Xfce and
5351Enlightenment are available though, if graphical desktop environments
5352are your thing, as well as a number of X11 window managers.
8aaaae38
LC
5353
5354@item
dbcb0ab1 5355Support for the Logical Volume Manager (LVM) is missing.
8aaaae38
LC
5356
5357@item
5358Few system services are currently supported out-of-the-box
5359(@pxref{Services}).
5360
5361@item
093ae1be 5362More than 2,000 packages are available, but you may
8aaaae38
LC
5363occasionally find that a useful package is missing.
5364@end itemize
5365
5366You've been warned. But more than a disclaimer, this is an invitation
5367to report issues (and success stories!), and join us in improving it.
5368@xref{Contributing}, for more info.
5af6de3e
LC
5369
5370@subsection USB Stick Installation
5371
5372An installation image for USB sticks can be downloaded from
4705641f 5373@indicateurl{ftp://alpha.gnu.org/gnu/guix/guixsd-usb-install-@value{VERSION}.@var{system}.xz},
5af6de3e
LC
5374where @var{system} is one of:
5375
5376@table @code
5377@item x86_64-linux
5378for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;
5379
5380@item i686-linux
5381for a 32-bit GNU/Linux system on Intel-compatible CPUs.
5382@end table
5383
5384This image contains a single partition with the tools necessary for an
5385installation. It is meant to be copied @emph{as is} to a large-enough
5386USB stick.
5387
5388To copy the image to a USB stick, follow these steps:
5389
5390@enumerate
5391@item
5392Decompress the image using the @command{xz} command:
5393
5394@example
4705641f 5395xz -d guixsd-usb-install-@value{VERSION}.@var{system}.xz
5af6de3e
LC
5396@end example
5397
5398@item
5399Insert a USB stick of 1@tie{}GiB or more in your machine, and determine
5400its device name. Assuming that USB stick is known as @file{/dev/sdX},
5401copy the image with:
5402
5403@example
4705641f 5404dd if=guixsd-usb-install-@value{VERSION}.x86_64 of=/dev/sdX
5af6de3e
LC
5405@end example
5406
5407Access to @file{/dev/sdX} usually requires root privileges.
5408@end enumerate
5409
5410Once this is done, you should be able to reboot the system and boot from
5411the USB stick. The latter usually requires you to get in the BIOS' boot
5412menu, where you can choose to boot from the USB stick.
5413
5414@subsection Preparing for Installation
5415
5416Once you have successfully booted the image on the USB stick, you should
5417end up with a root prompt. Several console TTYs are configured and can
5418be used to run commands as root. TTY2 shows this documentation,
5419browsable using the Info reader commands (@pxref{Help,,, info, Info: An
ae7ffa9e
LC
5420Introduction}). The installation system runs the GPM mouse daemon,
5421which allows you to select text with the left mouse button and to paste
5422it with the middle button.
5af6de3e
LC
5423
5424To install the system, you would:
5425
5426@enumerate
5427
5428@item
235cba85
LC
5429Configure the network, by running:
5430
5431@example
5432ifconfig eno1 up && dhclient eno1
5433@end example
5434
5435to get an automatically assigned IP address from the wired
152dd61c 5436network interface controller@footnote{
95c559c1
LC
5437@c http://cgit.freedesktop.org/systemd/systemd/tree/src/udev/udev-builtin-net_id.c#n20
5438The name @code{eno1} is for the first on-board Ethernet controller. The
5439interface name for an Ethernet controller that is in the first slot of
5440the first PCI bus, for instance, would be @code{enp1s0}. Use
235cba85 5441@command{ifconfig -a} to list all the available network interfaces.},
95c559c1 5442or using the @command{ifconfig} command.
5af6de3e
LC
5443
5444The system automatically loads drivers for your network interface
5445controllers.
5446
5447Setting up network access is almost always a requirement because the
5448image does not contain all the software and tools that may be needed.
5449
5450@item
316d65be
LC
5451Unless this has already been done, you must partition, and then format
5452the target partition.
5af6de3e 5453
7ab44369
LC
5454Preferably, assign partitions a label so that you can easily and
5455reliably refer to them in @code{file-system} declarations (@pxref{File
5456Systems}). This is typically done using the @code{-L} option of
5457@command{mkfs.ext4} and related commands.
5458
316d65be
LC
5459@c FIXME: Uncomment this once GRUB fully supports encrypted roots.
5460@c A typical command sequence may be:
5461@c
5462@c @example
5463@c # fdisk /dev/sdX
5464@c @dots{} Create partitions etc.@dots{}
5465@c # cryptsetup luksFormat /dev/sdX1
5466@c # cryptsetup open --type luks /dev/sdX1 my-partition
5467@c # mkfs.ext4 -L my-root /dev/mapper/my-partition
5468@c @end example
6d6e6281 5469
5af6de3e 5470The installation image includes Parted (@pxref{Overview,,, parted, GNU
b419c7f5
LC
5471Parted User Manual}), @command{fdisk}, Cryptsetup/LUKS for disk
5472encryption, and e2fsprogs, the suite of tools to manipulate
5473ext2/ext3/ext4 file systems.
5af6de3e 5474
83a17b62
LC
5475@item
5476Once that is done, mount the target root partition under @file{/mnt}.
5477
5478@item
5479Lastly, run @code{deco start cow-store /mnt}.
5480
5481This will make @file{/gnu/store} copy-on-write, such that packages added
5482to it during the installation phase will be written to the target disk
5483rather than kept in memory.
5484
5af6de3e
LC
5485@end enumerate
5486
5af6de3e
LC
5487
5488@subsection Proceeding with the Installation
5489
5490With the target partitions ready, you now have to edit a file and
5491provide the declaration of the operating system to be installed. To
5492that end, the installation system comes with two text editors: GNU nano
5493(@pxref{Top,,, nano, GNU nano Manual}), and GNU Zile, an Emacs clone.
5494It is better to store that file on the target root file system, say, as
5495@file{/mnt/etc/config.scm}.
5496
dd51caac
LC
5497@xref{Using the Configuration System}, for examples of operating system
5498configurations. These examples are available under
5499@file{/etc/configuration} in the installation image, so you can copy
5500them and use them as a starting point for your own configuration.
5af6de3e 5501
dd51caac
LC
5502Once you are done preparing the configuration file, the new system must
5503be initialized (remember that the target root file system is mounted
5504under @file{/mnt}):
5af6de3e
LC
5505
5506@example
5507guix system init /mnt/etc/config.scm /mnt
5508@end example
5509
5510@noindent
5511This will copy all the necessary files, and install GRUB on
5512@file{/dev/sdX}, unless you pass the @option{--no-grub} option. For
6621cdb6 5513more information, @pxref{Invoking guix system}. This command may trigger
5af6de3e
LC
5514downloads or builds of missing packages, which can take some time.
5515
1bd4e6db
LC
5516Once that command has completed---and hopefully succeeded!---you can run
5517@command{reboot} and boot into the new system. The @code{root} password
5518in the new system is initially empty; other users' passwords need to be
5519initialized by running the @command{passwd} command as @code{root},
5520unless your configuration specifies otherwise
5521(@pxref{user-account-password, user account passwords}).
5522
5523Join us on @code{#guix} on the Freenode IRC network or on
5af6de3e
LC
5524@file{guix-devel@@gnu.org} to share your experience---good or not so
5525good.
5526
5527@subsection Building the Installation Image
5528
5529The installation image described above was built using the @command{guix
5530system} command, specifically:
5531
5532@example
8a225c66 5533guix system disk-image --image-size=850MiB gnu/system/install.scm
5af6de3e
LC
5534@end example
5535
5536@xref{Invoking guix system}, for more information. See
5537@file{gnu/system/install.scm} in the source tree for more information
5538about the installation image.
5539
cf4a9129
LC
5540@node System Configuration
5541@section System Configuration
b208a005 5542
cf4a9129 5543@cindex system configuration
3ca2731c 5544The Guix System Distribution supports a consistent whole-system configuration
cf4a9129
LC
5545mechanism. By that we mean that all aspects of the global system
5546configuration---such as the available system services, timezone and
5547locale settings, user accounts---are declared in a single place. Such
5548a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected.
91ef73d4 5549
cf4a9129
LC
5550One of the advantages of putting all the system configuration under the
5551control of Guix is that it supports transactional system upgrades, and
5552makes it possible to roll-back to a previous system instantiation,
5553should something go wrong with the new one (@pxref{Features}). Another
5554one is that it makes it easy to replicate the exact same configuration
5555across different machines, or at different points in time, without
5556having to resort to additional administration tools layered on top of
5557the system's own tools.
5558@c Yes, we're talking of Puppet, Chef, & co. here. ↑
91ef73d4 5559
cf4a9129
LC
5560This section describes this mechanism. First we focus on the system
5561administrator's viewpoint---explaining how the system is configured and
5562instantiated. Then we show how this mechanism can be extended, for
5563instance to support new system services.
91ef73d4 5564
cf4a9129
LC
5565@menu
5566* Using the Configuration System:: Customizing your GNU system.
7313a52e 5567* operating-system Reference:: Detail of operating-system declarations.
cf4a9129 5568* File Systems:: Configuring file system mounts.
510f9d86 5569* Mapped Devices:: Block device extra processing.
cf4a9129 5570* User Accounts:: Specifying user accounts.
598e19dc 5571* Locales:: Language and cultural convention settings.
cf4a9129 5572* Services:: Specifying system services.
0ae8c15a 5573* Setuid Programs:: Programs running with root privileges.
efb5e833 5574* X.509 Certificates:: Authenticating HTTPS servers.
996ed739 5575* Name Service Switch:: Configuring libc's name service switch.
fd1b1fa2 5576* Initial RAM Disk:: Linux-Libre bootstrapping.
88faf933 5577* GRUB Configuration:: Configuring the boot loader.
cf4a9129
LC
5578* Invoking guix system:: Instantiating a system configuration.
5579* Defining Services:: Adding new service definitions.
5580@end menu
91ef73d4 5581
cf4a9129
LC
5582@node Using the Configuration System
5583@subsection Using the Configuration System
64d76fa6 5584
cf4a9129
LC
5585The operating system is configured by providing an
5586@code{operating-system} declaration in a file that can then be passed to
5587the @command{guix system} command (@pxref{Invoking guix system}). A
5588simple setup, with the default system services, the default Linux-Libre
5589kernel, initial RAM disk, and boot loader looks like this:
91ef73d4 5590
cf4a9129
LC
5591@findex operating-system
5592@lisp
dd51caac 5593@include os-config-bare-bones.texi
cf4a9129 5594@end lisp
401c53c4 5595
cf4a9129
LC
5596This example should be self-describing. Some of the fields defined
5597above, such as @code{host-name} and @code{bootloader}, are mandatory.
5598Others, such as @code{packages} and @code{services}, can be omitted, in
5599which case they get a default value.
e7f34eb0 5600
cf4a9129
LC
5601@vindex %base-packages
5602The @code{packages} field lists
5603packages that will be globally visible on the system, for all user
5604accounts---i.e., in every user's @code{PATH} environment variable---in
5605addition to the per-user profiles (@pxref{Invoking guix package}). The
5606@var{%base-packages} variable provides all the tools one would expect
5607for basic user and administrator tasks---including the GNU Core
5608Utilities, the GNU Networking Utilities, the GNU Zile lightweight text
5609editor, @command{find}, @command{grep}, etc. The example above adds
2e437e29 5610tcpdump to those, taken from the @code{(gnu packages admin)} module
cf4a9129 5611(@pxref{Package Modules}).
e7f34eb0 5612
f6c9fb1b
LC
5613@findex specification->package
5614Referring to packages by variable name, like @var{tcpdump} above, has
5615the advantage of being unambiguous; it also allows typos and such to be
5616diagnosed right away as ``unbound variables''. The downside is that one
5617needs to know which module defines which package, and to augment the
5618@code{use-package-modules} line accordingly. To avoid that, one can use
5619the @code{specification->package} procedure of the @code{(gnu packages)}
5620module, which returns the best package for a given name or name and
5621version:
5622
5623@lisp
5624(use-modules (gnu packages))
5625
5626(operating-system
5627 ;; ...
5628 (packages (append (map specification->package
5629 '("tcpdump" "htop" "gnupg-2.0"))
5630 %base-packages)))
5631@end lisp
5632
cf4a9129
LC
5633@vindex %base-services
5634The @code{services} field lists @dfn{system services} to be made
5635available when the system starts (@pxref{Services}).
5636The @code{operating-system} declaration above specifies that, in
5637addition to the basic services, we want the @command{lshd} secure shell
cd6f6c22
LC
5638daemon listening on port 2222 (@pxref{Networking Services,
5639@code{lsh-service}}). Under the hood,
cf4a9129
LC
5640@code{lsh-service} arranges so that @code{lshd} is started with the
5641right command-line options, possibly with supporting configuration files
cd6f6c22
LC
5642generated as needed (@pxref{Defining Services}).
5643
5644@cindex customization, of services
5645@findex modify-services
5646Occasionally, instead of using the base services as is, you will want to
5647customize them. For instance, to change the configuration of
5648@code{guix-daemon} and Mingetty (the console log-in), you may write the
5649following instead of @var{%base-services}:
5650
5651@lisp
5652(modify-services %base-services
5653 (guix-service-type config =>
5654 (guix-configuration
5655 (inherit config)
5656 (use-substitutes? #f)
5657 (extra-options '("--gc-keep-outputs"))))
5658 (mingetty-service-type config =>
5659 (mingetty-configuration
5660 (inherit config)
5661 (motd (plain-file "motd" "Hi there!")))))
5662@end lisp
5663
5664@noindent
5665The effect here is to change the options passed to @command{guix-daemon}
5666when it is started, as well as the ``message of the day'' that appears
5667when logging in at the console. @xref{Service Reference,
5668@code{modify-services}}, for more on that.
a1ba8475 5669
dd51caac 5670The configuration for a typical ``desktop'' usage, with the X11 display
cd6f6c22 5671server, a desktop environment, network management, power management, and
dd51caac
LC
5672more, would look like this:
5673
5674@lisp
5675@include os-config-desktop.texi
5676@end lisp
5677
5678@xref{Desktop Services}, for the exact list of services provided by
efb5e833
LC
5679@var{%desktop-services}. @xref{X.509 Certificates}, for background
5680information about the @code{nss-certs} package that is used here.
cd6f6c22
LC
5681@xref{operating-system Reference}, for details about all the available
5682@code{operating-system} fields.
dd51caac 5683
cf4a9129
LC
5684Assuming the above snippet is stored in the @file{my-system-config.scm}
5685file, the @command{guix system reconfigure my-system-config.scm} command
5686instantiates that configuration, and makes it the default GRUB boot
65797bff
LC
5687entry (@pxref{Invoking guix system}).
5688
5689The normal way to change the system's configuration is by updating this
5690file and re-running @command{guix system reconfigure}. One should never
5691have to touch files in @command{/etc} or to run commands that modify the
5692system state such as @command{useradd} or @command{grub-install}. In
5693fact, you must avoid that since that would not only void your warranty
5694but also prevent you from rolling back to previous versions of your
5695system, should you ever need to.
5696
5697@cindex roll-back, of the operating system
5698Speaking of roll-back, each time you run @command{guix system
5699reconfigure}, a new @dfn{generation} of the system is created---without
5700modifying or deleting previous generations. Old system generations get
5701an entry in the GRUB boot menu, allowing you to boot them in case
5702something went wrong with the latest generation. Reassuring, no? The
5703@command{guix system list-generations} command lists the system
5704generations available on disk.
b81e1947 5705
cf4a9129
LC
5706At the Scheme level, the bulk of an @code{operating-system} declaration
5707is instantiated with the following monadic procedure (@pxref{The Store
5708Monad}):
b81e1947 5709
cf4a9129
LC
5710@deffn {Monadic Procedure} operating-system-derivation os
5711Return a derivation that builds @var{os}, an @code{operating-system}
5712object (@pxref{Derivations}).
b81e1947 5713
cf4a9129
LC
5714The output of the derivation is a single directory that refers to all
5715the packages, configuration files, and other supporting files needed to
5716instantiate @var{os}.
5717@end deffn
b81e1947 5718
7313a52e
LC
5719@node operating-system Reference
5720@subsection @code{operating-system} Reference
5721
5722This section summarizes all the options available in
5723@code{operating-system} declarations (@pxref{Using the Configuration
5724System}).
5725
5726@deftp {Data Type} operating-system
5727This is the data type representing an operating system configuration.
5728By that, we mean all the global system configuration, not per-user
5729configuration (@pxref{Using the Configuration System}).
5730
5731@table @asis
5732@item @code{kernel} (default: @var{linux-libre})
fbb25e56 5733The package object of the operating system kernel to use@footnote{Currently
7313a52e
LC
5734only the Linux-libre kernel is supported. In the future, it will be
5735possible to use the GNU@tie{}Hurd.}.
5736
ee2a6304
LC
5737@item @code{kernel-arguments} (default: @code{'()})
5738List of strings or gexps representing additional arguments to pass on
5739the kernel's command-line---e.g., @code{("console=ttyS0")}.
5740
7313a52e 5741@item @code{bootloader}
88faf933 5742The system bootloader configuration object. @xref{GRUB Configuration}.
7313a52e
LC
5743
5744@item @code{initrd} (default: @code{base-initrd})
5745A two-argument monadic procedure that returns an initial RAM disk for
5746the Linux kernel. @xref{Initial RAM Disk}.
5747
f34c56be
LC
5748@item @code{firmware} (default: @var{%base-firmware})
5749@cindex firmware
5750List of firmware packages loadable by the operating system kernel.
5751
5752The default includes firmware needed for Atheros-based WiFi devices
5753(Linux-libre module @code{ath9k}.)
5754
7313a52e
LC
5755@item @code{host-name}
5756The host name.
5757
5758@item @code{hosts-file}
5759@cindex hosts file
24e02c28 5760A file-like object (@pxref{G-Expressions, file-like objects}) for use as
7313a52e 5761@file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library
24e02c28 5762Reference Manual}). The default is a file with entries for
7313a52e
LC
5763@code{localhost} and @var{host-name}.
5764
5765@item @code{mapped-devices} (default: @code{'()})
5766A list of mapped devices. @xref{Mapped Devices}.
5767
5768@item @code{file-systems}
5769A list of file systems. @xref{File Systems}.
5770
5771@item @code{swap-devices} (default: @code{'()})
5772@cindex swap devices
5773A list of strings identifying devices to be used for ``swap space''
5774(@pxref{Memory Concepts,,, libc, The GNU C Library Reference Manual}).
5775For example, @code{'("/dev/sda3")}.
5776
bf87f38a 5777@item @code{users} (default: @code{%base-user-accounts})
7313a52e
LC
5778@itemx @code{groups} (default: @var{%base-groups})
5779List of user accounts and groups. @xref{User Accounts}.
5780
5781@item @code{skeletons} (default: @code{(default-skeletons)})
5782A monadic list of pairs of target file name and files. These are the
5783files that will be used as skeletons as new accounts are created.
5784
5785For instance, a valid value may look like this:
5786
5787@example
5788(mlet %store-monad ((bashrc (text-file "bashrc" "\
5789 export PATH=$HOME/.guix-profile/bin")))
5790 (return `((".bashrc" ,bashrc))))
5791@end example
5792
5793@item @code{issue} (default: @var{%default-issue})
5794A string denoting the contents of the @file{/etc/issue} file, which is
5795what displayed when users log in on a text console.
5796
5797@item @code{packages} (default: @var{%base-packages})
5798The set of packages installed in the global profile, which is accessible
5799at @file{/run/current-system/profile}.
5800
5801The default set includes core utilities, but it is good practice to
5802install non-core utilities in user profiles (@pxref{Invoking guix
5803package}).
5804
5805@item @code{timezone}
5806A timezone identifying string---e.g., @code{"Europe/Paris"}.
5807
598e19dc
LC
5808@item @code{locale} (default: @code{"en_US.utf8"})
5809The name of the default locale (@pxref{Locale Names,,, libc, The GNU C
5810Library Reference Manual}). @xref{Locales}, for more information.
5811
5812@item @code{locale-definitions} (default: @var{%default-locale-definitions})
5813The list of locale definitions to be compiled and that may be used at
5814run time. @xref{Locales}.
7313a52e 5815
34760ae7
LC
5816@item @code{locale-libcs} (default: @code{(list @var{glibc})})
5817The list of GNU@tie{}libc packages whose locale data and tools are used
5818to build the locale definitions. @xref{Locales}, for compatibility
5819considerations that justify this option.
5820
996ed739
LC
5821@item @code{name-service-switch} (default: @var{%default-nss})
5822Configuration of libc's name service switch (NSS)---a
5823@code{<name-service-switch>} object. @xref{Name Service Switch}, for
5824details.
5825
7313a52e 5826@item @code{services} (default: @var{%base-services})
28d939af 5827A list of service objects denoting system services. @xref{Services}.
7313a52e
LC
5828
5829@item @code{pam-services} (default: @code{(base-pam-services)})
5830@cindex PAM
5831@cindex pluggable authentication modules
5832Linux @dfn{pluggable authentication module} (PAM) services.
5833@c FIXME: Add xref to PAM services section.
5834
5835@item @code{setuid-programs} (default: @var{%setuid-programs})
5836List of string-valued G-expressions denoting setuid programs.
5837@xref{Setuid Programs}.
5838
f5a9ffa0
AK
5839@item @code{sudoers-file} (default: @var{%sudoers-specification})
5840@cindex sudoers file
84765839
LC
5841The contents of the @file{/etc/sudoers} file as a file-like object
5842(@pxref{G-Expressions, @code{local-file} and @code{plain-file}}).
7313a52e
LC
5843
5844This file specifies which users can use the @command{sudo} command, what
5845they are allowed to do, and what privileges they may gain. The default
5846is that only @code{root} and members of the @code{wheel} group may use
5847@code{sudo}.
5848
5849@end table
5850@end deftp
5851
cf4a9129
LC
5852@node File Systems
5853@subsection File Systems
b81e1947 5854
cf4a9129
LC
5855The list of file systems to be mounted is specified in the
5856@code{file-systems} field of the operating system's declaration
5857(@pxref{Using the Configuration System}). Each file system is declared
5858using the @code{file-system} form, like this:
b81e1947
LC
5859
5860@example
cf4a9129
LC
5861(file-system
5862 (mount-point "/home")
5863 (device "/dev/sda3")
5864 (type "ext4"))
b81e1947
LC
5865@end example
5866
cf4a9129
LC
5867As usual, some of the fields are mandatory---those shown in the example
5868above---while others can be omitted. These are described below.
b81e1947 5869
cf4a9129
LC
5870@deftp {Data Type} file-system
5871Objects of this type represent file systems to be mounted. They
5872contain the following members:
5ff3c4b8 5873
cf4a9129
LC
5874@table @asis
5875@item @code{type}
5876This is a string specifying the type of the file system---e.g.,
5877@code{"ext4"}.
5ff3c4b8 5878
cf4a9129
LC
5879@item @code{mount-point}
5880This designates the place where the file system is to be mounted.
b81e1947 5881
cf4a9129
LC
5882@item @code{device}
5883This names the ``source'' of the file system. By default it is the name
5884of a node under @file{/dev}, but its meaning depends on the @code{title}
5885field described below.
401c53c4 5886
cf4a9129
LC
5887@item @code{title} (default: @code{'device})
5888This is a symbol that specifies how the @code{device} field is to be
5889interpreted.
401c53c4 5890
cf4a9129
LC
5891When it is the symbol @code{device}, then the @code{device} field is
5892interpreted as a file name; when it is @code{label}, then @code{device}
5893is interpreted as a partition label name; when it is @code{uuid},
5894@code{device} is interpreted as a partition unique identifier (UUID).
da7cabd4 5895
661a1d79
LC
5896UUIDs may be converted from their string representation (as shown by the
5897@command{tune2fs -l} command) using the @code{uuid} form, like this:
5898
5899@example
5900(file-system
5901 (mount-point "/home")
5902 (type "ext4")
5903 (title 'uuid)
5904 (device (uuid "4dab5feb-d176-45de-b287-9b0a6e4c01cb")))
5905@end example
5906
cf4a9129 5907The @code{label} and @code{uuid} options offer a way to refer to disk
661a1d79
LC
5908partitions without having to hard-code their actual device
5909name@footnote{Note that, while it is tempting to use
5910@file{/dev/disk/by-uuid} and similar device names to achieve the same
5911result, this is not recommended: These special device nodes are created
5912by the udev daemon and may be unavailable at the time the device is
5913mounted.}.
da7cabd4 5914
5f86a66e
LC
5915However, when a file system's source is a mapped device (@pxref{Mapped
5916Devices}), its @code{device} field @emph{must} refer to the mapped
5917device name---e.g., @file{/dev/mapper/root-partition}---and consequently
5918@code{title} must be set to @code{'device}. This is required so that
5919the system knows that mounting the file system depends on having the
5920corresponding device mapping established.
5921
cf4a9129
LC
5922@item @code{flags} (default: @code{'()})
5923This is a list of symbols denoting mount flags. Recognized flags
2c071ce9
LC
5924include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow
5925access to special files), @code{no-suid} (ignore setuid and setgid
5926bits), and @code{no-exec} (disallow program execution.)
da7cabd4 5927
cf4a9129
LC
5928@item @code{options} (default: @code{#f})
5929This is either @code{#f}, or a string denoting mount options.
da7cabd4 5930
cf4a9129
LC
5931@item @code{needed-for-boot?} (default: @code{#f})
5932This Boolean value indicates whether the file system is needed when
5933booting. If that is true, then the file system is mounted when the
5934initial RAM disk (initrd) is loaded. This is always the case, for
5935instance, for the root file system.
da7cabd4 5936
cf4a9129
LC
5937@item @code{check?} (default: @code{#t})
5938This Boolean indicates whether the file system needs to be checked for
5939errors before being mounted.
f9cc8971 5940
4e469051
LC
5941@item @code{create-mount-point?} (default: @code{#f})
5942When true, the mount point is created if it does not exist yet.
5943
e51710d1
LC
5944@item @code{dependencies} (default: @code{'()})
5945This is a list of @code{<file-system>} objects representing file systems
5946that must be mounted before (and unmounted after) this one.
5947
5948As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is
5949a dependency of @file{/sys/fs/cgroup/cpu} and
5950@file{/sys/fs/cgroup/memory}.
5951
cf4a9129
LC
5952@end table
5953@end deftp
da7cabd4 5954
a69576ea
LC
5955The @code{(gnu system file-systems)} exports the following useful
5956variables.
5957
5958@defvr {Scheme Variable} %base-file-systems
5959These are essential file systems that are required on normal systems,
cc0e575a 5960such as @var{%pseudo-terminal-file-system} and @var{%immutable-store} (see
3392ce5d
LC
5961below.) Operating system declarations should always contain at least
5962these.
a69576ea
LC
5963@end defvr
5964
7f239fd3
LC
5965@defvr {Scheme Variable} %pseudo-terminal-file-system
5966This is the file system to be mounted as @file{/dev/pts}. It supports
5967@dfn{pseudo-terminals} created @i{via} @code{openpty} and similar
5968functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference
5969Manual}). Pseudo-terminals are used by terminal emulators such as
5970@command{xterm}.
5971@end defvr
5972
db17ae5c
LC
5973@defvr {Scheme Variable} %shared-memory-file-system
5974This file system is mounted as @file{/dev/shm} and is used to support
5975memory sharing across processes (@pxref{Memory-mapped I/O,
5976@code{shm_open},, libc, The GNU C Library Reference Manual}).
5977@end defvr
5978
3392ce5d
LC
5979@defvr {Scheme Variable} %immutable-store
5980This file system performs a read-only ``bind mount'' of
5981@file{/gnu/store}, making it read-only for all the users including
5982@code{root}. This prevents against accidental modification by software
5983running as @code{root} or by system administrators.
5984
5985The daemon itself is still able to write to the store: it remounts it
5986read-write in its own ``name space.''
5987@end defvr
5988
a69576ea
LC
5989@defvr {Scheme Variable} %binary-format-file-system
5990The @code{binfmt_misc} file system, which allows handling of arbitrary
5991executable file types to be delegated to user space. This requires the
5992@code{binfmt.ko} kernel module to be loaded.
5993@end defvr
5994
5995@defvr {Scheme Variable} %fuse-control-file-system
5996The @code{fusectl} file system, which allows unprivileged users to mount
5997and unmount user-space FUSE file systems. This requires the
5998@code{fuse.ko} kernel module to be loaded.
5999@end defvr
6000
510f9d86
LC
6001@node Mapped Devices
6002@subsection Mapped Devices
6003
6004@cindex device mapping
6005@cindex mapped devices
6006The Linux kernel has a notion of @dfn{device mapping}: a block device,
6007such as a hard disk partition, can be @dfn{mapped} into another device,
6008with additional processing over the data that flows through
6009it@footnote{Note that the GNU@tie{}Hurd makes no difference between the
6010concept of a ``mapped device'' and that of a file system: both boil down
6011to @emph{translating} input/output operations made on a file to
6012operations on its backing store. Thus, the Hurd implements mapped
6013devices, like file systems, using the generic @dfn{translator} mechanism
6014(@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A
6015typical example is encryption device mapping: all writes to the mapped
6016device are encrypted, and all reads are deciphered, transparently.
6017
6018Mapped devices are declared using the @code{mapped-device} form:
6019
6020@example
6021(mapped-device
6022 (source "/dev/sda3")
6023 (target "home")
6024 (type luks-device-mapping))
6025@end example
6026
6027@noindent
6028@cindex disk encryption
6029@cindex LUKS
6030This example specifies a mapping from @file{/dev/sda3} to
6031@file{/dev/mapper/home} using LUKS---the
6032@url{http://code.google.com/p/cryptsetup,Linux Unified Key Setup}, a
6033standard mechanism for disk encryption. The @file{/dev/mapper/home}
6034device can then be used as the @code{device} of a @code{file-system}
6035declaration (@pxref{File Systems}). The @code{mapped-device} form is
6036detailed below.
6037
6038@deftp {Data Type} mapped-device
6039Objects of this type represent device mappings that will be made when
6040the system boots up.
6041
9cb426b8
LC
6042@table @code
6043@item source
510f9d86
LC
6044This string specifies the name of the block device to be mapped, such as
6045@code{"/dev/sda3"}.
6046
9cb426b8 6047@item target
510f9d86
LC
6048This string specifies the name of the mapping to be established. For
6049example, specifying @code{"my-partition"} will lead to the creation of
6050the @code{"/dev/mapper/my-partition"} device.
6051
9cb426b8 6052@item type
510f9d86
LC
6053This must be a @code{mapped-device-kind} object, which specifies how
6054@var{source} is mapped to @var{target}.
6055@end table
6056@end deftp
6057
6058@defvr {Scheme Variable} luks-device-mapping
6059This defines LUKS block device encryption using the @command{cryptsetup}
6060command, from the same-named package. This relies on the
6061@code{dm-crypt} Linux kernel module.
6062@end defvr
6063
cf4a9129
LC
6064@node User Accounts
6065@subsection User Accounts
ee85f3db 6066
9bea87a5
LC
6067User accounts and groups are entirely managed through the
6068@code{operating-system} declaration. They are specified with the
6069@code{user-account} and @code{user-group} forms:
ee85f3db 6070
cf4a9129
LC
6071@example
6072(user-account
6073 (name "alice")
6074 (group "users")
24e752c0
LC
6075 (supplementary-groups '("wheel" ;allow use of sudo, etc.
6076 "audio" ;sound card
6077 "video" ;video devices such as webcams
6078 "cdrom")) ;the good ol' CD-ROM
cf4a9129
LC
6079 (comment "Bob's sister")
6080 (home-directory "/home/alice"))
6081@end example
25083588 6082
9bea87a5
LC
6083When booting or upon completion of @command{guix system reconfigure},
6084the system ensures that only the user accounts and groups specified in
6085the @code{operating-system} declaration exist, and with the specified
6086properties. Thus, account or group creations or modifications made by
6087directly invoking commands such as @command{useradd} are lost upon
6088reconfiguration or reboot. This ensures that the system remains exactly
6089as declared.
6090
cf4a9129
LC
6091@deftp {Data Type} user-account
6092Objects of this type represent user accounts. The following members may
6093be specified:
ee85f3db 6094
cf4a9129
LC
6095@table @asis
6096@item @code{name}
6097The name of the user account.
ee85f3db 6098
cf4a9129
LC
6099@item @code{group}
6100This is the name (a string) or identifier (a number) of the user group
6101this account belongs to.
ee85f3db 6102
cf4a9129
LC
6103@item @code{supplementary-groups} (default: @code{'()})
6104Optionally, this can be defined as a list of group names that this
6105account belongs to.
ee85f3db 6106
cf4a9129
LC
6107@item @code{uid} (default: @code{#f})
6108This is the user ID for this account (a number), or @code{#f}. In the
6109latter case, a number is automatically chosen by the system when the
6110account is created.
ee85f3db 6111
cf4a9129
LC
6112@item @code{comment} (default: @code{""})
6113A comment about the account, such as the account's owner full name.
c8c871d1 6114
cf4a9129
LC
6115@item @code{home-directory}
6116This is the name of the home directory for the account.
ee85f3db 6117
cf4a9129
LC
6118@item @code{shell} (default: Bash)
6119This is a G-expression denoting the file name of a program to be used as
6120the shell (@pxref{G-Expressions}).
ee85f3db 6121
cf4a9129
LC
6122@item @code{system?} (default: @code{#f})
6123This Boolean value indicates whether the account is a ``system''
6124account. System accounts are sometimes treated specially; for instance,
6125graphical login managers do not list them.
ee85f3db 6126
1bd4e6db 6127@anchor{user-account-password}
cf4a9129 6128@item @code{password} (default: @code{#f})
eb59595c
LC
6129You would normally leave this field to @code{#f}, initialize user
6130passwords as @code{root} with the @command{passwd} command, and then let
9bea87a5
LC
6131users change it with @command{passwd}. Passwords set with
6132@command{passwd} are of course preserved across reboot and
6133reconfiguration.
eb59595c
LC
6134
6135If you @emph{do} want to have a preset password for an account, then
6136this field must contain the encrypted password, as a string.
5d1f1177
LC
6137@xref{crypt,,, libc, The GNU C Library Reference Manual}, for more information
6138on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference
eb59595c 6139Manual}, for information on Guile's @code{crypt} procedure.
c8c871d1 6140
cf4a9129
LC
6141@end table
6142@end deftp
ee85f3db 6143
cf4a9129 6144User group declarations are even simpler:
ee85f3db 6145
cf4a9129
LC
6146@example
6147(user-group (name "students"))
6148@end example
ee85f3db 6149
cf4a9129
LC
6150@deftp {Data Type} user-group
6151This type is for, well, user groups. There are just a few fields:
af8a56b8 6152
cf4a9129
LC
6153@table @asis
6154@item @code{name}
6155The group's name.
ee85f3db 6156
cf4a9129
LC
6157@item @code{id} (default: @code{#f})
6158The group identifier (a number). If @code{#f}, a new number is
6159automatically allocated when the group is created.
ee85f3db 6160
c8fa3426
LC
6161@item @code{system?} (default: @code{#f})
6162This Boolean value indicates whether the group is a ``system'' group.
6163System groups have low numerical IDs.
6164
cf4a9129
LC
6165@item @code{password} (default: @code{#f})
6166What, user groups can have a password? Well, apparently yes. Unless
6167@code{#f}, this field specifies the group's password.
ee85f3db 6168
cf4a9129
LC
6169@end table
6170@end deftp
401c53c4 6171
cf4a9129
LC
6172For convenience, a variable lists all the basic user groups one may
6173expect:
401c53c4 6174
cf4a9129
LC
6175@defvr {Scheme Variable} %base-groups
6176This is the list of basic user groups that users and/or packages expect
6177to be present on the system. This includes groups such as ``root'',
6178``wheel'', and ``users'', as well as groups used to control access to
6179specific devices such as ``audio'', ``disk'', and ``cdrom''.
6180@end defvr
401c53c4 6181
bf87f38a
LC
6182@defvr {Scheme Variable} %base-user-accounts
6183This is the list of basic system accounts that programs may expect to
6184find on a GNU/Linux system, such as the ``nobody'' account.
6185
6186Note that the ``root'' account is not included here. It is a
6187special-case and is automatically added whether or not it is specified.
6188@end defvr
6189
598e19dc
LC
6190@node Locales
6191@subsection Locales
6192
6193@cindex locale
6194A @dfn{locale} defines cultural conventions for a particular language
6195and region of the world (@pxref{Locales,,, libc, The GNU C Library
6196Reference Manual}). Each locale has a name that typically has the form
b2636518 6197@code{@var{language}_@var{territory}.@var{codeset}}---e.g.,
598e19dc
LC
6198@code{fr_LU.utf8} designates the locale for the French language, with
6199cultural conventions from Luxembourg, and using the UTF-8 encoding.
6200
6201@cindex locale definition
6202Usually, you will want to specify the default locale for the machine
6203using the @code{locale} field of the @code{operating-system} declaration
6204(@pxref{operating-system Reference, @code{locale}}).
6205
6206That locale must be among the @dfn{locale definitions} that are known to
6207the system---and these are specified in the @code{locale-definitions}
6208slot of @code{operating-system}. The default value includes locale
6209definition for some widely used locales, but not for all the available
6210locales, in order to save space.
6211
6212If the locale specified in the @code{locale} field is not among the
6213definitions listed in @code{locale-definitions}, @command{guix system}
6214raises an error. In that case, you should add the locale definition to
6215the @code{locale-definitions} field. For instance, to add the North
6216Frisian locale for Germany, the value of that field may be:
6217
6218@example
6219(cons (locale-definition
6220 (name "fy_DE.utf8") (source "fy_DE"))
6221 %default-locale-definitions)
6222@end example
6223
6224Likewise, to save space, one might want @code{locale-definitions} to
6225list only the locales that are actually used, as in:
6226
6227@example
6228(list (locale-definition
6229 (name "ja_JP.eucjp") (source "ja_JP")
6230 (charset "EUC-JP")))
6231@end example
6232
5c3c1427
LC
6233@vindex LOCPATH
6234The compiled locale definitions are available at
46bd6edd
LC
6235@file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc
6236version, which is the default location where the GNU@tie{}libc provided
6237by Guix looks for locale data. This can be overridden using the
6238@code{LOCPATH} environment variable (@pxref{locales-and-locpath,
5c3c1427
LC
6239@code{LOCPATH} and locale packages}).
6240
598e19dc
LC
6241The @code{locale-definition} form is provided by the @code{(gnu system
6242locale)} module. Details are given below.
6243
6244@deftp {Data Type} locale-definition
6245This is the data type of a locale definition.
6246
6247@table @asis
6248
6249@item @code{name}
6250The name of the locale. @xref{Locale Names,,, libc, The GNU C Library
6251Reference Manual}, for more information on locale names.
6252
6253@item @code{source}
6254The name of the source for that locale. This is typically the
6255@code{@var{language}_@var{territory}} part of the locale name.
6256
6257@item @code{charset} (default: @code{"UTF-8"})
6258The ``character set'' or ``code set'' for that locale,
6259@uref{http://www.iana.org/assignments/character-sets, as defined by
6260IANA}.
6261
6262@end table
6263@end deftp
6264
6265@defvr {Scheme Variable} %default-locale-definitions
b2636518
LC
6266An arbitrary list of commonly used UTF-8 locales, used as the default
6267value of the @code{locale-definitions} field of @code{operating-system}
598e19dc 6268declarations.
b2636518
LC
6269
6270@cindex locale name
6271@cindex normalized codeset in locale names
6272These locale definitions use the @dfn{normalized codeset} for the part
6273that follows the dot in the name (@pxref{Using gettextized software,
6274normalized codeset,, libc, The GNU C Library Reference Manual}). So for
6275instance it has @code{uk_UA.utf8} but @emph{not}, say,
6276@code{uk_UA.UTF-8}.
598e19dc 6277@end defvr
401c53c4 6278
34760ae7
LC
6279@subsubsection Locale Data Compatibility Considerations
6280
6281@cindex incompatibility, of locale data
6282@code{operating-system} declarations provide a @code{locale-libcs} field
6283to specify the GNU@tie{}libc packages that are used to compile locale
6284declarations (@pxref{operating-system Reference}). ``Why would I
6285care?'', you may ask. Well, it turns out that the binary format of
6286locale data is occasionally incompatible from one libc version to
6287another.
6288
6289@c See <https://sourceware.org/ml/libc-alpha/2015-09/msg00575.html>
6290@c and <https://lists.gnu.org/archive/html/guix-devel/2015-08/msg00737.html>.
6291For instance, a program linked against libc version 2.21 is unable to
6292read locale data produced with libc 2.22; worse, that program
6293@emph{aborts} instead of simply ignoring the incompatible locale
6294data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip
6295the incompatible locale data, which is already an improvement.}.
6296Similarly, a program linked against libc 2.22 can read most, but not
6297all, the locale data from libc 2.21 (specifically, @code{LC_COLLATE}
6298data is incompatible); thus calls to @code{setlocale} may fail, but
6299programs will not abort.
6300
6301The ``problem'' in GuixSD is that users have a lot of freedom: They can
6302choose whether and when to upgrade software in their profiles, and might
6303be using a libc version different from the one the system administrator
6304used to build the system-wide locale data.
6305
6306Fortunately, unprivileged users can also install their own locale data
6307and define @var{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath,
6308@code{GUIX_LOCPATH} and locale packages}).
6309
6310Still, it is best if the system-wide locale data at
6311@file{/run/current-system/locale} is built for all the libc versions
6312actually in use on the system, so that all the programs can access
6313it---this is especially crucial on a multi-user system. To do that, the
6314administrator can specify several libc packages in the
6315@code{locale-libcs} field of @code{operating-system}:
6316
6317@example
6318(use-package-modules base)
6319
6320(operating-system
6321 ;; @dots{}
6322 (locale-libcs (list glibc-2.21 (canonical-package glibc))))
6323@end example
6324
6325This example would lead to a system containing locale definitions for
6326both libc 2.21 and the current version of libc in
6327@file{/run/current-system/locale}.
6328
6329
cf4a9129
LC
6330@node Services
6331@subsection Services
401c53c4 6332
cf4a9129
LC
6333@cindex system services
6334An important part of preparing an @code{operating-system} declaration is
6335listing @dfn{system services} and their configuration (@pxref{Using the
6336Configuration System}). System services are typically daemons launched
6337when the system boots, or other actions needed at that time---e.g.,
d8b94dbd
LC
6338configuring network access.
6339
6340Services are managed by GNU@tie{}dmd (@pxref{Introduction,,, dmd, GNU
6341dmd Manual}). On a running system, the @command{deco} command allows
6342you to list the available services, show their status, start and stop
6343them, or do other specific operations (@pxref{Jump Start,,, dmd, GNU dmd
6344Manual}). For example:
6345
6346@example
6347# deco status dmd
6348@end example
6349
6350The above command, run as @code{root}, lists the currently defined
6351services. The @command{deco doc} command shows a synopsis of the given
6352service:
6353
6354@example
6355# deco doc nscd
6356Run libc's name service cache daemon (nscd).
6357@end example
6358
6359The @command{start}, @command{stop}, and @command{restart} sub-commands
6360have the effect you would expect. For instance, the commands below stop
6361the nscd service and restart the Xorg display server:
6362
6363@example
6364# deco stop nscd
6365Service nscd has been stopped.
6366# deco restart xorg-server
6367Service xorg-server has been stopped.
6368Service xorg-server has been started.
6369@end example
401c53c4 6370
cf4a9129 6371The following sections document the available services, starting with
d8b94dbd
LC
6372the core services, that may be used in an @code{operating-system}
6373declaration.
401c53c4 6374
cf4a9129
LC
6375@menu
6376* Base Services:: Essential system services.
6377* Networking Services:: Network setup, SSH daemon, etc.
6378* X Window:: Graphical display.
fe1a39d3 6379* Desktop Services:: D-Bus and desktop services.
105369a4 6380* Database Services:: SQL databases.
d8c18af8 6381* Mail Services:: IMAP, POP3, SMTP, and all that.
58724c48 6382* Web Services:: Web servers.
aa4ed923 6383* Various Services:: Other services.
cf4a9129 6384@end menu
401c53c4 6385
cf4a9129
LC
6386@node Base Services
6387@subsubsection Base Services
a1ba8475 6388
cf4a9129
LC
6389The @code{(gnu services base)} module provides definitions for the basic
6390services that one expects from the system. The services exported by
6391this module are listed below.
401c53c4 6392
cf4a9129 6393@defvr {Scheme Variable} %base-services
31771497
LC
6394This variable contains a list of basic services (@pxref{Service Types
6395and Services}, for more information on service objects) one would
cf4a9129
LC
6396expect from the system: a login service (mingetty) on each tty, syslogd,
6397libc's name service cache daemon (nscd), the udev device manager, and
6398more.
401c53c4 6399
cf4a9129
LC
6400This is the default value of the @code{services} field of
6401@code{operating-system} declarations. Usually, when customizing a
6402system, you will want to append services to @var{%base-services}, like
6403this:
401c53c4 6404
cf4a9129 6405@example
fa1e31b8 6406(cons* (avahi-service) (lsh-service) %base-services)
cf4a9129
LC
6407@end example
6408@end defvr
401c53c4 6409
be1c2c54 6410@deffn {Scheme Procedure} host-name-service @var{name}
cf4a9129
LC
6411Return a service that sets the host name to @var{name}.
6412@end deffn
401c53c4 6413
66e4f01c
LC
6414@deffn {Scheme Procedure} mingetty-service @var{config}
6415Return a service to run mingetty according to @var{config}, a
6416@code{<mingetty-configuration>} object, which specifies the tty to run, among
6417other things.
cf4a9129 6418@end deffn
401c53c4 6419
66e4f01c
LC
6420@deftp {Data Type} mingetty-configuration
6421This is the data type representing the configuration of Mingetty, which
6422implements console log-in.
6423
6424@table @asis
6425
6426@item @code{tty}
6427The name of the console this Mingetty runs on---e.g., @code{"tty1"}.
6428
6429@item @code{motd}
6430A file-like object containing the ``message of the day''.
6431
6432@item @code{auto-login} (default: @code{#f})
6433When true, this field must be a string denoting the user name under
6434which the the system automatically logs in. When it is @code{#f}, a
6435user name and password must be entered to log in.
6436
6437@item @code{login-program} (default: @code{#f})
6438This must be either @code{#f}, in which case the default log-in program
6439is used (@command{login} from the Shadow tool suite), or a gexp denoting
6440the name of the log-in program.
6441
6442@item @code{login-pause?} (default: @code{#f})
6443When set to @code{#t} in conjunction with @var{auto-login}, the user
6444will have to press a key before the log-in shell is launched.
6445
6446@item @code{mingetty} (default: @var{mingetty})
6447The Mingetty package to use.
6448
6449@end table
6450@end deftp
6451
6454b333
LC
6452@cindex name service cache daemon
6453@cindex nscd
be1c2c54 6454@deffn {Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @
4aee6e60 6455 [#:name-services '()]
b893f1ae
LC
6456Return a service that runs libc's name service cache daemon (nscd) with the
6457given @var{config}---an @code{<nscd-configuration>} object. @xref{Name
6458Service Switch}, for an example.
cf4a9129 6459@end deffn
401c53c4 6460
6454b333
LC
6461@defvr {Scheme Variable} %nscd-default-configuration
6462This is the default @code{<nscd-configuration>} value (see below) used
6463by @code{nscd-service}. This uses the caches defined by
6464@var{%nscd-default-caches}; see below.
6465@end defvr
6466
6467@deftp {Data Type} nscd-configuration
6468This is the type representing the name service cache daemon (nscd)
6469configuration.
6470
6471@table @asis
6472
b893f1ae
LC
6473@item @code{name-services} (default: @code{'()})
6474List of packages denoting @dfn{name services} that must be visible to
6475the nscd---e.g., @code{(list @var{nss-mdns})}.
6476
6477@item @code{glibc} (default: @var{glibc})
6478Package object denoting the GNU C Library providing the @command{nscd}
6479command.
6480
6454b333
LC
6481@item @code{log-file} (default: @code{"/var/log/nscd.log"})
6482Name of nscd's log file. This is where debugging output goes when
6483@code{debug-level} is strictly positive.
6484
6485@item @code{debug-level} (default: @code{0})
6486Integer denoting the debugging levels. Higher numbers mean more
6487debugging output is logged.
6488
6489@item @code{caches} (default: @var{%nscd-default-caches})
6490List of @code{<nscd-cache>} objects denoting things to be cached; see
6491below.
6492
6493@end table
6494@end deftp
6495
6496@deftp {Data Type} nscd-cache
6497Data type representing a cache database of nscd and its parameters.
6498
6499@table @asis
6500
6501@item @code{database}
6502This is a symbol representing the name of the database to be cached.
6503Valid values are @code{passwd}, @code{group}, @code{hosts}, and
6504@code{services}, which designate the corresponding NSS database
6505(@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual}).
6506
6507@item @code{positive-time-to-live}
6508@itemx @code{negative-time-to-live} (default: @code{20})
6509A number representing the number of seconds during which a positive or
6510negative lookup result remains in cache.
6511
6512@item @code{check-files?} (default: @code{#t})
6513Whether to check for updates of the files corresponding to
6514@var{database}.
6515
6516For instance, when @var{database} is @code{hosts}, setting this flag
6517instructs nscd to check for updates in @file{/etc/hosts} and to take
6518them into account.
6519
6520@item @code{persistent?} (default: @code{#t})
6521Whether the cache should be stored persistently on disk.
6522
6523@item @code{shared?} (default: @code{#t})
6524Whether the cache should be shared among users.
6525
6526@item @code{max-database-size} (default: 32@tie{}MiB)
6527Maximum size in bytes of the database cache.
6528
6529@c XXX: 'suggested-size' and 'auto-propagate?' seem to be expert
6530@c settings, so leave them out.
6531
6532@end table
6533@end deftp
6534
6535@defvr {Scheme Variable} %nscd-default-caches
6536List of @code{<nscd-cache>} objects used by default by
6537@code{nscd-configuration} (see above.)
6538
6539It enables persistent and aggressive caching of service and host name
6540lookups. The latter provides better host name lookup performance,
6541resilience in the face of unreliable name servers, and also better
6542privacy---often the result of host name lookups is in local cache, so
6543external name servers do not even need to be queried.
6544@end defvr
6545
6546
be1c2c54 6547@deffn {Scheme Procedure} syslog-service [#:config-file #f]
1bb76f75
AK
6548Return a service that runs @code{syslogd}. If configuration file name
6549@var{config-file} is not specified, use some reasonable default
cf4a9129
LC
6550settings.
6551@end deffn
401c53c4 6552
0adfe95a
LC
6553@anchor{guix-configuration-type}
6554@deftp {Data Type} guix-configuration
6555This data type represents the configuration of the Guix build daemon.
6556@xref{Invoking guix-daemon}, for more information.
6557
6558@table @asis
6559@item @code{guix} (default: @var{guix})
6560The Guix package to use.
401c53c4 6561
0adfe95a
LC
6562@item @code{build-group} (default: @code{"guixbuild"})
6563Name of the group for build user accounts.
401c53c4 6564
0adfe95a
LC
6565@item @code{build-accounts} (default: @code{10})
6566Number of build user accounts to create.
401c53c4 6567
0adfe95a
LC
6568@item @code{authorize-key?} (default: @code{#t})
6569Whether to authorize the substitute key for @code{hydra.gnu.org}
6570(@pxref{Substitutes}).
6571
6572@item @code{use-substitutes?} (default: @code{#t})
6573Whether to use substitutes.
6574
b0b9f6e0
LC
6575@item @code{substitute-urls} (default: @var{%default-substitute-urls})
6576The list of URLs where to look for substitutes by default.
6577
0adfe95a
LC
6578@item @code{extra-options} (default: @code{'()})
6579List of extra command-line options for @command{guix-daemon}.
6580
6581@item @code{lsof} (default: @var{lsof})
6582@itemx @code{lsh} (default: @var{lsh})
6583The lsof and lsh packages to use.
6584
6585@end table
6586@end deftp
6587
6588@deffn {Scheme Procedure} guix-service @var{config}
6589Return a service that runs the Guix build daemon according to
6590@var{config}.
cf4a9129 6591@end deffn
a1ba8475 6592
be1c2c54 6593@deffn {Scheme Procedure} udev-service [#:udev udev]
cf4a9129
LC
6594Run @var{udev}, which populates the @file{/dev} directory dynamically.
6595@end deffn
401c53c4 6596
be1c2c54 6597@deffn {Scheme Procedure} console-keymap-service @var{file}
5eca9459
AK
6598Return a service to load console keymap from @var{file} using
6599@command{loadkeys} command.
6600@end deffn
6601
8664cc88
LC
6602@deffn {Scheme Procedure} gpm-service-type [#:gpm @var{gpm}] @
6603 [#:options]
6604Run @var{gpm}, the general-purpose mouse daemon, with the given
6605command-line @var{options}. GPM allows users to use the mouse in the console,
6606notably to select, copy, and paste text. The default value of @var{options}
6607uses the @code{ps2} protocol, which works for both USB and PS/2 mice.
6608
6609This service is not part of @var{%base-services}.
6610@end deffn
6611
1c52181f
LC
6612@anchor{guix-publish-service}
6613@deffn {Scheme Procedure} guix-publish-service [#:guix @var{guix}] @
6614 [#:port 80] [#:host "localhost"]
6615Return a service that runs @command{guix publish} listening on @var{host}
6616and @var{port} (@pxref{Invoking guix publish}).
6617
6618This assumes that @file{/etc/guix} already contains a signing key pair as
6619created by @command{guix archive --generate-key} (@pxref{Invoking guix
6620archive}). If that is not the case, the service will fail to start.
6621@end deffn
6622
a69576ea 6623
cf4a9129
LC
6624@node Networking Services
6625@subsubsection Networking Services
401c53c4 6626
fa1e31b8 6627The @code{(gnu services networking)} module provides services to configure
cf4a9129 6628the network interface.
a1ba8475 6629
a023cca8 6630@cindex DHCP, networking service
be1c2c54 6631@deffn {Scheme Procedure} dhcp-client-service [#:dhcp @var{isc-dhcp}]
a023cca8
LC
6632Return a service that runs @var{dhcp}, a Dynamic Host Configuration
6633Protocol (DHCP) client, on all the non-loopback network interfaces.
6634@end deffn
6635
be1c2c54 6636@deffn {Scheme Procedure} static-networking-service @var{interface} @var{ip} @
cf4a9129
LC
6637 [#:gateway #f] [#:name-services @code{'()}]
6638Return a service that starts @var{interface} with address @var{ip}. If
6639@var{gateway} is true, it must be a string specifying the default network
6640gateway.
6641@end deffn
8b315a6d 6642
b7d0c494 6643@cindex wicd
87f40011 6644@cindex network management
be1c2c54 6645@deffn {Scheme Procedure} wicd-service [#:wicd @var{wicd}]
87f40011
LC
6646Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network
6647management daemon that aims to simplify wired and wireless networking.
6648
6649This service adds the @var{wicd} package to the global profile, providing
6650several commands to interact with the daemon and configure networking:
6651@command{wicd-client}, a graphical user interface, and the @command{wicd-cli}
6652and @command{wicd-curses} user interfaces.
b7d0c494
MW
6653@end deffn
6654
be1c2c54 6655@deffn {Scheme Procedure} ntp-service [#:ntp @var{ntp}] @
63854bcb
LC
6656 [#:name-service @var{%ntp-servers}]
6657Return a service that runs the daemon from @var{ntp}, the
6658@uref{http://www.ntp.org, Network Time Protocol package}. The daemon will
6659keep the system clock synchronized with that of @var{servers}.
6660@end deffn
6661
6662@defvr {Scheme Variable} %ntp-servers
6663List of host names used as the default NTP servers.
6664@end defvr
6665
375c6108
LC
6666@deffn {Scheme Procedure} tor-service [@var{config-file}] [#:tor @var{tor}]
6667Return a service to run the @uref{https://torproject.org, Tor} anonymous
6668networking daemon.
8b315a6d 6669
375c6108 6670The daemon runs as the @code{tor} unprivileged user. It is passed
6331bde7
LC
6671@var{config-file}, a file-like object, with an additional @code{User tor} line
6672and lines for hidden services added via @code{tor-hidden-service}. Run
6673@command{man tor} for information about the configuration file.
6674@end deffn
6675
6676@deffn {Scheme Procedure} tor-hidden-service @var{name} @var{mapping}
6677Define a new Tor @dfn{hidden service} called @var{name} and implementing
6678@var{mapping}. @var{mapping} is a list of port/host tuples, such as:
6679
6680@example
6681 '((22 \"127.0.0.1:22\")
6682 (80 \"127.0.0.1:8080\"))
6683@end example
6684
6685In this example, port 22 of the hidden service is mapped to local port 22, and
6686port 80 is mapped to local port 8080.
6687
6629099a
LC
6688This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where
6689the @file{hostname} file contains the @code{.onion} host name for the hidden
6331bde7
LC
6690service.
6691
6692See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor
6693project's documentation} for more information.
cf4a9129 6694@end deffn
8b315a6d 6695
be1c2c54 6696@deffn {Scheme Procedure} bitlbee-service [#:bitlbee bitlbee] @
4627a464
LC
6697 [#:interface "127.0.0.1"] [#:port 6667] @
6698 [#:extra-settings ""]
6699Return a service that runs @url{http://bitlbee.org,BitlBee}, a daemon that
6700acts as a gateway between IRC and chat networks.
6701
6702The daemon will listen to the interface corresponding to the IP address
6703specified in @var{interface}, on @var{port}. @code{127.0.0.1} means that only
6704local clients can connect, whereas @code{0.0.0.0} means that connections can
6705come from any networking interface.
6706
6707In addition, @var{extra-settings} specifies a string to append to the
6708configuration file.
6709@end deffn
6710
f4391bec 6711Furthermore, @code{(gnu services ssh)} provides the following service.
8b315a6d 6712
be1c2c54 6713@deffn {Scheme Procedure} lsh-service [#:host-key "/etc/lsh/host-key"] @
5833bf33 6714 [#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @
cf4a9129
LC
6715 [#:allow-empty-passwords? #f] [#:root-login? #f] @
6716 [#:syslog-output? #t] [#:x11-forwarding? #t] @
6717 [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @
21cc905a 6718 [#:public-key-authentication? #t] [#:initialize? #t]
cf4a9129
LC
6719Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}.
6720@var{host-key} must designate a file containing the host key, and readable
6721only by root.
72e25e35 6722
5833bf33
DP
6723When @var{daemonic?} is true, @command{lshd} will detach from the
6724controlling terminal and log its output to syslogd, unless one sets
6725@var{syslog-output?} to false. Obviously, it also makes lsh-service
6726depend on existence of syslogd service. When @var{pid-file?} is true,
6727@command{lshd} writes its PID to the file called @var{pid-file}.
6728
cf4a9129
LC
6729When @var{initialize?} is true, automatically create the seed and host key
6730upon service activation if they do not exist yet. This may take long and
6731require interaction.
8b315a6d 6732
20dd519c
LC
6733When @var{initialize?} is false, it is up to the user to initialize the
6734randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create
6735a key pair with the private key stored in file @var{host-key} (@pxref{lshd
6736basics,,, lsh, LSH Manual}).
6737
cf4a9129
LC
6738When @var{interfaces} is empty, lshd listens for connections on all the
6739network interfaces; otherwise, @var{interfaces} must be a list of host names
6740or addresses.
9bf3c1a7 6741
20dd519c
LC
6742@var{allow-empty-passwords?} specifies whether to accept log-ins with empty
6743passwords, and @var{root-login?} specifies whether to accept log-ins as
cf4a9129 6744root.
4af2447e 6745
cf4a9129
LC
6746The other options should be self-descriptive.
6747@end deffn
4af2447e 6748
fa0c1d61
LC
6749@defvr {Scheme Variable} %facebook-host-aliases
6750This variable contains a string for use in @file{/etc/hosts}
6751(@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each
6752line contains a entry that maps a known server name of the Facebook
6753on-line service---e.g., @code{www.facebook.com}---to the local
6754host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}.
6755
6756This variable is typically used in the @code{hosts-file} field of an
7313a52e
LC
6757@code{operating-system} declaration (@pxref{operating-system Reference,
6758@file{/etc/hosts}}):
fa0c1d61
LC
6759
6760@example
6761(use-modules (gnu) (guix))
6762
6763(operating-system
6764 (host-name "mymachine")
6765 ;; ...
6766 (hosts-file
6767 ;; Create a /etc/hosts file with aliases for "localhost"
6768 ;; and "mymachine", as well as for Facebook servers.
24e02c28
LC
6769 (plain-file "hosts"
6770 (string-append (local-host-aliases host-name)
6771 %facebook-host-aliases))))
fa0c1d61
LC
6772@end example
6773
6774This mechanism can prevent programs running locally, such as Web
6775browsers, from accessing Facebook.
6776@end defvr
6777
965a7332
LC
6778The @code{(gnu services avahi)} provides the following definition.
6779
be1c2c54 6780@deffn {Scheme Procedure} avahi-service [#:avahi @var{avahi}] @
965a7332
LC
6781 [#:host-name #f] [#:publish? #t] [#:ipv4? #t] @
6782 [#:ipv6? #t] [#:wide-area? #f] @
6783 [#:domains-to-browse '()]
6784Return a service that runs @command{avahi-daemon}, a system-wide
6785mDNS/DNS-SD responder that allows for service discovery and
cc9c1f39
LC
6786"zero-configuration" host name lookups (see @uref{http://avahi.org/}), and
6787extends the name service cache daemon (nscd) so that it can resolve
6788@code{.local} host names using
1065bed9
LC
6789@uref{http://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. Additionally,
6790add the @var{avahi} package to the system profile so that commands such as
6791@command{avahi-browse} are directly usable.
965a7332
LC
6792
6793If @var{host-name} is different from @code{#f}, use that as the host name to
6794publish for this machine; otherwise, use the machine's actual host name.
6795
6796When @var{publish?} is true, publishing of host names and services is allowed;
6797in particular, avahi-daemon will publish the machine's host name and IP
6798address via mDNS on the local network.
6799
6800When @var{wide-area?} is true, DNS-SD over unicast DNS is enabled.
6801
6802Boolean values @var{ipv4?} and @var{ipv6?} determine whether to use IPv4/IPv6
6803sockets.
6804@end deffn
6805
6806
cf4a9129
LC
6807@node X Window
6808@subsubsection X Window
68ad877c 6809
cf4a9129
LC
6810Support for the X Window graphical display system---specifically
6811Xorg---is provided by the @code{(gnu services xorg)} module. Note that
6812there is no @code{xorg-service} procedure. Instead, the X server is
6813started by the @dfn{login manager}, currently SLiM.
4af2447e 6814
be1c2c54 6815@deffn {Scheme Procedure} slim-service [#:allow-empty-passwords? #f] @
0ecc3bf3
LC
6816 [#:auto-login? #f] [#:default-user ""] [#:startx] @
6817 [#:theme @var{%default-slim-theme}] @
4bd43bbe 6818 [#:theme-name @var{%default-slim-theme-name}]
cf4a9129
LC
6819Return a service that spawns the SLiM graphical login manager, which in
6820turn starts the X display server with @var{startx}, a command as returned by
6821@code{xorg-start-command}.
4af2447e 6822
04e4e6ab
LC
6823@cindex X session
6824
6825SLiM automatically looks for session types described by the @file{.desktop}
6826files in @file{/run/current-system/profile/share/xsessions} and allows users
6827to choose a session from the log-in screen using @kbd{F1}. Packages such as
6828@var{xfce}, @var{sawfish}, and @var{ratpoison} provide @file{.desktop} files;
6829adding them to the system-wide set of packages automatically makes them
6830available at the log-in screen.
6831
6832In addition, @file{~/.xsession} files are honored. When available,
6833@file{~/.xsession} must be an executable that starts a window manager
6834and/or other X clients.
6835
cf4a9129
LC
6836When @var{allow-empty-passwords?} is true, allow logins with an empty
6837password. When @var{auto-login?} is true, log in automatically as
6838@var{default-user}.
0ecc3bf3
LC
6839
6840If @var{theme} is @code{#f}, the use the default log-in theme; otherwise
6841@var{theme} must be a gexp denoting the name of a directory containing the
6842theme to use. In that case, @var{theme-name} specifies the name of the
6843theme.
cf4a9129 6844@end deffn
4af2447e 6845
0ecc3bf3
LC
6846@defvr {Scheme Variable} %default-theme
6847@defvrx {Scheme Variable} %default-theme-name
6848The G-Expression denoting the default SLiM theme and its name.
6849@end defvr
6850
be1c2c54 6851@deffn {Scheme Procedure} xorg-start-command [#:guile] @
d1cdd7ba 6852 [#:configuration-file #f] [#:xorg-server @var{xorg-server}]
f703413e 6853Return a derivation that builds a @var{guile} script to start the X server
d1cdd7ba
LC
6854from @var{xorg-server}. @var{configuration-file} is the server configuration
6855file or a derivation that builds it; when omitted, the result of
6856@code{xorg-configuration-file} is used.
6857
6858Usually the X server is started by a login manager.
6859@end deffn
6860
be1c2c54 6861@deffn {Scheme Procedure} xorg-configuration-file @
12422c9d 6862 [#:drivers '()] [#:resolutions '()] [#:extra-config '()]
d1cdd7ba
LC
6863Return a configuration file for the Xorg server containing search paths for
6864all the common drivers.
f703413e
LC
6865
6866@var{drivers} must be either the empty list, in which case Xorg chooses a
6867graphics driver automatically, or a list of driver names that will be tried in
d1cdd7ba 6868this order---e.g., @code{(\"modesetting\" \"vesa\")}.
d2e59637
LC
6869
6870Likewise, when @var{resolutions} is the empty list, Xorg chooses an
6871appropriate screen resolution; otherwise, it must be a list of
6872resolutions---e.g., @code{((1024 768) (640 480))}.
12422c9d
LC
6873
6874Last, @var{extra-config} is a list of strings or objects appended to the
6875@code{text-file*} argument list. It is used to pass extra text to be added
6876verbatim to the configuration file.
f703413e 6877@end deffn
4af2447e 6878
6726282b
LC
6879@deffn {Scheme Procedure} screen-locker-service @var{package} [@var{name}]
6880Add @var{package}, a package for a screen-locker or screen-saver whose
6881command is @var{program}, to the set of setuid programs and add a PAM entry
6882for it. For example:
6883
6884@lisp
6885(screen-locker-service xlockmore "xlock")
6886@end lisp
6887
6888makes the good ol' XlockMore usable.
6889@end deffn
6890
6891
fe1a39d3
LC
6892@node Desktop Services
6893@subsubsection Desktop Services
aa4ed923 6894
fe1a39d3
LC
6895The @code{(gnu services desktop)} module provides services that are
6896usually useful in the context of a ``desktop'' setup---that is, on a
6897machine running a graphical display server, possibly with graphical user
6898interfaces, etc.
aa4ed923 6899
4467be21
LC
6900To simplify things, the module defines a variable containing the set of
6901services that users typically expect on a machine with a graphical
6902environment and networking:
6903
6904@defvr {Scheme Variable} %desktop-services
6905This is a list of services that builds upon @var{%base-services} and
6906adds or adjust services for a typical ``desktop'' setup.
6907
6908In particular, it adds a graphical login manager (@pxref{X Window,
6726282b
LC
6909@code{slim-service}}), screen lockers,
6910a network management tool (@pxref{Networking
4467be21 6911Services, @code{wicd-service}}), energy and color management services,
4650a77e 6912the @code{elogind} login and seat manager, the Polkit privilege service,
cee32ee4
AW
6913the GeoClue location service, an NTP client (@pxref{Networking
6914Services}), the Avahi daemon, and has the name service switch service
6915configured to be able to use @code{nss-mdns} (@pxref{Name Service
6916Switch, mDNS}).
4467be21
LC
6917@end defvr
6918
6919The @var{%desktop-services} variable can be used as the @code{services}
6920field of an @code{operating-system} declaration (@pxref{operating-system
6921Reference, @code{services}}).
6922
0adfe95a
LC
6923The actual service definitions provided by @code{(gnu services dbus)}
6924and @code{(gnu services desktop)} are described below.
4467be21 6925
0adfe95a 6926@deffn {Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]
fe1a39d3
LC
6927Return a service that runs the ``system bus'', using @var{dbus}, with
6928support for @var{services}.
aa4ed923 6929
fe1a39d3
LC
6930@uref{http://dbus.freedesktop.org/, D-Bus} is an inter-process communication
6931facility. Its system bus is used to allow system services to communicate
6932and be notified of system-wide events.
aa4ed923 6933
fe1a39d3
LC
6934@var{services} must be a list of packages that provide an
6935@file{etc/dbus-1/system.d} directory containing additional D-Bus configuration
6936and policy files. For example, to allow avahi-daemon to use the system bus,
6937@var{services} must be equal to @code{(list avahi)}.
aa4ed923
AK
6938@end deffn
6939
0adfe95a 6940@deffn {Scheme Procedure} elogind-service [#:config @var{config}]
4650a77e
AW
6941Return a service that runs the @code{elogind} login and
6942seat management daemon. @uref{https://github.com/andywingo/elogind,
6943Elogind} exposes a D-Bus interface that can be used to know which users
6944are logged in, know what kind of sessions they have open, suspend the
6945system, inhibit system suspend, reboot the system, and other tasks.
6946
6947Elogind handles most system-level power events for a computer, for
6948example suspending the system when a lid is closed, or shutting it down
6949when the power button is pressed.
6950
6951The @var{config} keyword argument specifies the configuration for
6952elogind, and should be the result of a @code{(elogind-configuration
6953(@var{parameter} @var{value})...)} invocation. Available parameters and
6954their default values are:
6955
6956@table @code
6957@item kill-user-processes?
6958@code{#f}
6959@item kill-only-users
6960@code{()}
6961@item kill-exclude-users
6962@code{("root")}
6963@item inhibit-delay-max-seconds
6964@code{5}
6965@item handle-power-key
6966@code{poweroff}
6967@item handle-suspend-key
6968@code{suspend}
6969@item handle-hibernate-key
6970@code{hibernate}
6971@item handle-lid-switch
6972@code{suspend}
6973@item handle-lid-switch-docked
6974@code{ignore}
6975@item power-key-ignore-inhibited?
6976@code{#f}
6977@item suspend-key-ignore-inhibited?
6978@code{#f}
6979@item hibernate-key-ignore-inhibited?
6980@code{#f}
6981@item lid-switch-ignore-inhibited?
6982@code{#t}
6983@item holdoff-timeout-seconds
6984@code{30}
6985@item idle-action
6986@code{ignore}
6987@item idle-action-seconds
6988@code{(* 30 60)}
6989@item runtime-directory-size-percent
6990@code{10}
6991@item runtime-directory-size
6992@code{#f}
6993@item remove-ipc?
6994@code{#t}
6995@item suspend-state
6996@code{("mem" "standby" "freeze")}
6997@item suspend-mode
6998@code{()}
6999@item hibernate-state
7000@code{("disk")}
7001@item hibernate-mode
7002@code{("platform" "shutdown")}
7003@item hybrid-sleep-state
7004@code{("disk")}
7005@item hybrid-sleep-mode
7006@code{("suspend" "platform" "shutdown")}
7007@end table
7008@end deffn
7009
be1c2c54 7010@deffn {Scheme Procedure} polkit-service @
4650a77e 7011 [#:polkit @var{polkit}]
222e3319
LC
7012Return a service that runs the
7013@uref{http://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege
7014management service}, which allows system administrators to grant access to
7015privileged operations in a structured way. By querying the Polkit service, a
7016privileged system component can know when it should grant additional
7017capabilities to ordinary users. For example, an ordinary user can be granted
7018the capability to suspend the system if the user is logged in locally.
4650a77e
AW
7019@end deffn
7020
be1c2c54 7021@deffn {Scheme Procedure} upower-service [#:upower @var{upower}] @
be234128
AW
7022 [#:watts-up-pro? #f] @
7023 [#:poll-batteries? #t] @
7024 [#:ignore-lid? #f] @
7025 [#:use-percentage-for-policy? #f] @
7026 [#:percentage-low 10] @
7027 [#:percentage-critical 3] @
7028 [#:percentage-action 2] @
7029 [#:time-low 1200] @
7030 [#:time-critical 300] @
7031 [#:time-action 120] @
7032 [#:critical-power-action 'hybrid-sleep]
7033Return a service that runs @uref{http://upower.freedesktop.org/,
7034@command{upowerd}}, a system-wide monitor for power consumption and battery
7035levels, with the given configuration settings. It implements the
7036@code{org.freedesktop.UPower} D-Bus interface, and is notably used by
7037GNOME.
7038@end deffn
7039
2b9e0a94
LC
7040@deffn {Scheme Procedure} udisks-service [#:udisks @var{udisks}]
7041Return a service for @uref{http://udisks.freedesktop.org/docs/latest/,
7042UDisks}, a @dfn{disk management} daemon that provides user interfaces with
7043notifications and ways to mount/unmount disks. Programs that talk to UDisks
7044include the @command{udisksctl} command, part of UDisks, and GNOME Disks.
7045@end deffn
7046
be1c2c54 7047@deffn {Scheme Procedure} colord-service [#:colord @var{colord}]
7ce597ff
AW
7048Return a service that runs @command{colord}, a system service with a D-Bus
7049interface to manage the color profiles of input and output devices such as
7050screens and scanners. It is notably used by the GNOME Color Manager graphical
7051tool. See @uref{http://www.freedesktop.org/software/colord/, the colord web
7052site} for more information.
7053@end deffn
7054
cee32ee4
AW
7055@deffn {Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]
7056Return an configuration allowing an application to access GeoClue
7057location data. @var{name} is the Desktop ID of the application, without
7058the @code{.desktop} part. If @var{allowed?} is true, the application
7059will have access to location information by default. The boolean
7060@var{system?} value indicates that an application is a system component
7061or not. Finally @var{users} is a list of UIDs of all users for which
7062this application is allowed location info access. An empty users list
7063means that all users are allowed.
7064@end deffn
7065
7066@defvr {Scheme Variable} %standard-geoclue-applications
7067The standard list of well-known GeoClue application configurations,
7068granting authority to GNOME's date-and-time utility to ask for the
7069current location in order to set the time zone, and allowing the Firefox
7070(IceCat) and Epiphany web browsers to request location information.
7071Firefox and Epiphany both query the user before allowing a web page to
7072know the user's location.
7073@end defvr
7074
be1c2c54 7075@deffn {Scheme Procedure} geoclue-service [#:colord @var{colord}] @
cee32ee4
AW
7076 [#:whitelist '()] @
7077 [#:wifi-geolocation-url "https://location.services.mozilla.com/v1/geolocate?key=geoclue"] @
7078 [#:submit-data? #f]
7079 [#:wifi-submission-url "https://location.services.mozilla.com/v1/submit?key=geoclue"] @
7080 [#:submission-nick "geoclue"] @
7081 [#:applications %standard-geoclue-applications]
7082Return a service that runs the GeoClue location service. This service
7083provides a D-Bus interface to allow applications to request access to a
7084user's physical location, and optionally to add information to online
7085location databases. See
7086@uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue
7087web site} for more information.
7088@end deffn
7089
105369a4
DT
7090@node Database Services
7091@subsubsection Database Services
7092
7093The @code{(gnu services databases)} module provides the following service.
7094
be1c2c54 7095@deffn {Scheme Procedure} postgresql-service [#:postgresql postgresql] @
105369a4
DT
7096 [#:config-file] [#:data-directory ``/var/lib/postgresql/data'']
7097Return a service that runs @var{postgresql}, the PostgreSQL database
7098server.
7099
7100The PostgreSQL daemon loads its runtime configuration from
7101@var{config-file} and stores the database cluster in
7102@var{data-directory}.
7103@end deffn
fe1a39d3 7104
d8c18af8
AW
7105@node Mail Services
7106@subsubsection Mail Services
7107
7108The @code{(gnu services mail)} module provides Guix service definitions
7109for mail services. Currently the only implemented service is Dovecot,
7110an IMAP, POP3, and LMTP server.
7111
7112Guix does not yet have a mail transfer agent (MTA), although for some
7113lightweight purposes the @code{esmtp} relay-only MTA may suffice. Help
7114is needed to properly integrate a full MTA, such as Postfix. Patches
7115welcome!
7116
7117To add an IMAP/POP3 server to a GuixSD system, add a
7118@code{dovecot-service} to the operating system definition:
7119
7120@deffn {Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]
7121Return a service that runs the Dovecot IMAP/POP3/LMTP mail server.
7122@end deffn
7123
7124By default, Dovecot doesn't need much configuration; the default
7125configuration object created by @code{(dovecot-configuration)} will
7126suffice if your mail is delivered to @code{~/Maildir}. A self-signed
7127certificate will be generated for TLS-protected connections, though
7128Dovecot will also listen on cleartext ports by default. There are a
7129number of options though which mail administrators might need to change,
7130and as is the case with other services, Guix allows the system
7131administrator to specify these parameters via a uniform Scheme interface.
7132
7133For example, to specify that mail is located at @code{maildir~/.mail},
7134one would instantiate the Dovecot service like this:
7135
7136@example
7137(dovecot-service #:config
7138 (dovecot-configuration
7139 (mail-location "maildir:~/.mail")))
7140@end example
7141
7142The available configuration parameters follow. Each parameter
7143definition is preceded by its type; for example, @samp{string-list foo}
7144indicates that the @code{foo} parameter should be specified as a list of
7145strings. There is also a way to specify the configuration as a string,
7146if you have an old @code{dovecot.conf} file that you want to port over
7147from some other system; see the end for more details.
7148
7149@c The following documentation was initially generated by
7150@c (generate-documentation) in (gnu services mail). Manually maintained
7151@c documentation is better, so we shouldn't hesitate to edit below as
7152@c needed. However if the change you want to make to this documentation
7153@c can be done in an automated way, it's probably easier to change
7154@c (generate-documentation) than to make it below and have to deal with
7155@c the churn as dovecot updates.
7156
7157Available @code{dovecot-configuration} fields are:
7158
7159@deftypevr {@code{dovecot-configuration} parameter} package dovecot
7160The dovecot package.
7161@end deftypevr
7162
7163@deftypevr {@code{dovecot-configuration} parameter} comma-separated-string-list listen
7164A list of IPs or hosts where to listen in for connections. @samp{*}
7165listens in all IPv4 interfaces, @samp{::} listens in all IPv6
7166interfaces. If you want to specify non-default ports or anything more
7167complex, customize the address and port fields of the
7168@samp{inet-listener} of the specific services you are interested in.
7169@end deftypevr
7170
7171@deftypevr {@code{dovecot-configuration} parameter} protocol-configuration-list protocols
7172List of protocols we want to serve. Available protocols include
7173@samp{imap}, @samp{pop3}, and @samp{lmtp}.
7174
7175Available @code{protocol-configuration} fields are:
7176
7177@deftypevr {@code{protocol-configuration} parameter} string name
7178The name of the protocol.
7179@end deftypevr
7180
7181@deftypevr {@code{protocol-configuration} parameter} string auth-socket-path
7182UNIX socket path to master authentication server to find users.
7183This is used by imap (for shared users) and lda.
7184Defaults to @samp{"/var/run/dovecot/auth-userdb"}.
7185@end deftypevr
7186
7187@deftypevr {@code{protocol-configuration} parameter} space-separated-string-list mail-plugins
7188Space separated list of plugins to load.
7189@end deftypevr
7190
7191@deftypevr {@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections
7192Maximum number of IMAP connections allowed for a user from each IP
7193address. NOTE: The username is compared case-sensitively.
7194Defaults to @samp{10}.
7195@end deftypevr
7196
7197@end deftypevr
7198
7199@deftypevr {@code{dovecot-configuration} parameter} service-configuration-list services
7200List of services to enable. Available services include @samp{imap},
7201@samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and
7202@samp{lmtp}.
7203
7204Available @code{service-configuration} fields are:
7205
7206@deftypevr {@code{service-configuration} parameter} string kind
7207The service kind. Valid values include @code{director},
7208@code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap},
7209@code{pop3}, @code{auth}, @code{auth-worker}, @code{dict},
7210@code{tcpwrap}, @code{quota-warning}, or anything else.
7211@end deftypevr
7212
7213@deftypevr {@code{service-configuration} parameter} listener-configuration-list listeners
7214Listeners for the service. A listener is either an
7215@code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or
7216an @code{inet-listener-configuration}.
7217Defaults to @samp{()}.
7218
7219Available @code{unix-listener-configuration} fields are:
7220
7221@deftypevr {@code{unix-listener-configuration} parameter} file-name path
7222The file name on which to listen.
7223@end deftypevr
7224
7225@deftypevr {@code{unix-listener-configuration} parameter} string mode
7226The access mode for the socket.
7227Defaults to @samp{"0600"}.
7228@end deftypevr
7229
7230@deftypevr {@code{unix-listener-configuration} parameter} string user
7231The user to own the the socket.
7232Defaults to @samp{""}.
7233@end deftypevr
7234
7235@deftypevr {@code{unix-listener-configuration} parameter} string group
7236The group to own the socket.
7237Defaults to @samp{""}.
7238@end deftypevr
7239
7240
7241Available @code{fifo-listener-configuration} fields are:
7242
7243@deftypevr {@code{fifo-listener-configuration} parameter} file-name path
7244The file name on which to listen.
7245@end deftypevr
7246
7247@deftypevr {@code{fifo-listener-configuration} parameter} string mode
7248The access mode for the socket.
7249Defaults to @samp{"0600"}.
7250@end deftypevr
7251
7252@deftypevr {@code{fifo-listener-configuration} parameter} string user
7253The user to own the the socket.
7254Defaults to @samp{""}.
7255@end deftypevr
7256
7257@deftypevr {@code{fifo-listener-configuration} parameter} string group
7258The group to own the socket.
7259Defaults to @samp{""}.
7260@end deftypevr
7261
7262
7263Available @code{inet-listener-configuration} fields are:
7264
7265@deftypevr {@code{inet-listener-configuration} parameter} string protocol
7266The protocol to listen for.
7267@end deftypevr
7268
7269@deftypevr {@code{inet-listener-configuration} parameter} string address
7270The address on which to listen, or empty for all addresses.
7271Defaults to @samp{""}.
7272@end deftypevr
7273
7274@deftypevr {@code{inet-listener-configuration} parameter} non-negative-integer port
7275The port on which to listen.
7276@end deftypevr
7277
7278@deftypevr {@code{inet-listener-configuration} parameter} boolean ssl?
7279Whether to use SSL for this service; @samp{yes}, @samp{no}, or
7280@samp{required}.
7281Defaults to @samp{#t}.
7282@end deftypevr
7283
7284@end deftypevr
7285
7286@deftypevr {@code{service-configuration} parameter} non-negative-integer service-count
7287Number of connections to handle before starting a new process.
7288Typically the only useful values are 0 (unlimited) or 1. 1 is more
7289secure, but 0 is faster. <doc/wiki/LoginProcess.txt>.
7290Defaults to @samp{1}.
7291@end deftypevr
7292
7293@deftypevr {@code{service-configuration} parameter} non-negative-integer process-min-avail
7294Number of processes to always keep waiting for more connections.
7295Defaults to @samp{0}.
7296@end deftypevr
7297
7298@deftypevr {@code{service-configuration} parameter} non-negative-integer vsz-limit
7299If you set @samp{service-count 0}, you probably need to grow
7300this.
7301Defaults to @samp{256000000}.
7302@end deftypevr
7303
7304@end deftypevr
7305
7306@deftypevr {@code{dovecot-configuration} parameter} dict-configuration dict
7307Dict configuration, as created by the @code{dict-configuration}
7308constructor.
7309
7310Available @code{dict-configuration} fields are:
7311
7312@deftypevr {@code{dict-configuration} parameter} free-form-fields entries
7313A list of key-value pairs that this dict should hold.
7314Defaults to @samp{()}.
7315@end deftypevr
7316
7317@end deftypevr
7318
7319@deftypevr {@code{dovecot-configuration} parameter} passdb-configuration-list passdbs
7320List of passdb configurations, each one created by the
7321@code{passdb-configuration} constructor.
7322
7323Available @code{passdb-configuration} fields are:
7324
7325@deftypevr {@code{passdb-configuration} parameter} string driver
7326The driver that the passdb should use. Valid values include
7327@samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and
7328@samp{static}.
7329Defaults to @samp{"pam"}.
7330@end deftypevr
7331
7332@deftypevr {@code{passdb-configuration} parameter} free-form-args args
7333A list of key-value args to the passdb driver.
7334Defaults to @samp{()}.
7335@end deftypevr
7336
7337@end deftypevr
7338
7339@deftypevr {@code{dovecot-configuration} parameter} userdb-configuration-list userdbs
7340List of userdb configurations, each one created by the
7341@code{userdb-configuration} constructor.
7342
7343Available @code{userdb-configuration} fields are:
7344
7345@deftypevr {@code{userdb-configuration} parameter} string driver
7346The driver that the userdb should use. Valid values include
7347@samp{passwd} and @samp{static}.
7348Defaults to @samp{"passwd"}.
7349@end deftypevr
7350
7351@deftypevr {@code{userdb-configuration} parameter} free-form-args args
7352A list of key-value args to the userdb driver.
7353Defaults to @samp{()}.
7354@end deftypevr
7355
7356@deftypevr {@code{userdb-configuration} parameter} free-form-args override-fields
7357Override fields from passwd.
7358Defaults to @samp{()}.
7359@end deftypevr
7360
7361@end deftypevr
7362
7363@deftypevr {@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration
7364Plug-in configuration, created by the @code{plugin-configuration}
7365constructor.
7366@end deftypevr
7367
7368@deftypevr {@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces
7369List of namespaces. Each item in the list is created by the
7370@code{namespace-configuration} constructor.
7371
7372Available @code{namespace-configuration} fields are:
7373
7374@deftypevr {@code{namespace-configuration} parameter} string name
7375Name for this namespace.
7376@end deftypevr
7377
7378@deftypevr {@code{namespace-configuration} parameter} string type
7379Namespace type: @samp{private}, @samp{shared} or @samp{public}.
7380Defaults to @samp{"private"}.
7381@end deftypevr
7382
7383@deftypevr {@code{namespace-configuration} parameter} string separator
7384Hierarchy separator to use. You should use the same separator for
7385all namespaces or some clients get confused. @samp{/} is usually a good
7386one. The default however depends on the underlying mail storage
7387format.
7388Defaults to @samp{""}.
7389@end deftypevr
7390
7391@deftypevr {@code{namespace-configuration} parameter} string prefix
7392Prefix required to access this namespace. This needs to be
7393different for all namespaces. For example @samp{Public/}.
7394Defaults to @samp{""}.
7395@end deftypevr
7396
7397@deftypevr {@code{namespace-configuration} parameter} string location
7398Physical location of the mailbox. This is in same format as
7399mail_location, which is also the default for it.
7400Defaults to @samp{""}.
7401@end deftypevr
7402
7403@deftypevr {@code{namespace-configuration} parameter} boolean inbox?
7404There can be only one INBOX, and this setting defines which
7405namespace has it.
7406Defaults to @samp{#f}.
7407@end deftypevr
7408
7409@deftypevr {@code{namespace-configuration} parameter} boolean hidden?
7410If namespace is hidden, it's not advertised to clients via NAMESPACE
7411extension. You'll most likely also want to set @samp{list? #f}. This is mostly
7412useful when converting from another server with different namespaces
7413which you want to deprecate but still keep working. For example you can
7414create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/}
7415and @samp{mail/}.
7416Defaults to @samp{#f}.
7417@end deftypevr
7418
7419@deftypevr {@code{namespace-configuration} parameter} boolean list?
7420Show the mailboxes under this namespace with LIST command. This
7421makes the namespace visible for clients that don't support NAMESPACE
7422extension. The special @code{children} value lists child mailboxes, but
7423hides the namespace prefix.
7424Defaults to @samp{#t}.
7425@end deftypevr
7426
7427@deftypevr {@code{namespace-configuration} parameter} boolean subscriptions?
7428Namespace handles its own subscriptions. If set to @code{#f}, the
7429parent namespace handles them. The empty prefix should always have this
7430as @code{#t}.)
7431Defaults to @samp{#t}.
7432@end deftypevr
7433
7434@deftypevr {@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes
7435List of predefined mailboxes in this namespace.
7436Defaults to @samp{()}.
7437
7438Available @code{mailbox-configuration} fields are:
7439
7440@deftypevr {@code{mailbox-configuration} parameter} string name
7441Name for this mailbox.
7442@end deftypevr
7443
7444@deftypevr {@code{mailbox-configuration} parameter} string auto
7445@samp{create} will automatically create this mailbox.
7446@samp{subscribe} will both create and subscribe to the mailbox.
7447Defaults to @samp{"no"}.
7448@end deftypevr
7449
7450@deftypevr {@code{mailbox-configuration} parameter} space-separated-string-list special-use
7451List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154.
7452Valid values are @code{\All}, @code{\Archive}, @code{\Drafts},
7453@code{\Flagged}, @code{\Junk}, @code{\Sent}, and @code{\Trash}.
7454Defaults to @samp{()}.
7455@end deftypevr
7456
7457@end deftypevr
7458
7459@end deftypevr
7460
7461@deftypevr {@code{dovecot-configuration} parameter} file-name base-dir
7462Base directory where to store runtime data.
7463Defaults to @samp{"/var/run/dovecot/"}.
7464@end deftypevr
7465
7466@deftypevr {@code{dovecot-configuration} parameter} string login-greeting
7467Greeting message for clients.
7468Defaults to @samp{"Dovecot ready."}.
7469@end deftypevr
7470
7471@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks
7472List of trusted network ranges. Connections from these IPs are
7473allowed to override their IP addresses and ports (for logging and for
7474authentication checks). @samp{disable-plaintext-auth} is also ignored
7475for these networks. Typically you'd specify your IMAP proxy servers
7476here.
7477Defaults to @samp{()}.
7478@end deftypevr
7479
7480@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets
7481List of login access check sockets (e.g. tcpwrap).
7482Defaults to @samp{()}.
7483@end deftypevr
7484
7485@deftypevr {@code{dovecot-configuration} parameter} boolean verbose-proctitle?
7486Show more verbose process titles (in ps). Currently shows user name
7487and IP address. Useful for seeing who are actually using the IMAP
7488processes (e.g. shared mailboxes or if same uid is used for multiple
7489accounts).
7490Defaults to @samp{#f}.
7491@end deftypevr
7492
7493@deftypevr {@code{dovecot-configuration} parameter} boolean shutdown-clients?
7494Should all processes be killed when Dovecot master process shuts down.
7495Setting this to @code{#f} means that Dovecot can be upgraded without
7496forcing existing client connections to close (although that could also
7497be a problem if the upgrade is e.g. because of a security fix).
7498Defaults to @samp{#t}.
7499@end deftypevr
7500
7501@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count
7502If non-zero, run mail commands via this many connections to doveadm
7503server, instead of running them directly in the same process.
7504Defaults to @samp{0}.
7505@end deftypevr
7506
7507@deftypevr {@code{dovecot-configuration} parameter} string doveadm-socket-path
7508UNIX socket or host:port used for connecting to doveadm server.
7509Defaults to @samp{"doveadm-server"}.
7510@end deftypevr
7511
7512@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list import-environment
7513List of environment variables that are preserved on Dovecot startup
7514and passed down to all of its child processes. You can also give
7515key=value pairs to always set specific settings.
7516@end deftypevr
7517
7518@deftypevr {@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?
7519Disable LOGIN command and all other plaintext authentications unless
7520SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP
7521matches the local IP (i.e. you're connecting from the same computer),
7522the connection is considered secure and plaintext authentication is
7523allowed. See also ssl=required setting.
7524Defaults to @samp{#t}.
7525@end deftypevr
7526
7527@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size
7528Authentication cache size (e.g. @samp{#e10e6}). 0 means it's disabled.
7529Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set
7530for caching to be used.
7531Defaults to @samp{0}.
7532@end deftypevr
7533
7534@deftypevr {@code{dovecot-configuration} parameter} string auth-cache-ttl
7535Time to live for cached data. After TTL expires the cached record
7536is no longer used, *except* if the main database lookup returns internal
7537failure. We also try to handle password changes automatically: If
7538user's previous authentication was successful, but this one wasn't, the
7539cache isn't used. For now this works only with plaintext
7540authentication.
7541Defaults to @samp{"1 hour"}.
7542@end deftypevr
7543
7544@deftypevr {@code{dovecot-configuration} parameter} string auth-cache-negative-ttl
7545TTL for negative hits (user not found, password mismatch).
75460 disables caching them completely.
7547Defaults to @samp{"1 hour"}.
7548@end deftypevr
7549
7550@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-realms
7551List of realms for SASL authentication mechanisms that need them.
7552You can leave it empty if you don't want to support multiple realms.
7553Many clients simply use the first one listed here, so keep the default
7554realm first.
7555Defaults to @samp{()}.
7556@end deftypevr
7557
7558@deftypevr {@code{dovecot-configuration} parameter} string auth-default-realm
7559Default realm/domain to use if none was specified. This is used for
7560both SASL realms and appending @@domain to username in plaintext
7561logins.
7562Defaults to @samp{""}.
7563@end deftypevr
7564
7565@deftypevr {@code{dovecot-configuration} parameter} string auth-username-chars
7566List of allowed characters in username. If the user-given username
7567contains a character not listed in here, the login automatically fails.
7568This is just an extra check to make sure user can't exploit any
7569potential quote escaping vulnerabilities with SQL/LDAP databases. If
7570you want to allow all characters, set this value to empty.
7571Defaults to @samp{"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@"}.
7572@end deftypevr
7573
7574@deftypevr {@code{dovecot-configuration} parameter} string auth-username-translation
7575Username character translations before it's looked up from
7576databases. The value contains series of from -> to characters. For
7577example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are
7578translated to @samp{@@}.
7579Defaults to @samp{""}.
7580@end deftypevr
7581
7582@deftypevr {@code{dovecot-configuration} parameter} string auth-username-format
7583Username formatting before it's looked up from databases. You can
7584use the standard variables here, e.g. %Lu would lowercase the username,
7585%n would drop away the domain if it was given, or @samp{%n-AT-%d} would
7586change the @samp{@@} into @samp{-AT-}. This translation is done after
7587@samp{auth-username-translation} changes.
7588Defaults to @samp{"%Lu"}.
7589@end deftypevr
7590
7591@deftypevr {@code{dovecot-configuration} parameter} string auth-master-user-separator
7592If you want to allow master users to log in by specifying the master
7593username within the normal username string (i.e. not using SASL
7594mechanism's support for it), you can specify the separator character
7595here. The format is then <username><separator><master username>.
7596UW-IMAP uses @samp{*} as the separator, so that could be a good
7597choice.
7598Defaults to @samp{""}.
7599@end deftypevr
7600
7601@deftypevr {@code{dovecot-configuration} parameter} string auth-anonymous-username
7602Username to use for users logging in with ANONYMOUS SASL
7603mechanism.
7604Defaults to @samp{"anonymous"}.
7605@end deftypevr
7606
7607@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count
7608Maximum number of dovecot-auth worker processes. They're used to
7609execute blocking passdb and userdb queries (e.g. MySQL and PAM).
7610They're automatically created and destroyed as needed.
7611Defaults to @samp{30}.
7612@end deftypevr
7613
7614@deftypevr {@code{dovecot-configuration} parameter} string auth-gssapi-hostname
7615Host name to use in GSSAPI principal names. The default is to use
7616the name returned by gethostname(). Use @samp{$ALL} (with quotes) to
7617allow all keytab entries.
7618Defaults to @samp{""}.
7619@end deftypevr
7620
7621@deftypevr {@code{dovecot-configuration} parameter} string auth-krb5-keytab
7622Kerberos keytab to use for the GSSAPI mechanism. Will use the
7623system default (usually /etc/krb5.keytab) if not specified. You may
7624need to change the auth service to run as root to be able to read this
7625file.
7626Defaults to @samp{""}.
7627@end deftypevr
7628
7629@deftypevr {@code{dovecot-configuration} parameter} boolean auth-use-winbind?
7630Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon
7631and @samp{ntlm-auth} helper.
7632<doc/wiki/Authentication/Mechanisms/Winbind.txt>.
7633Defaults to @samp{#f}.
7634@end deftypevr
7635
7636@deftypevr {@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path
7637Path for Samba's @samp{ntlm-auth} helper binary.
7638Defaults to @samp{"/usr/bin/ntlm_auth"}.
7639@end deftypevr
7640
7641@deftypevr {@code{dovecot-configuration} parameter} string auth-failure-delay
7642Time to delay before replying to failed authentications.
7643Defaults to @samp{"2 secs"}.
7644@end deftypevr
7645
7646@deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?
7647Require a valid SSL client certificate or the authentication
7648fails.
7649Defaults to @samp{#f}.
7650@end deftypevr
7651
7652@deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?
7653Take the username from client's SSL certificate, using
7654@code{X509_NAME_get_text_by_NID()} which returns the subject's DN's
7655CommonName.
7656Defaults to @samp{#f}.
7657@end deftypevr
7658
7659@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms
7660List of wanted authentication mechanisms. Supported mechanisms are:
7661@samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5},
7662@samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi},
7663@samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also
7664@samp{disable-plaintext-auth} setting.
7665@end deftypevr
7666
7667@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-servers
7668List of IPs or hostnames to all director servers, including ourself.
7669Ports can be specified as ip:port. The default port is the same as what
7670director service's @samp{inet-listener} is using.
7671Defaults to @samp{()}.
7672@end deftypevr
7673
7674@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers
7675List of IPs or hostnames to all backend mail servers. Ranges are
7676allowed too, like 10.0.0.10-10.0.0.30.
7677Defaults to @samp{()}.
7678@end deftypevr
7679
7680@deftypevr {@code{dovecot-configuration} parameter} string director-user-expire
7681How long to redirect users to a specific server after it no longer
7682has any connections.
7683Defaults to @samp{"15 min"}.
7684@end deftypevr
7685
7686@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer director-doveadm-port
7687TCP/IP port that accepts doveadm connections (instead of director
7688connections) If you enable this, you'll also need to add
7689@samp{inet-listener} for the port.
7690Defaults to @samp{0}.
7691@end deftypevr
7692
7693@deftypevr {@code{dovecot-configuration} parameter} string director-username-hash
7694How the username is translated before being hashed. Useful values
7695include %Ln if user can log in with or without @@domain, %Ld if mailboxes
7696are shared within domain.
7697Defaults to @samp{"%Lu"}.
7698@end deftypevr
7699
7700@deftypevr {@code{dovecot-configuration} parameter} string log-path
7701Log file to use for error messages. @samp{syslog} logs to syslog,
7702@samp{/dev/stderr} logs to stderr.
7703Defaults to @samp{"syslog"}.
7704@end deftypevr
7705
7706@deftypevr {@code{dovecot-configuration} parameter} string info-log-path
7707Log file to use for informational messages. Defaults to
7708@samp{log-path}.
7709Defaults to @samp{""}.
7710@end deftypevr
7711
7712@deftypevr {@code{dovecot-configuration} parameter} string debug-log-path
7713Log file to use for debug messages. Defaults to
7714@samp{info-log-path}.
7715Defaults to @samp{""}.
7716@end deftypevr
7717
7718@deftypevr {@code{dovecot-configuration} parameter} string syslog-facility
7719Syslog facility to use if you're logging to syslog. Usually if you
7720don't want to use @samp{mail}, you'll use local0..local7. Also other
7721standard facilities are supported.
7722Defaults to @samp{"mail"}.
7723@end deftypevr
7724
7725@deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose?
7726Log unsuccessful authentication attempts and the reasons why they
7727failed.
7728Defaults to @samp{#f}.
7729@end deftypevr
7730
7731@deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose-passwords?
7732In case of password mismatches, log the attempted password. Valid
7733values are no, plain and sha1. sha1 can be useful for detecting brute
7734force password attempts vs. user simply trying the same password over
7735and over again. You can also truncate the value to n chars by appending
7736":n" (e.g. sha1:6).
7737Defaults to @samp{#f}.
7738@end deftypevr
7739
7740@deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug?
7741Even more verbose logging for debugging purposes. Shows for example
7742SQL queries.
7743Defaults to @samp{#f}.
7744@end deftypevr
7745
7746@deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug-passwords?
7747In case of password mismatches, log the passwords and used scheme so
7748the problem can be debugged. Enabling this also enables
7749@samp{auth-debug}.
7750Defaults to @samp{#f}.
7751@end deftypevr
7752
7753@deftypevr {@code{dovecot-configuration} parameter} boolean mail-debug?
7754Enable mail process debugging. This can help you figure out why
7755Dovecot isn't finding your mails.
7756Defaults to @samp{#f}.
7757@end deftypevr
7758
7759@deftypevr {@code{dovecot-configuration} parameter} boolean verbose-ssl?
7760Show protocol level SSL errors.
7761Defaults to @samp{#f}.
7762@end deftypevr
7763
7764@deftypevr {@code{dovecot-configuration} parameter} string log-timestamp
7765Prefix for each line written to log file. % codes are in
7766strftime(3) format.
7767Defaults to @samp{"\"%b %d %H:%M:%S \""}.
7768@end deftypevr
7769
7770@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements
7771List of elements we want to log. The elements which have a
7772non-empty variable value are joined together to form a comma-separated
7773string.
7774@end deftypevr
7775
7776@deftypevr {@code{dovecot-configuration} parameter} string login-log-format
7777Login log format. %s contains @samp{login-log-format-elements}
7778string, %$ contains the data we want to log.
7779Defaults to @samp{"%$: %s"}.
7780@end deftypevr
7781
7782@deftypevr {@code{dovecot-configuration} parameter} string mail-log-prefix
7783Log prefix for mail processes. See doc/wiki/Variables.txt for list
7784of possible variables you can use.
7785Defaults to @samp{"\"%s(%u): \""}.
7786@end deftypevr
7787
7788@deftypevr {@code{dovecot-configuration} parameter} string deliver-log-format
7789Format to use for logging mail deliveries. You can use variables:
7790@table @code
7791@item %$
7792Delivery status message (e.g. @samp{saved to INBOX})
7793@item %m
7794Message-ID
7795@item %s
7796Subject
7797@item %f
7798From address
7799@item %p
7800Physical size
7801@item %w
7802Virtual size.
7803@end table
7804Defaults to @samp{"msgid=%m: %$"}.
7805@end deftypevr
7806
7807@deftypevr {@code{dovecot-configuration} parameter} string mail-location
7808Location for users' mailboxes. The default is empty, which means
7809that Dovecot tries to find the mailboxes automatically. This won't work
7810if the user doesn't yet have any mail, so you should explicitly tell
7811Dovecot the full location.
7812
7813If you're using mbox, giving a path to the INBOX
7814file (e.g. /var/mail/%u) isn't enough. You'll also need to tell Dovecot
7815where the other mailboxes are kept. This is called the "root mail
7816directory", and it must be the first path given in the
7817@samp{mail-location} setting.
7818
7819There are a few special variables you can use, eg.:
7820
7821@table @samp
7822@item %u
7823username
7824@item %n
7825user part in user@@domain, same as %u if there's no domain
7826@item %d
7827domain part in user@@domain, empty if there's no domain
7828@item %h
7829home director
7830@end table
7831
7832See doc/wiki/Variables.txt for full list. Some examples:
7833@table @samp
7834@item maildir:~/Maildir
7835@item mbox:~/mail:INBOX=/var/mail/%u
7836@item mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%
7837@end table
7838Defaults to @samp{""}.
7839@end deftypevr
7840
7841@deftypevr {@code{dovecot-configuration} parameter} string mail-uid
7842System user and group used to access mails. If you use multiple,
7843userdb can override these by returning uid or gid fields. You can use
7844either numbers or names. <doc/wiki/UserIds.txt>.
7845Defaults to @samp{""}.
7846@end deftypevr
7847
7848@deftypevr {@code{dovecot-configuration} parameter} string mail-gid
7849
7850Defaults to @samp{""}.
7851@end deftypevr
7852
7853@deftypevr {@code{dovecot-configuration} parameter} string mail-privileged-group
7854Group to enable temporarily for privileged operations. Currently
7855this is used only with INBOX when either its initial creation or
7856dotlocking fails. Typically this is set to "mail" to give access to
7857/var/mail.
7858Defaults to @samp{""}.
7859@end deftypevr
7860
7861@deftypevr {@code{dovecot-configuration} parameter} string mail-access-groups
7862Grant access to these supplementary groups for mail processes.
7863Typically these are used to set up access to shared mailboxes. Note
7864that it may be dangerous to set these if users can create
7865symlinks (e.g. if "mail" group is set here, ln -s /var/mail ~/mail/var
7866could allow a user to delete others' mailboxes, or ln -s
7867/secret/shared/box ~/mail/mybox would allow reading it).
7868Defaults to @samp{""}.
7869@end deftypevr
7870
7871@deftypevr {@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?
7872Allow full filesystem access to clients. There's no access checks
7873other than what the operating system does for the active UID/GID. It
7874works with both maildir and mboxes, allowing you to prefix mailboxes
7875names with e.g. /path/ or ~user/.
7876Defaults to @samp{#f}.
7877@end deftypevr
7878
7879@deftypevr {@code{dovecot-configuration} parameter} boolean mmap-disable?
7880Don't use mmap() at all. This is required if you store indexes to
7881shared filesystems (NFS or clustered filesystem).
7882Defaults to @samp{#f}.
7883@end deftypevr
7884
7885@deftypevr {@code{dovecot-configuration} parameter} boolean dotlock-use-excl?
7886Rely on @samp{O_EXCL} to work when creating dotlock files. NFS
7887supports @samp{O_EXCL} since version 3, so this should be safe to use
7888nowadays by default.
7889Defaults to @samp{#t}.
7890@end deftypevr
7891
7892@deftypevr {@code{dovecot-configuration} parameter} string mail-fsync
7893When to use fsync() or fdatasync() calls:
7894@table @code
7895@item optimized
7896Whenever necessary to avoid losing important data
7897@item always
7898Useful with e.g. NFS when write()s are delayed
7899@item never
7900Never use it (best performance, but crashes can lose data).
7901@end table
7902Defaults to @samp{"optimized"}.
7903@end deftypevr
7904
7905@deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-storage?
7906Mail storage exists in NFS. Set this to yes to make Dovecot flush
7907NFS caches whenever needed. If you're using only a single mail server
7908this isn't needed.
7909Defaults to @samp{#f}.
7910@end deftypevr
7911
7912@deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-index?
7913Mail index files also exist in NFS. Setting this to yes requires
7914@samp{mmap-disable? #t} and @samp{fsync-disable? #f}.
7915Defaults to @samp{#f}.
7916@end deftypevr
7917
7918@deftypevr {@code{dovecot-configuration} parameter} string lock-method
7919Locking method for index files. Alternatives are fcntl, flock and
7920dotlock. Dotlocking uses some tricks which may create more disk I/O
7921than other locking methods. NFS users: flock doesn't work, remember to
7922change @samp{mmap-disable}.
7923Defaults to @samp{"fcntl"}.
7924@end deftypevr
7925
7926@deftypevr {@code{dovecot-configuration} parameter} file-name mail-temp-dir
7927Directory in which LDA/LMTP temporarily stores incoming mails >128
7928kB.
7929Defaults to @samp{"/tmp"}.
7930@end deftypevr
7931
7932@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid
7933Valid UID range for users. This is mostly to make sure that users can't
7934log in as daemons or other system users. Note that denying root logins is
7935hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid}
7936is set to 0.
7937Defaults to @samp{500}.
7938@end deftypevr
7939
7940@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid
7941
7942Defaults to @samp{0}.
7943@end deftypevr
7944
7945@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid
7946Valid GID range for users. Users having non-valid GID as primary group ID
7947aren't allowed to log in. If user belongs to supplementary groups with
7948non-valid GIDs, those groups are not set.
7949Defaults to @samp{1}.
7950@end deftypevr
7951
7952@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid
7953
7954Defaults to @samp{0}.
7955@end deftypevr
7956
7957@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length
7958Maximum allowed length for mail keyword name. It's only forced when
7959trying to create new keywords.
7960Defaults to @samp{50}.
7961@end deftypevr
7962
7963@deftypevr {@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs
7964List of directories under which chrooting is allowed for mail
7965processes (i.e. /var/mail will allow chrooting to /var/mail/foo/bar
7966too). This setting doesn't affect @samp{login-chroot}
7967@samp{mail-chroot} or auth chroot settings. If this setting is empty,
7968"/./" in home dirs are ignored. WARNING: Never add directories here
7969which local users can modify, that may lead to root exploit. Usually
7970this should be done only if you don't allow shell access for users.
7971<doc/wiki/Chrooting.txt>.
7972Defaults to @samp{()}.
7973@end deftypevr
7974
7975@deftypevr {@code{dovecot-configuration} parameter} string mail-chroot
7976Default chroot directory for mail processes. This can be overridden
7977for specific users in user database by giving /./ in user's home
7978directory (e.g. /home/./user chroots into /home). Note that usually
7979there is no real need to do chrooting, Dovecot doesn't allow users to
7980access files outside their mail directory anyway. If your home
7981directories are prefixed with the chroot directory, append "/." to
7982@samp{mail-chroot}. <doc/wiki/Chrooting.txt>.
7983Defaults to @samp{""}.
7984@end deftypevr
7985
7986@deftypevr {@code{dovecot-configuration} parameter} file-name auth-socket-path
7987UNIX socket path to master authentication server to find users.
7988This is used by imap (for shared users) and lda.
7989Defaults to @samp{"/var/run/dovecot/auth-userdb"}.
7990@end deftypevr
7991
7992@deftypevr {@code{dovecot-configuration} parameter} file-name mail-plugin-dir
7993Directory where to look up mail plugins.
7994Defaults to @samp{"/usr/lib/dovecot"}.
7995@end deftypevr
7996
7997@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins
7998List of plugins to load for all services. Plugins specific to IMAP,
7999LDA, etc. are added to this list in their own .conf files.
8000Defaults to @samp{()}.
8001@end deftypevr
8002
8003@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count
8004The minimum number of mails in a mailbox before updates are done to
8005cache file. This allows optimizing Dovecot's behavior to do less disk
8006writes at the cost of more disk reads.
8007Defaults to @samp{0}.
8008@end deftypevr
8009
8010@deftypevr {@code{dovecot-configuration} parameter} string mailbox-idle-check-interval
8011When IDLE command is running, mailbox is checked once in a while to
8012see if there are any new mails or other changes. This setting defines
8013the minimum time to wait between those checks. Dovecot can also use
8014dnotify, inotify and kqueue to find out immediately when changes
8015occur.
8016Defaults to @samp{"30 secs"}.
8017@end deftypevr
8018
8019@deftypevr {@code{dovecot-configuration} parameter} boolean mail-save-crlf?
8020Save mails with CR+LF instead of plain LF. This makes sending those
8021mails take less CPU, especially with sendfile() syscall with Linux and
8022FreeBSD. But it also creates a bit more disk I/O which may just make it
8023slower. Also note that if other software reads the mboxes/maildirs,
8024they may handle the extra CRs wrong and cause problems.
8025Defaults to @samp{#f}.
8026@end deftypevr
8027
8028@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?
8029By default LIST command returns all entries in maildir beginning
8030with a dot. Enabling this option makes Dovecot return only entries
8031which are directories. This is done by stat()ing each entry, so it
8032causes more disk I/O.
8033 (For systems setting struct @samp{dirent->d_type} this check is free
8034and it's done always regardless of this setting).
8035Defaults to @samp{#f}.
8036@end deftypevr
8037
8038@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?
8039When copying a message, do it with hard links whenever possible.
8040This makes the performance much better, and it's unlikely to have any
8041side effects.
8042Defaults to @samp{#t}.
8043@end deftypevr
8044
8045@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?
8046Assume Dovecot is the only MUA accessing Maildir: Scan cur/
8047directory only when its mtime changes unexpectedly or when we can't find
8048the mail otherwise.
8049Defaults to @samp{#f}.
8050@end deftypevr
8051
8052@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks
8053Which locking methods to use for locking mbox. There are four
8054available:
8055
8056@table @code
8057@item dotlock
8058Create <mailbox>.lock file. This is the oldest and most NFS-safe
8059solution. If you want to use /var/mail/ like directory, the users will
8060need write access to that directory.
8061@item dotlock-try
8062Same as dotlock, but if it fails because of permissions or because there
8063isn't enough disk space, just skip it.
8064@item fcntl
8065Use this if possible. Works with NFS too if lockd is used.
8066@item flock
8067May not exist in all systems. Doesn't work with NFS.
8068@item lockf
8069May not exist in all systems. Doesn't work with NFS.
8070@end table
8071
8072You can use multiple locking methods; if you do the order they're declared
8073in is important to avoid deadlocks if other MTAs/MUAs are using multiple
8074locking methods as well. Some operating systems don't allow using some of
8075them simultaneously.
8076@end deftypevr
8077
8078@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks
8079
8080@end deftypevr
8081
8082@deftypevr {@code{dovecot-configuration} parameter} string mbox-lock-timeout
8083Maximum time to wait for lock (all of them) before aborting.
8084Defaults to @samp{"5 mins"}.
8085@end deftypevr
8086
8087@deftypevr {@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout
8088If dotlock exists but the mailbox isn't modified in any way,
8089override the lock file after this much time.
8090Defaults to @samp{"2 mins"}.
8091@end deftypevr
8092
8093@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?
8094When mbox changes unexpectedly we have to fully read it to find out
8095what changed. If the mbox is large this can take a long time. Since
8096the change is usually just a newly appended mail, it'd be faster to
8097simply read the new mails. If this setting is enabled, Dovecot does
8098this but still safely fallbacks to re-reading the whole mbox file
8099whenever something in mbox isn't how it's expected to be. The only real
8100downside to this setting is that if some other MUA changes message
8101flags, Dovecot doesn't notice it immediately. Note that a full sync is
8102done with SELECT, EXAMINE, EXPUNGE and CHECK commands.
8103Defaults to @samp{#t}.
8104@end deftypevr
8105
8106@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?
8107Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT,
8108EXAMINE, EXPUNGE or CHECK commands. If this is set,
8109@samp{mbox-dirty-syncs} is ignored.
8110Defaults to @samp{#f}.
8111@end deftypevr
8112
8113@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?
8114Delay writing mbox headers until doing a full write sync (EXPUNGE
8115and CHECK commands and when closing the mailbox). This is especially
8116useful for POP3 where clients often delete all mails. The downside is
8117that our changes aren't immediately visible to other MUAs.
8118Defaults to @samp{#t}.
8119@end deftypevr
8120
8121@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size
8122If mbox size is smaller than this (e.g. 100k), don't write index
8123files. If an index file already exists it's still read, just not
8124updated.
8125Defaults to @samp{0}.
8126@end deftypevr
8127
8128@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size
8129Maximum dbox file size until it's rotated.
8130Defaults to @samp{2000000}.
8131@end deftypevr
8132
8133@deftypevr {@code{dovecot-configuration} parameter} string mdbox-rotate-interval
8134Maximum dbox file age until it's rotated. Typically in days. Day
8135begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check
8136disabled.
8137Defaults to @samp{"1d"}.
8138@end deftypevr
8139
8140@deftypevr {@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?
8141When creating new mdbox files, immediately preallocate their size to
8142@samp{mdbox-rotate-size}. This setting currently works only in Linux
8143with some filesystems (ext4, xfs).
8144Defaults to @samp{#f}.
8145@end deftypevr
8146
8147@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-dir
8148sdbox and mdbox support saving mail attachments to external files,
8149which also allows single instance storage for them. Other backends
8150don't support this for now.
8151
8152WARNING: This feature hasn't been tested much yet. Use at your own risk.
8153
8154Directory root where to store mail attachments. Disabled, if empty.
8155Defaults to @samp{""}.
8156@end deftypevr
8157
8158@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size
8159Attachments smaller than this aren't saved externally. It's also
8160possible to write a plugin to disable saving specific attachments
8161externally.
8162Defaults to @samp{128000}.
8163@end deftypevr
8164
8165@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-fs
8166Filesystem backend to use for saving attachments:
8167@table @code
8168@item posix
8169No SiS done by Dovecot (but this might help FS's own deduplication)
8170@item sis posix
8171SiS with immediate byte-by-byte comparison during saving
8172@item sis-queue posix
8173SiS with delayed comparison and deduplication.
8174@end table
8175Defaults to @samp{"sis posix"}.
8176@end deftypevr
8177
8178@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-hash
8179Hash format to use in attachment filenames. You can add any text and
8180variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}},
8181@code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be
8182truncated, e.g. @code{%@{sha256:80@}} returns only first 80 bits.
8183Defaults to @samp{"%@{sha1@}"}.
8184@end deftypevr
8185
8186@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-process-limit
8187
8188Defaults to @samp{100}.
8189@end deftypevr
8190
8191@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-client-limit
8192
8193Defaults to @samp{1000}.
8194@end deftypevr
8195
8196@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit
8197Default VSZ (virtual memory size) limit for service processes.
8198This is mainly intended to catch and kill processes that leak memory
8199before they eat up everything.
8200Defaults to @samp{256000000}.
8201@end deftypevr
8202
8203@deftypevr {@code{dovecot-configuration} parameter} string default-login-user
8204Login user is internally used by login processes. This is the most
8205untrusted user in Dovecot system. It shouldn't have access to anything
8206at all.
8207Defaults to @samp{"dovenull"}.
8208@end deftypevr
8209
8210@deftypevr {@code{dovecot-configuration} parameter} string default-internal-user
8211Internal user is used by unprivileged processes. It should be
8212separate from login user, so that login processes can't disturb other
8213processes.
8214Defaults to @samp{"dovecot"}.
8215@end deftypevr
8216
8217@deftypevr {@code{dovecot-configuration} parameter} string ssl?
8218SSL/TLS support: yes, no, required. <doc/wiki/SSL.txt>.
8219Defaults to @samp{"required"}.
8220@end deftypevr
8221
8222@deftypevr {@code{dovecot-configuration} parameter} string ssl-cert
8223PEM encoded X.509 SSL/TLS certificate (public key).
8224Defaults to @samp{"</etc/dovecot/default.pem"}.
8225@end deftypevr
8226
8227@deftypevr {@code{dovecot-configuration} parameter} string ssl-key
8228PEM encoded SSL/TLS private key. The key is opened before
8229dropping root privileges, so keep the key file unreadable by anyone but
8230root.
8231Defaults to @samp{"</etc/dovecot/private/default.pem"}.
8232@end deftypevr
8233
8234@deftypevr {@code{dovecot-configuration} parameter} string ssl-key-password
8235If key file is password protected, give the password here.
8236Alternatively give it when starting dovecot with -p parameter. Since
8237this file is often world-readable, you may want to place this setting
8238instead to a different.
8239Defaults to @samp{""}.
8240@end deftypevr
8241
8242@deftypevr {@code{dovecot-configuration} parameter} string ssl-ca
8243PEM encoded trusted certificate authority. Set this only if you
8244intend to use @samp{ssl-verify-client-cert? #t}. The file should
8245contain the CA certificate(s) followed by the matching
8246CRL(s). (e.g. @samp{ssl-ca </etc/ssl/certs/ca.pem}).
8247Defaults to @samp{""}.
8248@end deftypevr
8249
8250@deftypevr {@code{dovecot-configuration} parameter} boolean ssl-require-crl?
8251Require that CRL check succeeds for client certificates.
8252Defaults to @samp{#t}.
8253@end deftypevr
8254
8255@deftypevr {@code{dovecot-configuration} parameter} boolean ssl-verify-client-cert?
8256Request client to send a certificate. If you also want to require
8257it, set @samp{auth-ssl-require-client-cert? #t} in auth section.
8258Defaults to @samp{#f}.
8259@end deftypevr
8260
8261@deftypevr {@code{dovecot-configuration} parameter} string ssl-cert-username-field
8262Which field from certificate to use for username. commonName and
8263x500UniqueIdentifier are the usual choices. You'll also need to set
8264@samp{auth-ssl-username-from-cert? #t}.
8265Defaults to @samp{"commonName"}.
8266@end deftypevr
8267
8268@deftypevr {@code{dovecot-configuration} parameter} hours ssl-parameters-regenerate
8269How often to regenerate the SSL parameters file. Generation is
8270quite CPU intensive operation. The value is in hours, 0 disables
8271regeneration entirely.
8272Defaults to @samp{168}.
8273@end deftypevr
8274
8275@deftypevr {@code{dovecot-configuration} parameter} string ssl-protocols
8276SSL protocols to use.
8277Defaults to @samp{"!SSLv2"}.
8278@end deftypevr
8279
8280@deftypevr {@code{dovecot-configuration} parameter} string ssl-cipher-list
8281SSL ciphers to use.
8282Defaults to @samp{"ALL:!LOW:!SSLv2:!EXP:!aNULL"}.
8283@end deftypevr
8284
8285@deftypevr {@code{dovecot-configuration} parameter} string ssl-crypto-device
8286SSL crypto device to use, for valid values run "openssl engine".
8287Defaults to @samp{""}.
8288@end deftypevr
8289
8290@deftypevr {@code{dovecot-configuration} parameter} string postmaster-address
8291Address to use when sending rejection mails.
8292Default is postmaster@@<your domain>. %d expands to recipient domain.
8293Defaults to @samp{""}.
8294@end deftypevr
8295
8296@deftypevr {@code{dovecot-configuration} parameter} string hostname
8297Hostname to use in various parts of sent mails (e.g. in Message-Id)
8298and in LMTP replies. Default is the system's real hostname@@domain.
8299Defaults to @samp{""}.
8300@end deftypevr
8301
8302@deftypevr {@code{dovecot-configuration} parameter} boolean quota-full-tempfail?
8303If user is over quota, return with temporary failure instead of
8304bouncing the mail.
8305Defaults to @samp{#f}.
8306@end deftypevr
8307
8308@deftypevr {@code{dovecot-configuration} parameter} file-name sendmail-path
8309Binary to use for sending mails.
8310Defaults to @samp{"/usr/sbin/sendmail"}.
8311@end deftypevr
8312
8313@deftypevr {@code{dovecot-configuration} parameter} string submission-host
8314If non-empty, send mails via this SMTP host[:port] instead of
8315sendmail.
8316Defaults to @samp{""}.
8317@end deftypevr
8318
8319@deftypevr {@code{dovecot-configuration} parameter} string rejection-subject
8320Subject: header to use for rejection mails. You can use the same
8321variables as for @samp{rejection-reason} below.
8322Defaults to @samp{"Rejected: %s"}.
8323@end deftypevr
8324
8325@deftypevr {@code{dovecot-configuration} parameter} string rejection-reason
8326Human readable error message for rejection mails. You can use
8327variables:
8328
8329@table @code
8330@item %n
8331CRLF
8332@item %r
8333reason
8334@item %s
8335original subject
8336@item %t
8337recipient
8338@end table
8339Defaults to @samp{"Your message to <%t> was automatically rejected:%n%r"}.
8340@end deftypevr
8341
8342@deftypevr {@code{dovecot-configuration} parameter} string recipient-delimiter
8343Delimiter character between local-part and detail in email
8344address.
8345Defaults to @samp{"+"}.
8346@end deftypevr
8347
8348@deftypevr {@code{dovecot-configuration} parameter} string lda-original-recipient-header
8349Header where the original recipient address (SMTP's RCPT TO:
8350address) is taken from if not available elsewhere. With dovecot-lda -a
8351parameter overrides this. A commonly used header for this is
8352X-Original-To.
8353Defaults to @samp{""}.
8354@end deftypevr
8355
8356@deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?
8357Should saving a mail to a nonexistent mailbox automatically create
8358it?.
8359Defaults to @samp{#f}.
8360@end deftypevr
8361
8362@deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?
8363Should automatically created mailboxes be also automatically
8364subscribed?.
8365Defaults to @samp{#f}.
8366@end deftypevr
8367
8368@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length
8369Maximum IMAP command line length. Some clients generate very long
8370command lines with huge mailboxes, so you may need to raise this if you
8371get "Too long argument" or "IMAP command line too large" errors
8372often.
8373Defaults to @samp{64000}.
8374@end deftypevr
8375
8376@deftypevr {@code{dovecot-configuration} parameter} string imap-logout-format
8377IMAP logout format string:
8378@table @code
8379@item %i
8380total number of bytes read from client
8381@item %o
8382total number of bytes sent to client.
8383@end table
8384Defaults to @samp{"in=%i out=%o"}.
8385@end deftypevr
8386
8387@deftypevr {@code{dovecot-configuration} parameter} string imap-capability
8388Override the IMAP CAPABILITY response. If the value begins with '+',
8389add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
8390Defaults to @samp{""}.
8391@end deftypevr
8392
8393@deftypevr {@code{dovecot-configuration} parameter} string imap-idle-notify-interval
8394How long to wait between "OK Still here" notifications when client
8395is IDLEing.
8396Defaults to @samp{"2 mins"}.
8397@end deftypevr
8398
8399@deftypevr {@code{dovecot-configuration} parameter} string imap-id-send
8400ID field names and values to send to clients. Using * as the value
8401makes Dovecot use the default value. The following fields have default
8402values currently: name, version, os, os-version, support-url,
8403support-email.
8404Defaults to @samp{""}.
8405@end deftypevr
8406
8407@deftypevr {@code{dovecot-configuration} parameter} string imap-id-log
8408ID fields sent by client to log. * means everything.
8409Defaults to @samp{""}.
8410@end deftypevr
8411
8412@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds
8413Workarounds for various client bugs:
8414
8415@table @code
8416@item delay-newmail
8417Send EXISTS/RECENT new mail notifications only when replying to NOOP and
8418CHECK commands. Some clients ignore them otherwise, for example OSX
8419Mail (<v2.1). Outlook Express breaks more badly though, without this it
8420may show user "Message no longer in server" errors. Note that OE6
8421still breaks even with this workaround if synchronization is set to
8422"Headers Only".
8423
8424@item tb-extra-mailbox-sep
8425Thunderbird gets somehow confused with LAYOUT=fs (mbox and dbox) and
8426adds extra @samp{/} suffixes to mailbox names. This option causes Dovecot to
8427ignore the extra @samp{/} instead of treating it as invalid mailbox name.
8428
8429@item tb-lsub-flags
8430Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
8431This makes Thunderbird realize they aren't selectable and show them
8432greyed out, instead of only later giving "not selectable" popup error.
8433@end table
8434Defaults to @samp{()}.
8435@end deftypevr
8436
8437@deftypevr {@code{dovecot-configuration} parameter} string imap-urlauth-host
8438Host allowed in URLAUTH URLs sent by client. "*" allows all.
8439Defaults to @samp{""}.
8440@end deftypevr
8441
8442
8443Whew! Lots of configuration options. The nice thing about it though is
8444that GuixSD has a complete interface to Dovecot's configuration
8445language. This allows not only a nice way to declare configurations,
8446but also offers reflective capabilities as well: users can write code to
8447inspect and transform configurations from within Scheme.
8448
8449However, it could be that you just want to get a @code{dovecot.conf} up
8450and running. In that case, you can pass an
8451@code{opaque-dovecot-configuration} as the @code{#:config} paramter to
8452@code{dovecot-service}. As its name indicates, an opaque configuration
8453does not have easy reflective capabilities.
8454
8455Available @code{opaque-dovecot-configuration} fields are:
8456
8457@deftypevr {@code{opaque-dovecot-configuration} parameter} package dovecot
8458The dovecot package.
8459@end deftypevr
8460
8461@deftypevr {@code{opaque-dovecot-configuration} parameter} string string
8462The contents of the @code{dovecot.conf}, as a string.
8463@end deftypevr
8464
8465For example, if your @code{dovecot.conf} is just the empty string, you
8466could instantiate a dovecot service like this:
8467
8468@example
8469(dovecot-service #:config
8470 (opaque-dovecot-configuration
8471 (string "")))
8472@end example
8473
58724c48
DT
8474@node Web Services
8475@subsubsection Web Services
8476
8477The @code{(gnu services web)} module provides the following service:
8478
be1c2c54 8479@deffn {Scheme Procedure} nginx-service [#:nginx nginx] @
58724c48
DT
8480 [#:log-directory ``/var/log/nginx''] @
8481 [#:run-directory ``/var/run/nginx''] @
8482 [#:config-file]
8483
8484Return a service that runs @var{nginx}, the nginx web server.
8485
8486The nginx daemon loads its runtime configuration from @var{config-file}.
8487Log files are written to @var{log-directory} and temporary runtime data
8488files are written to @var{run-directory}. For proper operation, these
8489arguments should match what is in @var{config-file} to ensure that the
8490directories are created when the service is activated.
8491
8492@end deffn
8493
fe1a39d3
LC
8494@node Various Services
8495@subsubsection Various Services
8496
8497The @code{(gnu services lirc)} module provides the following service.
8498
be1c2c54 8499@deffn {Scheme Procedure} lirc-service [#:lirc lirc] @
fe1a39d3
LC
8500 [#:device #f] [#:driver #f] [#:config-file #f] @
8501 [#:extra-options '()]
8502Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that
8503decodes infrared signals from remote controls.
8504
8505Optionally, @var{device}, @var{driver} and @var{config-file}
8506(configuration file name) may be specified. See @command{lircd} manual
8507for details.
8508
8509Finally, @var{extra-options} is a list of additional command-line options
8510passed to @command{lircd}.
8511@end deffn
8512
8513
0ae8c15a
LC
8514@node Setuid Programs
8515@subsection Setuid Programs
8516
8517@cindex setuid programs
8518Some programs need to run with ``root'' privileges, even when they are
8519launched by unprivileged users. A notorious example is the
4d40227c
LC
8520@command{passwd} program, which users can run to change their
8521password, and which needs to access the @file{/etc/passwd} and
0ae8c15a
LC
8522@file{/etc/shadow} files---something normally restricted to root, for
8523obvious security reasons. To address that, these executables are
8524@dfn{setuid-root}, meaning that they always run with root privileges
8525(@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual},
f7e4ae7f 8526for more info about the setuid mechanism.)
0ae8c15a
LC
8527
8528The store itself @emph{cannot} contain setuid programs: that would be a
8529security issue since any user on the system can write derivations that
8530populate the store (@pxref{The Store}). Thus, a different mechanism is
8531used: instead of changing the setuid bit directly on files that are in
8532the store, we let the system administrator @emph{declare} which programs
8533should be setuid root.
8534
8535The @code{setuid-programs} field of an @code{operating-system}
8536declaration contains a list of G-expressions denoting the names of
8537programs to be setuid-root (@pxref{Using the Configuration System}).
8538For instance, the @command{passwd} program, which is part of the Shadow
8539package, can be designated by this G-expression (@pxref{G-Expressions}):
8540
8541@example
8542#~(string-append #$shadow "/bin/passwd")
8543@end example
8544
8545A default set of setuid programs is defined by the
8546@code{%setuid-programs} variable of the @code{(gnu system)} module.
8547
8548@defvr {Scheme Variable} %setuid-programs
8549A list of G-expressions denoting common programs that are setuid-root.
8550
8551The list includes commands such as @command{passwd}, @command{ping},
8552@command{su}, and @command{sudo}.
8553@end defvr
8554
8555Under the hood, the actual setuid programs are created in the
8556@file{/run/setuid-programs} directory at system activation time. The
8557files in this directory refer to the ``real'' binaries, which are in the
8558store.
8559
efb5e833
LC
8560@node X.509 Certificates
8561@subsection X.509 Certificates
8562
8563@cindex HTTPS, certificates
8564@cindex X.509 certificates
8565@cindex TLS
8566Web servers available over HTTPS (that is, HTTP over the transport-layer
8567security mechanism, TLS) send client programs an @dfn{X.509 certificate}
8568that the client can then use to @emph{authenticate} the server. To do
8569that, clients verify that the server's certificate is signed by a
8570so-called @dfn{certificate authority} (CA). But to verify the CA's
8571signature, clients must have first acquired the CA's certificate.
8572
8573Web browsers such as GNU@tie{}IceCat include their own set of CA
8574certificates, such that they are able to verify CA signatures
8575out-of-the-box.
8576
8577However, most other programs that can talk HTTPS---@command{wget},
8578@command{git}, @command{w3m}, etc.---need to be told where CA
8579certificates can be found.
8580
8581@cindex @code{nss-certs}
8582In GuixSD, this is done by adding a package that provides certificates
8583to the @code{packages} field of the @code{operating-system} declaration
8584(@pxref{operating-system Reference}). GuixSD includes one such package,
8585@code{nss-certs}, which is a set of CA certificates provided as part of
8586Mozilla's Network Security Services.
8587
8588Note that it is @emph{not} part of @var{%base-packages}, so you need to
8589explicitly add it. The @file{/etc/ssl/certs} directory, which is where
8590most applications and libraries look for certificates by default, points
8591to the certificates installed globally.
8592
8593Unprivileged users can also install their own certificate package in
8594their profile. A number of environment variables need to be defined so
8595that applications and libraries know where to find them. Namely, the
8596OpenSSL library honors the @code{SSL_CERT_DIR} and @code{SSL_CERT_FILE}
8597variables. Some applications add their own environment variables; for
8598instance, the Git version control system honors the certificate bundle
8599pointed to by the @code{GIT_SSL_CAINFO} environment variable.
8600
8601
996ed739
LC
8602@node Name Service Switch
8603@subsection Name Service Switch
8604
8605@cindex name service switch
8606@cindex NSS
8607The @code{(gnu system nss)} module provides bindings to the
8608configuration file of libc's @dfn{name service switch} or @dfn{NSS}
8609(@pxref{NSS Configuration File,,, libc, The GNU C Library Reference
8610Manual}). In a nutshell, the NSS is a mechanism that allows libc to be
8611extended with new ``name'' lookup methods for system databases, which
8612includes host names, service names, user accounts, and more (@pxref{Name
8613Service Switch, System Databases and Name Service Switch,, libc, The GNU
8614C Library Reference Manual}).
8615
8616The NSS configuration specifies, for each system database, which lookup
8617method is to be used, and how the various methods are chained
8618together---for instance, under which circumstances NSS should try the
8619next method in the list. The NSS configuration is given in the
8620@code{name-service-switch} field of @code{operating-system} declarations
8621(@pxref{operating-system Reference, @code{name-service-switch}}).
8622
4c9050c6
LC
8623@cindex nss-mdns
8624@cindex .local, host name lookup
996ed739 8625As an example, the declaration below configures the NSS to use the
4c9050c6
LC
8626@uref{http://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns}
8627back-end}, which supports host name lookups over multicast DNS (mDNS)
8628for host names ending in @code{.local}:
996ed739
LC
8629
8630@example
8631(name-service-switch
8632 (hosts (list %files ;first, check /etc/hosts
8633
8634 ;; If the above did not succeed, try
8635 ;; with 'mdns_minimal'.
8636 (name-service
8637 (name "mdns_minimal")
8638
8639 ;; 'mdns_minimal' is authoritative for
8640 ;; '.local'. When it returns "not found",
8641 ;; no need to try the next methods.
8642 (reaction (lookup-specification
8643 (not-found => return))))
8644
8645 ;; Then fall back to DNS.
8646 (name-service
8647 (name "dns"))
8648
8649 ;; Finally, try with the "full" 'mdns'.
8650 (name-service
8651 (name "mdns")))))
8652@end example
8653
15137a29
LC
8654Don't worry: the @code{%mdns-host-lookup-nss} variable (see below)
8655contains this configuration, so you won't have to type it if all you
8656want is to have @code{.local} host lookup working.
8657
4c9050c6
LC
8658Note that, in this case, in addition to setting the
8659@code{name-service-switch} of the @code{operating-system} declaration,
cc9c1f39
LC
8660you also need to use @code{avahi-service} (@pxref{Networking Services,
8661@code{avahi-service}}), or @var{%desktop-services}, which includes it
8662(@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible
8663to the name service cache daemon (@pxref{Base Services,
8664@code{nscd-service}}).
15137a29
LC
8665
8666For convenience, the following variables provide typical NSS
8667configurations.
8668
8669@defvr {Scheme Variable} %default-nss
8670This is the default name service switch configuration, a
8671@code{name-service-switch} object.
8672@end defvr
8673
8674@defvr {Scheme Variable} %mdns-host-lookup-nss
8675This is the name service switch configuration with support for host name
8676lookup over multicast DNS (mDNS) for host names ending in @code{.local}.
8677@end defvr
4c9050c6 8678
996ed739
LC
8679The reference for name service switch configuration is given below. It
8680is a direct mapping of the C library's configuration file format, so
8681please refer to the C library manual for more information (@pxref{NSS
8682Configuration File,,, libc, The GNU C Library Reference Manual}).
8683Compared to libc's NSS configuration file format, it has the advantage
8684not only of adding this warm parenthetic feel that we like, but also
8685static checks: you'll know about syntax errors and typos as soon as you
8686run @command{guix system}.
8687
996ed739
LC
8688@deftp {Data Type} name-service-switch
8689
8690This is the data type representation the configuration of libc's name
8691service switch (NSS). Each field below represents one of the supported
8692system databases.
8693
8694@table @code
8695@item aliases
8696@itemx ethers
8697@itemx group
8698@itemx gshadow
8699@itemx hosts
8700@itemx initgroups
8701@itemx netgroup
8702@itemx networks
8703@itemx password
8704@itemx public-key
8705@itemx rpc
8706@itemx services
8707@itemx shadow
8708The system databases handled by the NSS. Each of these fields must be a
8709list of @code{<name-service>} objects (see below.)
8710@end table
8711@end deftp
8712
8713@deftp {Data Type} name-service
8714
8715This is the data type representing an actual name service and the
8716associated lookup action.
8717
8718@table @code
8719@item name
8720A string denoting the name service (@pxref{Services in the NSS
8721configuration,,, libc, The GNU C Library Reference Manual}).
8722
4aee6e60
LC
8723Note that name services listed here must be visible to nscd. This is
8724achieved by passing the @code{#:name-services} argument to
8725@code{nscd-service} the list of packages providing the needed name
8726services (@pxref{Base Services, @code{nscd-service}}).
8727
996ed739
LC
8728@item reaction
8729An action specified using the @code{lookup-specification} macro
8730(@pxref{Actions in the NSS configuration,,, libc, The GNU C Library
8731Reference Manual}). For example:
8732
8733@example
8734(lookup-specification (unavailable => continue)
8735 (success => return))
8736@end example
8737@end table
8738@end deftp
0ae8c15a 8739
fd1b1fa2
LC
8740@node Initial RAM Disk
8741@subsection Initial RAM Disk
8742
8743@cindex initial RAM disk (initrd)
8744@cindex initrd (initial RAM disk)
8745For bootstrapping purposes, the Linux-Libre kernel is passed an
8746@dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary
8747root file system, as well as an initialization script. The latter is
8748responsible for mounting the real root file system, and for loading any
8749kernel modules that may be needed to achieve that.
8750
8751The @code{initrd} field of an @code{operating-system} declaration allows
8752you to specify which initrd you would like to use. The @code{(gnu
8753system linux-initrd)} module provides two ways to build an initrd: the
8754high-level @code{base-initrd} procedure, and the low-level
8755@code{expression->initrd} procedure.
8756
8757The @code{base-initrd} procedure is intended to cover most common uses.
8758For example, if you want to add a bunch of kernel modules to be loaded
8759at boot time, you can define the @code{initrd} field of the operating
8760system declaration like this:
8761
8762@example
52ac153e 8763(initrd (lambda (file-systems . rest)
027981d6
LC
8764 ;; Create a standard initrd that has modules "foo.ko"
8765 ;; and "bar.ko", as well as their dependencies, in
8766 ;; addition to the modules available by default.
52ac153e 8767 (apply base-initrd file-systems
027981d6 8768 #:extra-modules '("foo" "bar")
52ac153e 8769 rest)))
fd1b1fa2
LC
8770@end example
8771
52ac153e
LC
8772The @code{base-initrd} procedure also handles common use cases that
8773involves using the system as a QEMU guest, or as a ``live'' system whose
8774root file system is volatile.
fd1b1fa2
LC
8775
8776@deffn {Monadic Procedure} base-initrd @var{file-systems} @
8777 [#:qemu-networking? #f] [#:virtio? #f] [#:volatile-root? #f] @
52ac153e 8778 [#:extra-modules '()] [#:mapped-devices '()]
fd1b1fa2
LC
8779Return a monadic derivation that builds a generic initrd. @var{file-systems} is
8780a list of file-systems to be mounted by the initrd, possibly in addition to
8781the root file system specified on the kernel command line via @code{--root}.
52ac153e
LC
8782@var{mapped-devices} is a list of device mappings to realize before
8783@var{file-systems} are mounted (@pxref{Mapped Devices}).
fd1b1fa2
LC
8784
8785When @var{qemu-networking?} is true, set up networking with the standard QEMU
8786parameters. When @var{virtio?} is true, load additional modules so the initrd can
8787be used as a QEMU guest with para-virtualized I/O drivers.
8788
8789When @var{volatile-root?} is true, the root file system is writable but any changes
8790to it are lost.
8791
8792The initrd is automatically populated with all the kernel modules necessary
8793for @var{file-systems} and for the given options. However, additional kernel
8794modules can be listed in @var{extra-modules}. They will be added to the initrd, and
8795loaded at boot time in the order in which they appear.
8796@end deffn
8797
8798Needless to say, the initrds we produce and use embed a
8799statically-linked Guile, and the initialization program is a Guile
8800program. That gives a lot of flexibility. The
8801@code{expression->initrd} procedure builds such an initrd, given the
8802program to run in that initrd.
8803
8804@deffn {Monadic Procedure} expression->initrd @var{exp} @
8805 [#:guile %guile-static-stripped] [#:name "guile-initrd"] @
42d10464 8806 [#:modules '()]
fd1b1fa2
LC
8807Return a derivation that builds a Linux initrd (a gzipped cpio archive)
8808containing @var{guile} and that evaluates @var{exp}, a G-expression,
df650fa8
LC
8809upon booting. All the derivations referenced by @var{exp} are
8810automatically copied to the initrd.
fd1b1fa2 8811
42d10464
LC
8812@var{modules} is a list of Guile module names to be embedded in the
8813initrd.
fd1b1fa2
LC
8814@end deffn
8815
88faf933
LC
8816@node GRUB Configuration
8817@subsection GRUB Configuration
8818
8819@cindex GRUB
8820@cindex boot loader
8821
8822The operating system uses GNU@tie{}GRUB as its boot loader
8823(@pxref{Overview, overview of GRUB,, grub, GNU GRUB Manual}). It is
8824configured using @code{grub-configuration} declarations. This data type
8825is exported by the @code{(gnu system grub)} module, and described below.
8826
8827@deftp {Data Type} grub-configuration
8828The type of a GRUB configuration declaration.
8829
8830@table @asis
8831
8832@item @code{device}
8833This is a string denoting the boot device. It must be a device name
8834understood by the @command{grub-install} command, such as
8835@code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub,
8836GNU GRUB Manual}).
8837
8838@item @code{menu-entries} (default: @code{()})
8839A possibly empty list of @code{menu-entry} objects (see below), denoting
8840entries to appear in the GRUB boot menu, in addition to the current
8841system entry and the entry pointing to previous system generations.
8842
8843@item @code{default-entry} (default: @code{0})
8844The index of the default boot menu entry. Index 0 is for the current
8845system's entry.
8846
8847@item @code{timeout} (default: @code{5})
8848The number of seconds to wait for keyboard input before booting. Set to
88490 to boot immediately, and to -1 to wait indefinitely.
8850
8851@item @code{theme} (default: @var{%default-theme})
8852The @code{grub-theme} object describing the theme to use.
8853@end table
8854
8855@end deftp
8856
8857Should you want to list additional boot menu entries @i{via} the
8858@code{menu-entries} field above, you will need to create them with the
8859@code{menu-entry} form:
8860
8861@deftp {Data Type} menu-entry
8862The type of an entry in the GRUB boot menu.
8863
8864@table @asis
8865
8866@item @code{label}
35ed9306 8867The label to show in the menu---e.g., @code{"GNU"}.
88faf933
LC
8868
8869@item @code{linux}
8870The Linux kernel to boot.
8871
8872@item @code{linux-arguments} (default: @code{()})
8873The list of extra Linux kernel command-line arguments---e.g.,
8874@code{("console=ttyS0")}.
8875
8876@item @code{initrd}
8877A G-Expression or string denoting the file name of the initial RAM disk
8878to use (@pxref{G-Expressions}).
8879
8880@end table
8881@end deftp
8882
8883@c FIXME: Write documentation once it's stable.
8884Themes are created using the @code{grub-theme} form, which is not
8885documented yet.
8886
8887@defvr {Scheme Variable} %default-theme
8888This is the default GRUB theme used by the operating system, with a
8889fancy background image displaying the GNU and Guix logos.
8890@end defvr
8891
8892
cf4a9129
LC
8893@node Invoking guix system
8894@subsection Invoking @code{guix system}
0918e64a 8895
cf4a9129
LC
8896Once you have written an operating system declaration, as seen in the
8897previous section, it can be @dfn{instantiated} using the @command{guix
8898system} command. The synopsis is:
4af2447e 8899
cf4a9129
LC
8900@example
8901guix system @var{options}@dots{} @var{action} @var{file}
8902@end example
4af2447e 8903
cf4a9129
LC
8904@var{file} must be the name of a file containing an
8905@code{operating-system} declaration. @var{action} specifies how the
8906operating system is instantiate. Currently the following values are
8907supported:
4af2447e 8908
cf4a9129
LC
8909@table @code
8910@item reconfigure
8911Build the operating system described in @var{file}, activate it, and
8912switch to it@footnote{This action is usable only on systems already
65797bff 8913running GuixSD.}.
4af2447e 8914
cf4a9129
LC
8915This effects all the configuration specified in @var{file}: user
8916accounts, system services, global package list, setuid programs, etc.
4af2447e 8917
cf4a9129
LC
8918It also adds a GRUB menu entry for the new OS configuration, and moves
8919entries for older configurations to a submenu---unless
8920@option{--no-grub} is passed.
4af2447e 8921
bf2479c7
LC
8922@c The paragraph below refers to the problem discussed at
8923@c <http://lists.gnu.org/archive/html/guix-devel/2014-08/msg00057.html>.
8924It is highly recommended to run @command{guix pull} once before you run
8925@command{guix system reconfigure} for the first time (@pxref{Invoking
8926guix pull}). Failing to do that you would see an older version of Guix
8927once @command{reconfigure} has completed.
8928
cf4a9129
LC
8929@item build
8930Build the operating system's derivation, which includes all the
8931configuration files and programs needed to boot and run the system.
8932This action does not actually install anything.
113daf62 8933
cf4a9129
LC
8934@item init
8935Populate the given directory with all the files necessary to run the
8936operating system specified in @var{file}. This is useful for first-time
4705641f 8937installations of GuixSD. For instance:
113daf62
LC
8938
8939@example
cf4a9129 8940guix system init my-os-config.scm /mnt
113daf62
LC
8941@end example
8942
cf4a9129
LC
8943copies to @file{/mnt} all the store items required by the configuration
8944specified in @file{my-os-config.scm}. This includes configuration
8945files, packages, and so on. It also creates other essential files
8946needed for the system to operate correctly---e.g., the @file{/etc},
8947@file{/var}, and @file{/run} directories, and the @file{/bin/sh} file.
113daf62 8948
cf4a9129
LC
8949This command also installs GRUB on the device specified in
8950@file{my-os-config}, unless the @option{--no-grub} option was passed.
113daf62 8951
cf4a9129
LC
8952@item vm
8953@cindex virtual machine
0276f697 8954@cindex VM
f535dcbe 8955@anchor{guix system vm}
cf4a9129
LC
8956Build a virtual machine that contain the operating system declared in
8957@var{file}, and return a script to run that virtual machine (VM).
810568b3 8958Arguments given to the script are passed as is to QEMU.
113daf62 8959
cf4a9129 8960The VM shares its store with the host system.
113daf62 8961
0276f697
LC
8962Additional file systems can be shared between the host and the VM using
8963the @code{--share} and @code{--expose} command-line options: the former
8964specifies a directory to be shared with write access, while the latter
8965provides read-only access to the shared directory.
8966
8967The example below creates a VM in which the user's home directory is
8968accessible read-only, and where the @file{/exchange} directory is a
8969read-write mapping of the host's @file{$HOME/tmp}:
8970
8971@example
8972guix system vm my-config.scm \
8973 --expose=$HOME --share=$HOME/tmp=/exchange
8974@end example
8975
6aa260af
LC
8976On GNU/Linux, the default is to boot directly to the kernel; this has
8977the advantage of requiring only a very tiny root disk image since the
8978host's store can then be mounted.
8979
8980The @code{--full-boot} option forces a complete boot sequence, starting
8981with the bootloader. This requires more disk space since a root image
8982containing at least the kernel, initrd, and bootloader data files must
8983be created. The @code{--image-size} option can be used to specify the
8984image's size.
ab11f0be 8985
cf4a9129
LC
8986@item vm-image
8987@itemx disk-image
8988Return a virtual machine or disk image of the operating system declared
8989in @var{file} that stands alone. Use the @option{--image-size} option
8990to specify the size of the image.
113daf62 8991
cf4a9129
LC
8992When using @code{vm-image}, the returned image is in qcow2 format, which
8993the QEMU emulator can efficiently use.
113daf62 8994
cf4a9129
LC
8995When using @code{disk-image}, a raw disk image is produced; it can be
8996copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is
8997the device corresponding to a USB stick, one can copy the image on it
8998using the following command:
113daf62 8999
cf4a9129
LC
9000@example
9001# dd if=$(guix system disk-image my-os.scm) of=/dev/sdc
9002@end example
113daf62 9003
1c8a81b1
DT
9004@item container
9005Return a script to run the operating system declared in @var{file}
9006within a container. Containers are a set of lightweight isolation
9007mechanisms provided by the kernel Linux-libre. Containers are
9008substantially less resource-demanding than full virtual machines since
9009the kernel, shared objects, and other resources can be shared with the
9010host system; this also means they provide thinner isolation.
9011
9012Currently, the script must be run as root in order to support more than
9013a single user and group. The container shares its store with the host
9014system.
9015
9016As with the @code{vm} action (@pxref{guix system vm}), additional file
9017systems to be shared between the host and container can be specified
9018using the @option{--share} and @option{--expose} options:
9019
9020@example
9021guix system container my-config.scm \
9022 --expose=$HOME --share=$HOME/tmp=/exchange
9023@end example
9024
0f252e26 9025@quotation Note
cfd35b4e 9026This option requires Linux-libre 3.19 or newer.
0f252e26
DT
9027@end quotation
9028
cf4a9129 9029@end table
113daf62 9030
cf4a9129
LC
9031@var{options} can contain any of the common build options provided by
9032@command{guix build} (@pxref{Invoking guix build}). In addition,
9033@var{options} can contain one of the following:
113daf62 9034
cf4a9129
LC
9035@table @option
9036@item --system=@var{system}
9037@itemx -s @var{system}
9038Attempt to build for @var{system} instead of the host's system type.
9039This works as per @command{guix build} (@pxref{Invoking guix build}).
113daf62 9040
f3f427c2
LC
9041@item --derivation
9042@itemx -d
9043Return the derivation file name of the given operating system without
9044building anything.
9045
cf4a9129
LC
9046@item --image-size=@var{size}
9047For the @code{vm-image} and @code{disk-image} actions, create an image
9048of the given @var{size}. @var{size} may be a number of bytes, or it may
4a44d7bb
LC
9049include a unit as a suffix (@pxref{Block size, size specifications,,
9050coreutils, GNU Coreutils}).
db030303
LC
9051
9052@item --on-error=@var{strategy}
9053Apply @var{strategy} when an error occurs when reading @var{file}.
9054@var{strategy} may be one of the following:
9055
9056@table @code
9057@item nothing-special
9058Report the error concisely and exit. This is the default strategy.
9059
9060@item backtrace
9061Likewise, but also display a backtrace.
9062
9063@item debug
9064Report the error and enter Guile's debugger. From there, you can run
9065commands such as @code{,bt} to get a backtrace, @code{,locals} to
9066display local variable values, and more generally inspect the program's
9067state. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for
9068a list of available debugging commands.
9069@end table
113daf62 9070@end table
113daf62 9071
cf4a9129
LC
9072Note that all the actions above, except @code{build} and @code{init},
9073rely on KVM support in the Linux-Libre kernel. Specifically, the
9074machine should have hardware virtualization support, the corresponding
9075KVM kernel module should be loaded, and the @file{/dev/kvm} device node
9076must exist and be readable and writable by the user and by the daemon's
9077build users.
8451a568 9078
65797bff
LC
9079Once you have built, configured, re-configured, and re-re-configured
9080your GuixSD installation, you may find it useful to list the operating
9081system generations available on disk---and that you can choose from the
9082GRUB boot menu:
9083
9084@table @code
9085
9086@item list-generations
9087List a summary of each generation of the operating system available on
9088disk, in a human-readable way. This is similar to the
9089@option{--list-generations} option of @command{guix package}
9090(@pxref{Invoking guix package}).
9091
9092Optionally, one can specify a pattern, with the same syntax that is used
9093in @command{guix package --list-generations}, to restrict the list of
9094generations displayed. For instance, the following command displays
9095generations up to 10-day old:
9096
9097@example
9098$ guix system list-generations 10d
9099@end example
9100
9101@end table
9102
d6c3267a
LC
9103The @command{guix system} command has even more to offer! The following
9104sub-commands allow you to visualize how your system services relate to
9105each other:
9106
9107@anchor{system-extension-graph}
9108@table @code
9109
9110@item extension-graph
9111Emit in Dot/Graphviz format to standard output the @dfn{service
9112extension graph} of the operating system defined in @var{file}
9113(@pxref{Service Composition}, for more information on service
9114extensions.)
9115
9116The command:
9117
9118@example
9119$ guix system extension-graph @var{file} | dot -Tpdf > services.pdf
9120@end example
9121
9122produces a PDF file showing the extension relations among services.
9123
6f305ea5
LC
9124@anchor{system-dmd-graph}
9125@item dmd-graph
9126Emit in Dot/Graphviz format to standard output the @dfn{dependency
9127graph} of dmd services of the operating system defined in @var{file}.
9128@xref{dmd Services}, for more information and for an example graph.
9129
d6c3267a
LC
9130@end table
9131
9132
cf4a9129
LC
9133@node Defining Services
9134@subsection Defining Services
8451a568 9135
eb524192 9136The previous sections show the available services and how one can combine
0adfe95a
LC
9137them in an @code{operating-system} declaration. But how do we define
9138them in the first place? And what is a service anyway?
8451a568 9139
0adfe95a
LC
9140@menu
9141* Service Composition:: The model for composing services.
9142* Service Types and Services:: Types and services.
9143* Service Reference:: API reference.
9144* dmd Services:: A particular type of service.
9145@end menu
9146
9147@node Service Composition
9148@subsubsection Service Composition
9149
9150@cindex services
9151@cindex daemons
9152Here we define a @dfn{service} as, broadly, something that extends the
9153operating system's functionality. Often a service is a process---a
9154@dfn{daemon}---started when the system boots: a secure shell server, a
9155Web server, the Guix build daemon, etc. Sometimes a service is a daemon
9156whose execution can be triggered by another daemon---e.g., an FTP server
9157started by @command{inetd} or a D-Bus service activated by
9158@command{dbus-daemon}. Occasionally, a service does not map to a
9159daemon. For instance, the ``account'' service collects user accounts
9160and makes sure they exist when the system runs; the ``udev'' service
9161collects device management rules and makes them available to the eudev
9162daemon; the @file{/etc} service populates the system's @file{/etc}
9163directory.
9164
d6c3267a 9165@cindex service extensions
0adfe95a
LC
9166GuixSD services are connected by @dfn{extensions}. For instance, the
9167secure shell service @emph{extends} dmd---GuixSD's initialization system,
9168running as PID@tie{}1---by giving it the command lines to start and stop
9169the secure shell daemon (@pxref{Networking Services,
9170@code{lsh-service}}); the UPower service extends the D-Bus service by
9171passing it its @file{.service} specification, and extends the udev
9172service by passing it device management rules (@pxref{Desktop Services,
9173@code{upower-service}}); the Guix daemon service extends dmd by passing
9174it the command lines to start and stop the daemon, and extends the
9175account service by passing it a list of required build user accounts
9176(@pxref{Base Services}).
9177
9178All in all, services and their ``extends'' relations form a directed
9179acyclic graph (DAG). If we represent services as boxes and extensions
9180as arrows, a typical system might provide something like this:
9181
9182@image{images/service-graph,,5in,Typical service extension graph.}
9183
d62e201c
LC
9184@cindex system service
9185At the bottom, we see the @dfn{system service}, which produces the
9186directory containing everything to run and boot the system, as returned
9187by the @command{guix system build} command. @xref{Service Reference},
9188to learn about the other service types shown here.
d6c3267a
LC
9189@xref{system-extension-graph, the @command{guix system extension-graph}
9190command}, for information on how to generate this representation for a
9191particular operating system definition.
0adfe95a
LC
9192
9193@cindex service types
9194Technically, developers can define @dfn{service types} to express these
9195relations. There can be any number of services of a given type on the
9196system---for instance, a system running two instances of the GNU secure
9197shell server (lsh) has two instances of @var{lsh-service-type}, with
9198different parameters.
9199
9200The following section describes the programming interface for service
9201types and services.
9202
9203@node Service Types and Services
9204@subsubsection Service Types and Services
9205
9206A @dfn{service type} is a node in the DAG described above. Let us start
9207with a simple example, the service type for the Guix build daemon
9208(@pxref{Invoking guix-daemon}):
9209
9210@example
9211(define guix-service-type
9212 (service-type
9213 (name 'guix)
9214 (extensions
9215 (list (service-extension dmd-root-service-type guix-dmd-service)
9216 (service-extension account-service-type guix-accounts)
9217 (service-extension activation-service-type guix-activation)))))
9218@end example
8451a568 9219
cf4a9129 9220@noindent
0adfe95a
LC
9221It defines a two things:
9222
9223@enumerate
9224@item
9225A name, whose sole purpose is to make inspection and debugging easier.
9226
9227@item
9228A list of @dfn{service extensions}, where each extension designates the
9229target service type and a procedure that, given the service's
9230parameters, returns a list of object to extend the service of that type.
9231
9232Every service type has at least one service extension. The only
9233exception is the @dfn{boot service type}, which is the ultimate service.
9234@end enumerate
9235
9236In this example, @var{guix-service-type} extends three services:
9237
9238@table @var
9239@item dmd-root-service-type
9240The @var{guix-dmd-service} procedure defines how the dmd service is
9241extended. Namely, it returns a @code{<dmd-service>} object that defines
9242how @command{guix-daemon} is started and stopped (@pxref{dmd Services}).
9243
9244@item account-service-type
9245This extension for this service is computed by @var{guix-accounts},
9246which returns a list of @code{user-group} and @code{user-account}
9247objects representing the build user accounts (@pxref{Invoking
9248guix-daemon}).
9249
9250@item activation-service-type
9251Here @var{guix-activation} is a procedure that returns a gexp, which is
9252a code snippet to run at ``activation time''---e.g., when the service is
9253booted.
9254@end table
9255
9256A service of this type is instantiated like this:
9257
9258@example
9259(service guix-service-type
9260 (guix-configuration
9261 (build-accounts 5)
9262 (use-substitutes? #f)))
9263@end example
9264
9265The second argument to the @code{service} form is a value representing
9266the parameters of this specific service instance.
9267@xref{guix-configuration-type, @code{guix-configuration}}, for
9268information about the @code{guix-configuration} data type.
9269
9270@var{guix-service-type} is quite simple because it extends other
9271services but is not extensible itself.
9272
9273@c @subsubsubsection Extensible Service Types
9274
9275The service type for an @emph{extensible} service looks like this:
9276
9277@example
9278(define udev-service-type
9279 (service-type (name 'udev)
9280 (extensions
9281 (list (service-extension dmd-root-service-type
9282 udev-dmd-service)))
9283
9284 (compose concatenate) ;concatenate the list of rules
9285 (extend (lambda (config rules)
9286 (match config
9287 (($ <udev-configuration> udev initial-rules)
9288 (udev-configuration
9289 (udev udev) ;the udev package to use
9290 (rules (append initial-rules rules)))))))))
9291@end example
9292
9293This is the service type for the
9294@uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device
9295management daemon}. Compared to the previous example, in addition to an
9296extension of @var{dmd-root-service-type}, we see two new fields:
9297
9298@table @code
9299@item compose
9300This is the procedure to @dfn{compose} the list of extensions to
9301services of this type.
9302
9303Services can extend the udev service by passing it lists of rules; we
9304compose those extensions simply by concatenating them.
9305
9306@item extend
9307This procedure defines how the service's value is @dfn{extended} with
9308the composition of the extensions.
9309
9310Udev extensions are composed into a list of rules, but the udev service
9311value is itself a @code{<udev-configuration>} record. So here, we
9312extend that record by appending the list of rules is contains to the
9313list of contributed rules.
9314@end table
9315
9316There can be only one instance of an extensible service type such as
9317@var{udev-service-type}. If there were more, the
9318@code{service-extension} specifications would be ambiguous.
9319
9320Still here? The next section provides a reference of the programming
9321interface for services.
9322
9323@node Service Reference
9324@subsubsection Service Reference
9325
9326We have seen an overview of service types (@pxref{Service Types and
9327Services}). This section provides a reference on how to manipulate
9328services and service types. This interface is provided by the
9329@code{(gnu services)} module.
9330
9331@deffn {Scheme Procedure} service @var{type} @var{value}
9332Return a new service of @var{type}, a @code{<service-type>} object (see
9333below.) @var{value} can be any object; it represents the parameters of
9334this particular service instance.
9335@end deffn
9336
9337@deffn {Scheme Procedure} service? @var{obj}
9338Return true if @var{obj} is a service.
9339@end deffn
8451a568 9340
0adfe95a
LC
9341@deffn {Scheme Procedure} service-kind @var{service}
9342Return the type of @var{service}---i.e., a @code{<service-type>} object.
9343@end deffn
9344
9345@deffn {Scheme Procedure} service-parameters @var{service}
9346Return the value associated with @var{service}. It represents its
9347parameters.
9348@end deffn
9349
9350Here is an example of how a service is created and manipulated:
9351
9352@example
9353(define s
9354 (service nginx-service-type
9355 (nginx-configuration
9356 (nginx nginx)
9357 (log-directory log-directory)
9358 (run-directory run-directory)
9359 (file config-file))))
9360
9361(service? s)
9362@result{} #t
9363
9364(eq? (service-kind s) nginx-service-type)
9365@result{} #t
9366@end example
9367
cd6f6c22
LC
9368The @code{modify-services} form provides a handy way to change the
9369parameters of some of the services of a list such as
9370@var{%base-services} (@pxref{Base Services, @code{%base-services}}). Of
9371course, you could always use standard list combinators such as
9372@code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,,
9373guile, GNU Guile Reference Manual}); @code{modify-services} simply
9374provides a more concise form for this common pattern.
9375
9376@deffn {Scheme Syntax} modify-services @var{services} @
9377 (@var{type} @var{variable} => @var{body}) @dots{}
9378
9379Modify the services listed in @var{services} according to the given
9380clauses. Each clause has the form:
9381
9382@example
9383(@var{type} @var{variable} => @var{body})
9384@end example
9385
9386where @var{type} is a service type, such as @var{guix-service-type}, and
9387@var{variable} is an identifier that is bound within @var{body} to the
9388value of the service of that @var{type}. @xref{Using the Configuration
9389System}, for an example.
9390
9391This is a shorthand for:
9392
9393@example
9394(map (lambda (service) @dots{}) @var{services})
9395@end example
9396@end deffn
9397
9398Next comes the programming interface for service types. This is
9399something you want to know when writing new service definitions, but not
9400necessarily when simply looking for ways to customize your
9401@code{operating-system} declaration.
9402
0adfe95a
LC
9403@deftp {Data Type} service-type
9404@cindex service type
9405This is the representation of a @dfn{service type} (@pxref{Service Types
9406and Services}).
9407
9408@table @asis
9409@item @code{name}
9410This is a symbol, used only to simplify inspection and debugging.
9411
9412@item @code{extensions}
9413A non-empty list of @code{<service-extension>} objects (see below.)
9414
9415@item @code{compose} (default: @code{#f})
9416If this is @code{#f}, then the service type denotes services that cannot
9417be extended---i.e., services that do not receive ``values'' from other
9418services.
9419
9420Otherwise, it must be a one-argument procedure. The procedure is called
9421by @code{fold-services} and is passed a list of values collected from
9422extensions. It must return a value that is a valid parameter value for
9423the service instance.
9424
9425@item @code{extend} (default: @code{#f})
9426If this is @code{#f}, services of this type cannot be extended.
9427
9428Otherwise, it must be a two-argument procedure: @code{fold-services}
9429calls it, passing it the service's initial value as the first argument
9430and the result of applying @code{compose} to the extension values as the
9431second argument.
9432@end table
9433
9434@xref{Service Types and Services}, for examples.
9435@end deftp
9436
9437@deffn {Scheme Procedure} service-extension @var{target-type} @
9438 @var{compute}
9439Return a new extension for services of type @var{target-type}.
9440@var{compute} must be a one-argument procedure: @code{fold-services}
9441calls it, passing it the value associated with the service that provides
9442the extension; it must return a valid value for the target service.
9443@end deffn
9444
9445@deffn {Scheme Procedure} service-extension? @var{obj}
9446Return true if @var{obj} is a service extension.
9447@end deffn
9448
9449At the core of the service abstraction lies the @code{fold-services}
9450procedure, which is responsible for ``compiling'' a list of services
d62e201c
LC
9451down to a single directory that contains everything needed to boot and
9452run the system---the directory shown by the @command{guix system build}
9453command (@pxref{Invoking guix system}). In essence, it propagates
9454service extensions down the service graph, updating each node parameters
9455on the way, until it reaches the root node.
0adfe95a
LC
9456
9457@deffn {Scheme Procedure} fold-services @var{services} @
d62e201c 9458 [#:target-type @var{system-service-type}]
0adfe95a
LC
9459Fold @var{services} by propagating their extensions down to the root of
9460type @var{target-type}; return the root service adjusted accordingly.
9461@end deffn
9462
9463Lastly, the @code{(gnu services)} module also defines several essential
9464service types, some of which are listed below.
9465
d62e201c
LC
9466@defvr {Scheme Variable} system-service-type
9467This is the root of the service graph. It produces the system directory
9468as returned by the @command{guix system build} command.
9469@end defvr
9470
0adfe95a 9471@defvr {Scheme Variable} boot-service-type
d62e201c
LC
9472The type of the ``boot service'', which produces the @dfn{boot script}.
9473The boot script is what the initial RAM disk runs when booting.
0adfe95a
LC
9474@end defvr
9475
9476@defvr {Scheme Variable} etc-service-type
9477The type of the @file{/etc} service. This service can be extended by
9478passing it name/file tuples such as:
9479
9480@example
9481(list `("issue" ,(plain-file "issue" "Welcome!\n")))
9482@end example
9483
9484In this example, the effect would be to add an @file{/etc/issue} file
9485pointing to the given file.
9486@end defvr
9487
9488@defvr {Scheme Variable} setuid-program-service-type
9489Type for the ``setuid-program service''. This service collects lists of
9490executable file names, passed as gexps, and adds them to the set of
9491setuid-root programs on the system (@pxref{Setuid Programs}).
9492@end defvr
9493
af4c3fd5
LC
9494@defvr {Scheme Variable} profile-service-type
9495Type of the service that populates the @dfn{system profile}---i.e., the
9496programs under @file{/run/current-system/profile}. Other services can
9497extend it by passing it lists of packages to add to the system profile.
9498@end defvr
9499
0adfe95a
LC
9500
9501@node dmd Services
9502@subsubsection dmd Services
9503
9504@cindex PID 1
9505@cindex init system
9506The @code{(gnu services dmd)} provides a way to define services managed
9507by GNU@tie{}dmd, which is GuixSD initialization system---the first
9508process that is started when the system boots, aka. PID@tie{}1
6f305ea5
LC
9509(@pxref{Introduction,,, dmd, GNU dmd Manual}).
9510
9511Services in dmd can depend on each other. For instance, the SSH daemon
9512may need to be started after the syslog daemon has been started, which
9513in turn can only happen once all the file systems have been mounted.
9514The simple operating system defined earlier (@pxref{Using the
9515Configuration System}) results in a service graph like this:
9516
9517@image{images/dmd-graph,,5in,Typical dmd service graph.}
9518
9519You can actually generate such a graph for any operating system
9520definition using the @command{guix system dmd-graph} command
9521(@pxref{system-dmd-graph, @command{guix system dmd-graph}}).
9522
9523The @var{%dmd-root-service} is a service object representing PID@tie{}1,
9524of type @var{dmd-root-service-type}; it can be extended by passing it
9525lists of @code{<dmd-service>} objects.
0adfe95a
LC
9526
9527@deftp {Data Type} dmd-service
9528The data type representing a service managed by dmd.
9529
9530@table @asis
9531@item @code{provision}
9532This is a list of symbols denoting what the service provides.
9533
9534These are the names that may be passed to @command{deco start},
9535@command{deco status}, and similar commands (@pxref{Invoking deco,,,
9536dmd, GNU dmd Manual}). @xref{Slots of services, the @code{provides}
9537slot,, dmd, GNU dmd Manual}, for details.
9538
9539@item @code{requirements} (default: @code{'()})
9540List of symbols denoting the dmd services this one depends on.
9541
9542@item @code{respawn?} (default: @code{#t})
9543Whether to restart the service when it stops, for instance when the
9544underlying process dies.
9545
9546@item @code{start}
9547@itemx @code{stop} (default: @code{#~(const #f)})
cf4a9129
LC
9548The @code{start} and @code{stop} fields refer to dmd's facilities to
9549start and stop processes (@pxref{Service De- and Constructors,,, dmd,
0adfe95a
LC
9550GNU dmd Manual}). They are given as G-expressions that get expanded in
9551the dmd configuration file (@pxref{G-Expressions}).
9552
9553@item @code{documentation}
9554A documentation string, as shown when running:
9555
9556@example
9557deco doc @var{service-name}
9558@end example
9559
9560where @var{service-name} is one of the symbols in @var{provision}
9561(@pxref{Invoking deco,,, dmd, GNU dmd Manual}).
fae685b9
LC
9562
9563@item @code{modules} (default: @var{%default-modules})
9564This is the list of modules that must be in scope when @code{start} and
9565@code{stop} are evaluated.
9566
9567@item @code{imported-modules} (default: @var{%default-imported-modules})
9568This is the list of modules to import in the execution environment of
9569dmd.
9570
0adfe95a
LC
9571@end table
9572@end deftp
9573
9574@defvr {Scheme Variable} dmd-root-service-type
9575The service type for the dmd ``root service''---i.e., PID@tie{}1.
9576
9577This is the service type that extensions target when they want to create
9578dmd services (@pxref{Service Types and Services}, for an example). Each
9579extension must pass a list of @code{<dmd-service>}.
9580@end defvr
9581
9582@defvr {Scheme Variable} %dmd-root-service
9583This service represents PID@tie{}1.
9584@end defvr
8451a568 9585
8451a568 9586
cf4a9129
LC
9587@node Installing Debugging Files
9588@section Installing Debugging Files
8451a568 9589
cf4a9129
LC
9590@cindex debugging files
9591Program binaries, as produced by the GCC compilers for instance, are
9592typically written in the ELF format, with a section containing
9593@dfn{debugging information}. Debugging information is what allows the
9594debugger, GDB, to map binary code to source code; it is required to
9595debug a compiled program in good conditions.
8451a568 9596
cf4a9129
LC
9597The problem with debugging information is that is takes up a fair amount
9598of disk space. For example, debugging information for the GNU C Library
9599weighs in at more than 60 MiB. Thus, as a user, keeping all the
9600debugging info of all the installed programs is usually not an option.
9601Yet, space savings should not come at the cost of an impediment to
9602debugging---especially in the GNU system, which should make it easier
9603for users to exert their computing freedom (@pxref{GNU Distribution}).
8451a568 9604
cf4a9129
LC
9605Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a
9606mechanism that allows users to get the best of both worlds: debugging
9607information can be stripped from the binaries and stored in separate
9608files. GDB is then able to load debugging information from those files,
9609when they are available (@pxref{Separate Debug Files,,, gdb, Debugging
9610with GDB}).
8451a568 9611
cf4a9129
LC
9612The GNU distribution takes advantage of this by storing debugging
9613information in the @code{lib/debug} sub-directory of a separate package
9614output unimaginatively called @code{debug} (@pxref{Packages with
9615Multiple Outputs}). Users can choose to install the @code{debug} output
9616of a package when they need it. For instance, the following command
9617installs the debugging information for the GNU C Library and for GNU
9618Guile:
8451a568
LC
9619
9620@example
cf4a9129 9621guix package -i glibc:debug guile:debug
8451a568
LC
9622@end example
9623
cf4a9129
LC
9624GDB must then be told to look for debug files in the user's profile, by
9625setting the @code{debug-file-directory} variable (consider setting it
9626from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with
9627GDB}):
8451a568 9628
cf4a9129
LC
9629@example
9630(gdb) set debug-file-directory ~/.guix-profile/lib/debug
9631@end example
8451a568 9632
cf4a9129
LC
9633From there on, GDB will pick up debugging information from the
9634@code{.debug} files under @file{~/.guix-profile/lib/debug}.
8451a568 9635
cf4a9129
LC
9636In addition, you will most likely want GDB to be able to show the source
9637code being debugged. To do that, you will have to unpack the source
9638code of the package of interest (obtained with @code{guix build
9639--source}, @pxref{Invoking guix build}), and to point GDB to that source
9640directory using the @code{directory} command (@pxref{Source Path,
9641@code{directory},, gdb, Debugging with GDB}).
8451a568 9642
cf4a9129
LC
9643@c XXX: keep me up-to-date
9644The @code{debug} output mechanism in Guix is implemented by the
9645@code{gnu-build-system} (@pxref{Build Systems}). Currently, it is
9646opt-in---debugging information is available only for those packages
9647whose definition explicitly declares a @code{debug} output. This may be
9648changed to opt-out in the future, if our build farm servers can handle
9649the load. To check whether a package has a @code{debug} output, use
9650@command{guix package --list-available} (@pxref{Invoking guix package}).
8451a568 9651
8451a568 9652
05962f29
LC
9653@node Security Updates
9654@section Security Updates
9655
843858b8
LC
9656@quotation Note
9657As of version @value{VERSION}, the feature described in this section is
9658experimental.
9659@end quotation
05962f29
LC
9660
9661@cindex security updates
9662Occasionally, important security vulnerabilities are discovered in core
9663software packages and must be patched. Guix follows a functional
9664package management discipline (@pxref{Introduction}), which implies
9665that, when a package is changed, @emph{every package that depends on it}
9666must be rebuilt. This can significantly slow down the deployment of
9667fixes in core packages such as libc or Bash, since basically the whole
9668distribution would need to be rebuilt. Using pre-built binaries helps
9669(@pxref{Substitutes}), but deployment may still take more time than
9670desired.
9671
9672@cindex grafts
9673To address that, Guix implements @dfn{grafts}, a mechanism that allows
9674for fast deployment of critical updates without the costs associated
9675with a whole-distribution rebuild. The idea is to rebuild only the
9676package that needs to be patched, and then to ``graft'' it onto packages
9677explicitly installed by the user and that were previously referring to
9678the original package. The cost of grafting is typically very low, and
9679order of magnitudes lower than a full rebuild of the dependency chain.
9680
9681@cindex replacements of packages, for grafts
9682For instance, suppose a security update needs to be applied to Bash.
9683Guix developers will provide a package definition for the ``fixed''
9684Bash, say @var{bash-fixed}, in the usual way (@pxref{Defining
9685Packages}). Then, the original package definition is augmented with a
9686@code{replacement} field pointing to the package containing the bug fix:
9687
9688@example
9689(define bash
9690 (package
9691 (name "bash")
9692 ;; @dots{}
9693 (replacement bash-fixed)))
9694@end example
9695
9696From there on, any package depending directly or indirectly on Bash that
9697is installed will automatically be ``rewritten'' to refer to
9698@var{bash-fixed} instead of @var{bash}. This grafting process takes
9699time proportional to the size of the package, but expect less than a
9700minute for an ``average'' package on a recent machine.
9701
9702Currently, the graft and the package it replaces (@var{bash-fixed} and
9703@var{bash} in the example above) must have the exact same @code{name}
9704and @code{version} fields. This restriction mostly comes from the fact
9705that grafting works by patching files, including binary files, directly.
9706Other restrictions may apply: for instance, when adding a graft to a
9707package providing a shared library, the original shared library and its
9708replacement must have the same @code{SONAME} and be binary-compatible.
9709
9710
cf4a9129
LC
9711@node Package Modules
9712@section Package Modules
8451a568 9713
cf4a9129
LC
9714From a programming viewpoint, the package definitions of the
9715GNU distribution are provided by Guile modules in the @code{(gnu packages
9716@dots{})} name space@footnote{Note that packages under the @code{(gnu
9717packages @dots{})} module name space are not necessarily ``GNU
9718packages''. This module naming scheme follows the usual Guile module
9719naming convention: @code{gnu} means that these modules are distributed
9720as part of the GNU system, and @code{packages} identifies modules that
9721define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile
9722Reference Manual}). For instance, the @code{(gnu packages emacs)}
9723module exports a variable named @code{emacs}, which is bound to a
9724@code{<package>} object (@pxref{Defining Packages}).
113daf62 9725
300868ba 9726The @code{(gnu packages @dots{})} module name space is
cf4a9129
LC
9727automatically scanned for packages by the command-line tools. For
9728instance, when running @code{guix package -i emacs}, all the @code{(gnu
9729packages @dots{})} modules are scanned until one that exports a package
9730object whose name is @code{emacs} is found. This package search
9731facility is implemented in the @code{(gnu packages)} module.
113daf62 9732
300868ba 9733@cindex customization, of packages
8689901f 9734@cindex package module search path
cf4a9129 9735Users can store package definitions in modules with different
60142854 9736names---e.g., @code{(my-packages emacs)}@footnote{Note that the file
c95ded7e
LC
9737name and module name must match. For instance, the @code{(my-packages
9738emacs)} module must be stored in a @file{my-packages/emacs.scm} file
9739relative to the load path specified with @option{--load-path} or
9740@code{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,,
9741guile, GNU Guile Reference Manual}, for details.}. These package definitions
300868ba
LC
9742will not be visible by default. Thus, users can invoke commands such as
9743@command{guix package} and @command{guix build} have to be used with the
c95ded7e
LC
9744@code{-e} option so that they know where to find the package. Better
9745yet, they can use the
300868ba 9746@code{-L} option of these commands to make those modules visible
8689901f
LC
9747(@pxref{Invoking guix build, @code{--load-path}}), or define the
9748@code{GUIX_PACKAGE_PATH} environment variable. This environment
9749variable makes it easy to extend or customize the distribution and is
9750honored by all the user interfaces.
9751
9752@defvr {Environment Variable} GUIX_PACKAGE_PATH
9753This is a colon-separated list of directories to search for package
9754modules. Directories listed in this variable take precedence over the
9755distribution's own modules.
9756@end defvr
ef5dd60a 9757
cf4a9129
LC
9758The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}:
9759each package is built based solely on other packages in the
9760distribution. The root of this dependency graph is a small set of
9761@dfn{bootstrap binaries}, provided by the @code{(gnu packages
9762bootstrap)} module. For more information on bootstrapping,
081145cf 9763@pxref{Bootstrapping}.
ef5dd60a 9764
cf4a9129
LC
9765@node Packaging Guidelines
9766@section Packaging Guidelines
ef5dd60a 9767
cf4a9129
LC
9768The GNU distribution is nascent and may well lack some of your favorite
9769packages. This section describes how you can help make the distribution
9770grow. @xref{Contributing}, for additional information on how you can
9771help.
ef5dd60a 9772
cf4a9129
LC
9773Free software packages are usually distributed in the form of
9774@dfn{source code tarballs}---typically @file{tar.gz} files that contain
9775all the source files. Adding a package to the distribution means
9776essentially two things: adding a @dfn{recipe} that describes how to
9777build the package, including a list of other packages required to build
9778it, and adding @dfn{package meta-data} along with that recipe, such as a
9779description and licensing information.
ef5dd60a 9780
cf4a9129
LC
9781In Guix all this information is embodied in @dfn{package definitions}.
9782Package definitions provide a high-level view of the package. They are
9783written using the syntax of the Scheme programming language; in fact,
9784for each package we define a variable bound to the package definition,
9785and export that variable from a module (@pxref{Package Modules}).
9786However, in-depth Scheme knowledge is @emph{not} a prerequisite for
9787creating packages. For more information on package definitions,
081145cf 9788@pxref{Defining Packages}.
ef5dd60a 9789
cf4a9129
LC
9790Once a package definition is in place, stored in a file in the Guix
9791source tree, it can be tested using the @command{guix build} command
9792(@pxref{Invoking guix build}). For example, assuming the new package is
c71979f4
LC
9793called @code{gnew}, you may run this command from the Guix build tree
9794(@pxref{Running Guix Before It Is Installed}):
ef5dd60a
LC
9795
9796@example
cf4a9129 9797./pre-inst-env guix build gnew --keep-failed
ef5dd60a 9798@end example
ef5dd60a 9799
cf4a9129
LC
9800Using @code{--keep-failed} makes it easier to debug build failures since
9801it provides access to the failed build tree. Another useful
9802command-line option when debugging is @code{--log-file}, to access the
9803build log.
ef5dd60a 9804
cf4a9129
LC
9805If the package is unknown to the @command{guix} command, it may be that
9806the source file contains a syntax error, or lacks a @code{define-public}
9807clause to export the package variable. To figure it out, you may load
9808the module from Guile to get more information about the actual error:
ef5dd60a 9809
cf4a9129
LC
9810@example
9811./pre-inst-env guile -c '(use-modules (gnu packages gnew))'
9812@end example
ef5dd60a 9813
cf4a9129
LC
9814Once your package builds correctly, please send us a patch
9815(@pxref{Contributing}). Well, if you need help, we will be happy to
9816help you too. Once the patch is committed in the Guix repository, the
9817new package automatically gets built on the supported platforms by
2b1cee21 9818@url{http://hydra.gnu.org/jobset/gnu/master, our continuous integration
cf4a9129 9819system}.
ef5dd60a 9820
cf4a9129
LC
9821@cindex substituter
9822Users can obtain the new package definition simply by running
9823@command{guix pull} (@pxref{Invoking guix pull}). When
9824@code{hydra.gnu.org} is done building the package, installing the
9825package automatically downloads binaries from there
9826(@pxref{Substitutes}). The only place where human intervention is
9827needed is to review and apply the patch.
ef5dd60a 9828
ef5dd60a 9829
cf4a9129 9830@menu
ec0339cd
LC
9831* Software Freedom:: What may go into the distribution.
9832* Package Naming:: What's in a name?
9833* Version Numbers:: When the name is not enough.
cbd02397 9834* Synopses and Descriptions:: Helping users find the right package.
ec0339cd
LC
9835* Python Modules:: Taming the snake.
9836* Perl Modules:: Little pearls.
9837* Fonts:: Fond of fonts.
cf4a9129 9838@end menu
ef5dd60a 9839
cf4a9129
LC
9840@node Software Freedom
9841@subsection Software Freedom
ef5dd60a 9842
cf4a9129 9843@c Adapted from http://www.gnu.org/philosophy/philosophy.html.
c11a6eb1 9844
cf4a9129
LC
9845The GNU operating system has been developed so that users can have
9846freedom in their computing. GNU is @dfn{free software}, meaning that
9847users have the @url{http://www.gnu.org/philosophy/free-sw.html,four
9848essential freedoms}: to run the program, to study and change the program
9849in source code form, to redistribute exact copies, and to distribute
9850modified versions. Packages found in the GNU distribution provide only
9851software that conveys these four freedoms.
c11a6eb1 9852
cf4a9129
LC
9853In addition, the GNU distribution follow the
9854@url{http://www.gnu.org/distros/free-system-distribution-guidelines.html,free
9855software distribution guidelines}. Among other things, these guidelines
9856reject non-free firmware, recommendations of non-free software, and
9857discuss ways to deal with trademarks and patents.
ef5dd60a 9858
cf4a9129
LC
9859Some packages contain a small and optional subset that violates the
9860above guidelines, for instance because this subset is itself non-free
9861code. When that happens, the offending items are removed with
9862appropriate patches or code snippets in the package definition's
9863@code{origin} form (@pxref{Defining Packages}). That way, @code{guix
9864build --source} returns the ``freed'' source rather than the unmodified
9865upstream source.
ef5dd60a 9866
ef5dd60a 9867
cf4a9129
LC
9868@node Package Naming
9869@subsection Package Naming
ef5dd60a 9870
cf4a9129
LC
9871A package has actually two names associated with it:
9872First, there is the name of the @emph{Scheme variable}, the one following
9873@code{define-public}. By this name, the package can be made known in the
9874Scheme code, for instance as input to another package. Second, there is
9875the string in the @code{name} field of a package definition. This name
9876is used by package management commands such as
9877@command{guix package} and @command{guix build}.
ef5dd60a 9878
cf4a9129
LC
9879Both are usually the same and correspond to the lowercase conversion of
9880the project name chosen upstream, with underscores replaced with
9881hyphens. For instance, GNUnet is available as @code{gnunet}, and
9882SDL_net as @code{sdl-net}.
927097ef 9883
cf4a9129 9884We do not add @code{lib} prefixes for library packages, unless these are
081145cf 9885already part of the official project name. But @pxref{Python
cf4a9129
LC
9886Modules} and @ref{Perl Modules} for special rules concerning modules for
9887the Python and Perl languages.
927097ef 9888
1b366ee4 9889Font package names are handled differently, @pxref{Fonts}.
7fec52b7 9890
ef5dd60a 9891
cf4a9129
LC
9892@node Version Numbers
9893@subsection Version Numbers
ef5dd60a 9894
cf4a9129
LC
9895We usually package only the latest version of a given free software
9896project. But sometimes, for instance for incompatible library versions,
9897two (or more) versions of the same package are needed. These require
9898different Scheme variable names. We use the name as defined
9899in @ref{Package Naming}
9900for the most recent version; previous versions use the same name, suffixed
9901by @code{-} and the smallest prefix of the version number that may
9902distinguish the two versions.
ef5dd60a 9903
cf4a9129
LC
9904The name inside the package definition is the same for all versions of a
9905package and does not contain any version number.
ef5dd60a 9906
cf4a9129 9907For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:
ef5dd60a 9908
cf4a9129
LC
9909@example
9910(define-public gtk+
9911 (package
17d8e33f
ML
9912 (name "gtk+")
9913 (version "3.9.12")
9914 ...))
cf4a9129
LC
9915(define-public gtk+-2
9916 (package
17d8e33f
ML
9917 (name "gtk+")
9918 (version "2.24.20")
9919 ...))
cf4a9129
LC
9920@end example
9921If we also wanted GTK+ 3.8.2, this would be packaged as
9922@example
9923(define-public gtk+-3.8
9924 (package
17d8e33f
ML
9925 (name "gtk+")
9926 (version "3.8.2")
9927 ...))
cf4a9129 9928@end example
ef5dd60a 9929
cbd02397
LC
9930@node Synopses and Descriptions
9931@subsection Synopses and Descriptions
9932
9933As we have seen before, each package in GNU@tie{}Guix includes a
9934synopsis and a description (@pxref{Defining Packages}). Synopses and
9935descriptions are important: They are what @command{guix package
9936--search} searches, and a crucial piece of information to help users
9937determine whether a given package suits their needs. Consequently,
9938packagers should pay attention to what goes into them.
9939
9940Synopses must start with a capital letter and must not end with a
9941period. They must not start with ``a'' or ``the'', which usually does
9942not bring anything; for instance, prefer ``File-frobbing tool'' over ``A
9943tool that frobs files''. The synopsis should say what the package
9944is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is
9945used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines
9946matching a pattern''.
9947
9948Keep in mind that the synopsis must be meaningful for a very wide
9949audience. For example, ``Manipulate alignments in the SAM format''
9950might make sense for a seasoned bioinformatics researcher, but might be
9951fairly unhelpful or even misleading to a non-specialized audience. It
9952is a good idea to come up with a synopsis that gives an idea of the
9953application domain of the package. In this example, this might give
9954something like ``Manipulate nucleotide sequence alignments'', which
9955hopefully gives the user a better idea of whether this is what they are
9956looking for.
9957
9958@cindex Texinfo markup, in package descriptions
9959Descriptions should take between five and ten lines. Use full
9960sentences, and avoid using acronyms without first introducing them.
9961Descriptions can include Texinfo markup, which is useful to introduce
9962ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or
ba7d6c76
ML
9963hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you
9964should be careful when using some characters for example @samp{@@} and
9965curly braces which are the basic special characters in Texinfo
9966(@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces
9967such as @command{guix package --show} take care of rendering it
9968appropriately.
cbd02397
LC
9969
9970Synopses and descriptions are translated by volunteers
9971@uref{http://translationproject.org/domain/guix-packages.html, at the
9972Translation Project} so that as many users as possible can read them in
9973their native language. User interfaces search them and display them in
9974the language specified by the current locale.
9975
9976Translation is a lot of work so, as a packager, please pay even more
9977attention to your synopses and descriptions as every change may entail
ba7d6c76 9978additional work for translators. In order to help them, it is possible
36743e71 9979to make recommendations or instructions visible to them by inserting
ba7d6c76
ML
9980special comments like this (@pxref{xgettext Invocation,,, gettext, GNU
9981Gettext}):
9982
9983@example
9984;; TRANSLATORS: "X11 resize-and-rotate" should not be translated.
9985(description "ARandR is designed to provide a simple visual front end
9986for the X11 resize-and-rotate (RandR) extension. @dots{}")
9987@end example
cbd02397 9988
ef5dd60a 9989
cf4a9129
LC
9990@node Python Modules
9991@subsection Python Modules
ef5dd60a 9992
cf4a9129
LC
9993We currently package Python 2 and Python 3, under the Scheme variable names
9994@code{python-2} and @code{python} as explained in @ref{Version Numbers}.
9995To avoid confusion and naming clashes with other programming languages, it
9996seems desirable that the name of a package for a Python module contains
9997the word @code{python}.
ef5dd60a 9998
cf4a9129
LC
9999Some modules are compatible with only one version of Python, others with both.
10000If the package Foo compiles only with Python 3, we name it
10001@code{python-foo}; if it compiles only with Python 2, we name it
10002@code{python2-foo}. If it is compatible with both versions, we create two
10003packages with the corresponding names.
ef5dd60a 10004
cf4a9129
LC
10005If a project already contains the word @code{python}, we drop this;
10006for instance, the module python-dateutil is packaged under the names
10007@code{python-dateutil} and @code{python2-dateutil}.
113daf62 10008
523e4896 10009
cf4a9129
LC
10010@node Perl Modules
10011@subsection Perl Modules
523e4896 10012
cf4a9129
LC
10013Perl programs standing for themselves are named as any other package,
10014using the lowercase upstream name.
10015For Perl packages containing a single class, we use the lowercase class name,
10016replace all occurrences of @code{::} by dashes and prepend the prefix
10017@code{perl-}.
10018So the class @code{XML::Parser} becomes @code{perl-xml-parser}.
10019Modules containing several classes keep their lowercase upstream name and
10020are also prepended by @code{perl-}. Such modules tend to have the word
10021@code{perl} somewhere in their name, which gets dropped in favor of the
10022prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}.
523e4896 10023
523e4896 10024
7fec52b7
AE
10025@node Fonts
10026@subsection Fonts
10027
10028For fonts that are in general not installed by a user for typesetting
10029purposes, or that are distributed as part of a larger software package,
10030we rely on the general packaging rules for software; for instance, this
10031applies to the fonts delivered as part of the X.Org system or fonts that
10032are part of TeX Live.
10033
10034To make it easier for a user to search for fonts, names for other packages
10035containing only fonts are constructed as follows, independently of the
10036upstream package name.
10037
10038The name of a package containing only one font family starts with
10039@code{font-}; it is followed by the foundry name and a dash @code{-}
10040if the foundry is known, and the font family name, in which spaces are
10041replaced by dashes (and as usual, all upper case letters are transformed
10042to lower case).
10043For example, the Gentium font family by SIL is packaged under the name
10044@code{font-sil-gentium}.
10045
10046For a package containing several font families, the name of the collection
10047is used in the place of the font family name.
10048For instance, the Liberation fonts consist of three families,
10049Liberation Sans, Liberation Serif and Liberation Mono.
10050These could be packaged separately under the names
10051@code{font-liberation-sans} and so on; but as they are distributed together
10052under a common name, we prefer to package them together as
10053@code{font-liberation}.
10054
10055In the case where several formats of the same font family or font collection
10056are packaged separately, a short form of the format, prepended by a dash,
10057is added to the package name. We use @code{-ttf} for TrueType fonts,
1b366ee4 10058@code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1
7fec52b7
AE
10059fonts.
10060
10061
b25937e3 10062
cf4a9129
LC
10063@node Bootstrapping
10064@section Bootstrapping
b25937e3 10065
cf4a9129 10066@c Adapted from the ELS 2013 paper.
b25937e3 10067
cf4a9129 10068@cindex bootstrapping
7889394e 10069
cf4a9129
LC
10070Bootstrapping in our context refers to how the distribution gets built
10071``from nothing''. Remember that the build environment of a derivation
10072contains nothing but its declared inputs (@pxref{Introduction}). So
10073there's an obvious chicken-and-egg problem: how does the first package
10074get built? How does the first compiler get compiled? Note that this is
10075a question of interest only to the curious hacker, not to the regular
10076user, so you can shamelessly skip this section if you consider yourself
10077a ``regular user''.
72b9d60d 10078
cf4a9129
LC
10079@cindex bootstrap binaries
10080The GNU system is primarily made of C code, with libc at its core. The
10081GNU build system itself assumes the availability of a Bourne shell and
10082command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and
10083`grep'. Furthermore, build programs---programs that run
10084@code{./configure}, @code{make}, etc.---are written in Guile Scheme
10085(@pxref{Derivations}). Consequently, to be able to build anything at
10086all, from scratch, Guix relies on pre-built binaries of Guile, GCC,
10087Binutils, libc, and the other packages mentioned above---the
10088@dfn{bootstrap binaries}.
72b9d60d 10089
cf4a9129
LC
10090These bootstrap binaries are ``taken for granted'', though we can also
10091re-create them if needed (more on that later).
72b9d60d 10092
cf4a9129 10093@unnumberedsubsec Preparing to Use the Bootstrap Binaries
c79d54fe 10094
cf4a9129
LC
10095@c As of Emacs 24.3, Info-mode displays the image, but since it's a
10096@c large image, it's hard to scroll. Oh well.
10097@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}
523e4896 10098
cf4a9129
LC
10099The figure above shows the very beginning of the dependency graph of the
10100distribution, corresponding to the package definitions of the @code{(gnu
10101packages bootstrap)} module. At this level of detail, things are
10102slightly complex. First, Guile itself consists of an ELF executable,
10103along with many source and compiled Scheme files that are dynamically
10104loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz}
10105tarball shown in this graph. This tarball is part of Guix's ``source''
10106distribution, and gets inserted into the store with @code{add-to-store}
10107(@pxref{The Store}).
2e7b5cea 10108
cf4a9129
LC
10109But how do we write a derivation that unpacks this tarball and adds it
10110to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv}
10111derivation---the first one that gets built---uses @code{bash} as its
10112builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls
10113@code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar},
10114@file{xz}, and @file{mkdir} are statically-linked binaries, also part of
10115the Guix source distribution, whose sole purpose is to allow the Guile
10116tarball to be unpacked.
fb729425 10117
cf4a9129
LC
10118Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning
10119Guile that can be used to run subsequent build programs. Its first task
10120is to download tarballs containing the other pre-built binaries---this
10121is what the @code{.tar.xz.drv} derivations do. Guix modules such as
10122@code{ftp-client.scm} are used for this purpose. The
10123@code{module-import.drv} derivations import those modules in a directory
10124in the store, using the original layout. The
10125@code{module-import-compiled.drv} derivations compile those modules, and
10126write them in an output directory with the right layout. This
10127corresponds to the @code{#:modules} argument of
10128@code{build-expression->derivation} (@pxref{Derivations}).
fb729425 10129
cf4a9129
LC
10130Finally, the various tarballs are unpacked by the
10131derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv},
10132etc., at which point we have a working C tool chain.
fb729425 10133
fb729425 10134
cf4a9129 10135@unnumberedsubsec Building the Build Tools
523e4896 10136
cf4a9129
LC
10137@c TODO: Add a package-level dependency graph generated from (gnu
10138@c packages base).
df2ce343 10139
cf4a9129
LC
10140Bootstrapping is complete when we have a full tool chain that does not
10141depend on the pre-built bootstrap tools discussed above. This
10142no-dependency requirement is verified by checking whether the files of
10143the final tool chain contain references to the @file{/gnu/store}
10144directories of the bootstrap inputs. The process that leads to this
10145``final'' tool chain is described by the package definitions found in
1f6f57df 10146the @code{(gnu packages commencement)} module.
df2ce343 10147
cf4a9129
LC
10148@c See <http://lists.gnu.org/archive/html/gnu-system-discuss/2012-10/msg00000.html>.
10149The first tool that gets built with the bootstrap binaries is
10150GNU Make, which is a prerequisite for all the following packages.
10151From there Findutils and Diffutils get built.
523e4896 10152
cf4a9129
LC
10153Then come the first-stage Binutils and GCC, built as pseudo cross
10154tools---i.e., with @code{--target} equal to @code{--host}. They are
10155used to build libc. Thanks to this cross-build trick, this libc is
10156guaranteed not to hold any reference to the initial tool chain.
4af2447e 10157
cf4a9129
LC
10158From there the final Binutils and GCC are built. GCC uses @code{ld}
10159from the final Binutils, and links programs against the just-built libc.
10160This tool chain is used to build the other packages used by Guix and by
10161the GNU Build System: Guile, Bash, Coreutils, etc.
4af2447e 10162
cf4a9129
LC
10163And voilà! At this point we have the complete set of build tools that
10164the GNU Build System expects. These are in the @code{%final-inputs}
dd164244
MW
10165variable of the @code{(gnu packages commencement)} module, and are
10166implicitly used by any package that uses @code{gnu-build-system}
1f6f57df 10167(@pxref{Build Systems, @code{gnu-build-system}}).
4af2447e 10168
4af2447e 10169
cf4a9129 10170@unnumberedsubsec Building the Bootstrap Binaries
4af2447e 10171
cf4a9129
LC
10172Because the final tool chain does not depend on the bootstrap binaries,
10173those rarely need to be updated. Nevertheless, it is useful to have an
10174automated way to produce them, should an update occur, and this is what
10175the @code{(gnu packages make-bootstrap)} module provides.
4af2447e 10176
cf4a9129
LC
10177The following command builds the tarballs containing the bootstrap
10178binaries (Guile, Binutils, GCC, libc, and a tarball containing a mixture
10179of Coreutils and other basic command-line tools):
4b2615e1 10180
cf4a9129
LC
10181@example
10182guix build bootstrap-tarballs
10183@end example
10184
10185The generated tarballs are those that should be referred to in the
10186@code{(gnu packages bootstrap)} module mentioned at the beginning of
10187this section.
10188
10189Still here? Then perhaps by now you've started to wonder: when do we
10190reach a fixed point? That is an interesting question! The answer is
10191unknown, but if you would like to investigate further (and have
10192significant computational and storage resources to do so), then let us
10193know.
10194
10195@node Porting
10196@section Porting to a New Platform
10197
10198As discussed above, the GNU distribution is self-contained, and
10199self-containment is achieved by relying on pre-built ``bootstrap
10200binaries'' (@pxref{Bootstrapping}). These binaries are specific to an
10201operating system kernel, CPU architecture, and application binary
10202interface (ABI). Thus, to port the distribution to a platform that is
10203not yet supported, one must build those bootstrap binaries, and update
10204the @code{(gnu packages bootstrap)} module to use them on that platform.
10205
10206Fortunately, Guix can @emph{cross compile} those bootstrap binaries.
10207When everything goes well, and assuming the GNU tool chain supports the
10208target platform, this can be as simple as running a command like this
10209one:
10210
10211@example
10212guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs
10213@end example
10214
1c0c417d
LC
10215For this to work, the @code{glibc-dynamic-linker} procedure in
10216@code{(gnu packages bootstrap)} must be augmented to return the right
10217file name for libc's dynamic linker on that platform; likewise,
10218@code{system->linux-architecture} in @code{(gnu packages linux)} must be
10219taught about the new platform.
10220
cf4a9129 10221Once these are built, the @code{(gnu packages bootstrap)} module needs
1c0c417d
LC
10222to be updated to refer to these binaries on the target platform. That
10223is, the hashes and URLs of the bootstrap tarballs for the new platform
10224must be added alongside those of the currently supported platforms. The
10225bootstrap Guile tarball is treated specially: it is expected to be
10226available locally, and @file{gnu-system.am} has rules do download it for
10227the supported architectures; a rule for the new platform must be added
10228as well.
cf4a9129
LC
10229
10230In practice, there may be some complications. First, it may be that the
10231extended GNU triplet that specifies an ABI (like the @code{eabi} suffix
10232above) is not recognized by all the GNU tools. Typically, glibc
10233recognizes some of these, whereas GCC uses an extra @code{--with-abi}
10234configure flag (see @code{gcc.scm} for examples of how to handle this).
10235Second, some of the required packages could fail to build for that
10236platform. Lastly, the generated binaries could be broken for some
10237reason.
4af2447e 10238
9bf3c1a7 10239@c *********************************************************************
8c01b9d0 10240@include contributing.texi
c78bd12b 10241
568717fd
LC
10242@c *********************************************************************
10243@node Acknowledgments
10244@chapter Acknowledgments
10245
136787cb
LC
10246Guix is based on the @uref{http://nixos.org/nix/, Nix package manager},
10247which was designed and
4c7ac9aa
LC
10248implemented by Eelco Dolstra, with contributions from other people (see
10249the @file{nix/AUTHORS} file in Guix.) Nix pioneered functional package
568717fd
LC
10250management, and promoted unprecedented features, such as transactional
10251package upgrades and rollbacks, per-user profiles, and referentially
10252transparent build processes. Without this work, Guix would not exist.
10253
10254The Nix-based software distributions, Nixpkgs and NixOS, have also been
10255an inspiration for Guix.
10256
4c7ac9aa
LC
10257GNU@tie{}Guix itself is a collective work with contributions from a
10258number of people. See the @file{AUTHORS} file in Guix for more
10259information on these fine people. The @file{THANKS} file lists people
10260who have helped by reporting bugs, taking care of the infrastructure,
10261providing artwork and themes, making suggestions, and more---thank you!
10262
10263
568717fd
LC
10264@c *********************************************************************
10265@node GNU Free Documentation License
10266@appendix GNU Free Documentation License
10267
10268@include fdl-1.3.texi
10269
10270@c *********************************************************************
10271@node Concept Index
10272@unnumbered Concept Index
10273@printindex cp
10274
a85b83d2
LC
10275@node Programming Index
10276@unnumbered Programming Index
10277@syncodeindex tp fn
10278@syncodeindex vr fn
568717fd
LC
10279@printindex fn
10280
10281@bye
10282
10283@c Local Variables:
10284@c ispell-local-dictionary: "american";
10285@c End: