gnu: libx264: Update to 20160220-2245.
[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
db5a9444 13Copyright @copyright{} 2012, 2013, 2014, 2015, 2016 Ludovic Courtès@*
f97c9175 14Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@*
87eafdbd 15Copyright @copyright{} 2013 Nikita Karetnikov@*
8c01b9d0
ML
16Copyright @copyright{} 2015 Mathieu Lirzin@*
17Copyright @copyright{} 2014 Pierre-Antoine Rault@*
97d76250
LF
18Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@*
19Copyright @copyright{} 2015, 2016 Leo Famulari
7df7a74e
NK
20
21Permission is granted to copy, distribute and/or modify this document
22under the terms of the GNU Free Documentation License, Version 1.3 or
23any later version published by the Free Software Foundation; with no
24Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
25copy of the license is included in the section entitled ``GNU Free
26Documentation License''.
27@end copying
568717fd 28
eeaf4427 29@dircategory Package management
568717fd
LC
30@direntry
31* guix: (guix). Guix, the functional package manager.
e49951eb 32* guix package: (guix)Invoking guix package
eeaf4427 33 Managing packages with Guix.
e49951eb 34* guix build: (guix)Invoking guix build
568717fd 35 Building packages with Guix.
054e8576
LC
36* guix system: (guix)Invoking guix system
37 Managing the operating system configuration.
568717fd 38@end direntry
568717fd 39
372c4bbc
DT
40@dircategory Software development
41@direntry
42* guix environment: (guix)Invoking guix environment
43 Building development environments with Guix.
44@end direntry
45
568717fd 46@titlepage
7730d112
LC
47@title GNU Guix Reference Manual
48@subtitle Using the GNU Guix Functional Package Manager
2cbed07e 49@author The GNU Guix Developers
568717fd
LC
50
51@page
52@vskip 0pt plus 1filll
53Edition @value{EDITION} @*
54@value{UPDATED} @*
55
7df7a74e 56@insertcopying
568717fd
LC
57@end titlepage
58
568717fd
LC
59@contents
60
61@c *********************************************************************
62@node Top
f8348b91 63@top GNU Guix
568717fd 64
f8348b91
LC
65This document describes GNU Guix version @value{VERSION}, a functional
66package management tool written for the GNU system.
568717fd
LC
67
68@menu
69* Introduction:: What is Guix about?
bd5e766b 70* Installation:: Installing Guix.
eeaf4427 71* Package Management:: Package installation, upgrade, etc.
c554de89 72* Emacs Interface:: Using Guix from Emacs.
568717fd
LC
73* Programming Interface:: Using Guix in Scheme.
74* Utilities:: Package management commands.
a1ba8475 75* GNU Distribution:: Software for your friendly GNU system.
9bf3c1a7 76* Contributing:: Your help needed!
568717fd
LC
77
78* Acknowledgments:: Thanks!
79* GNU Free Documentation License:: The license of this manual.
80* Concept Index:: Concepts.
a85b83d2 81* Programming Index:: Data types, functions, and variables.
aaa3eaa9
LC
82
83@detailmenu
84 --- The Detailed Node Listing ---
85
86Installation
87
1b2b8177 88* Binary Installation:: Getting Guix running in no time!
aaa3eaa9 89* Requirements:: Software needed to build and run Guix.
ec0339cd 90* Running the Test Suite:: Testing Guix.
aaa3eaa9
LC
91* Setting Up the Daemon:: Preparing the build daemon's environment.
92* Invoking guix-daemon:: Running the build daemon.
0e2d0213 93* Application Setup:: Application-specific setup.
aaa3eaa9
LC
94
95Setting Up the Daemon
96
97* Build Environment Setup:: Preparing the isolated build environment.
98* Daemon Offload Setup:: Offloading builds to remote machines.
99
100Package Management
101
102* Features:: How Guix will make your life brighter.
103* Invoking guix package:: Package installation, removal, etc.
aaa3eaa9
LC
104* Substitutes:: Downloading pre-built binaries.
105* Packages with Multiple Outputs:: Single source package, multiple outputs.
106* Invoking guix gc:: Running the garbage collector.
107* Invoking guix pull:: Fetching the latest Guix and distribution.
108* Invoking guix archive:: Exporting and importing store files.
109
c554de89
AK
110Emacs Interface
111
112* Initial Setup: Emacs Initial Setup. Preparing @file{~/.emacs}.
113* Package Management: Emacs Package Management. Managing packages and generations.
687c9bc0 114* Licenses: Emacs Licenses. Interface for licenses of Guix packages.
9b0afb0d 115* Popup Interface: Emacs Popup Interface. Magit-like interface for guix commands.
c554de89 116* Prettify Mode: Emacs Prettify. Abbreviating @file{/gnu/store/@dots{}} file names.
34850cd5 117* Build Log Mode: Emacs Build Log. Highlighting Guix build logs.
187f80c6
AK
118* Completions: Emacs Completions. Completing @command{guix} shell command.
119* Development: Emacs Development. Tools for Guix developers.
32950fc8 120* Hydra: Emacs Hydra. Interface for Guix build farm.
c554de89 121
aaa3eaa9
LC
122Programming Interface
123
124* Defining Packages:: Defining new packages.
125* Build Systems:: Specifying how packages are built.
126* The Store:: Manipulating the package store.
127* Derivations:: Low-level interface to package derivations.
128* The Store Monad:: Purely functional interface to the store.
129* G-Expressions:: Manipulating build expressions.
130
92492b23
LC
131Defining Packages
132
133* package Reference:: The package data type.
134* origin Reference:: The origin data type.
135
aaa3eaa9
LC
136Utilities
137
138* Invoking guix build:: Building packages from the command line.
fcc58db6 139* Invoking guix edit:: Editing package definitions.
aaa3eaa9
LC
140* Invoking guix download:: Downloading a file and printing its hash.
141* Invoking guix hash:: Computing the cryptographic hash of a file.
142* Invoking guix import:: Importing package definitions.
143* Invoking guix refresh:: Updating package definitions.
144* Invoking guix lint:: Finding errors in package definitions.
fcc58db6 145* Invoking guix size:: Profiling disk usage.
88856916 146* Invoking guix graph:: Visualizing the graph of packages.
aaa3eaa9 147* Invoking guix environment:: Setting up development environments.
aff8ce7c 148* Invoking guix publish:: Sharing substitutes.
d23c20f1 149* Invoking guix challenge:: Challenging substitute servers.
32efa254 150* Invoking guix container:: Process isolation.
aaa3eaa9
LC
151
152GNU Distribution
153
154* System Installation:: Installing the whole operating system.
35ed9306 155* System Configuration:: Configuring the operating system.
aaa3eaa9
LC
156* Installing Debugging Files:: Feeding the debugger.
157* Security Updates:: Deploying security fixes quickly.
158* Package Modules:: Packages from the programmer's viewpoint.
159* Packaging Guidelines:: Growing the distribution.
160* Bootstrapping:: GNU/Linux built from scratch.
161* Porting:: Targeting another platform or kernel.
162
163System Configuration
164
165* Using the Configuration System:: Customizing your GNU system.
166* operating-system Reference:: Detail of operating-system declarations.
167* File Systems:: Configuring file system mounts.
168* Mapped Devices:: Block device extra processing.
169* User Accounts:: Specifying user accounts.
598e19dc 170* Locales:: Language and cultural convention settings.
aaa3eaa9
LC
171* Services:: Specifying system services.
172* Setuid Programs:: Programs running with root privileges.
1b2b8177 173* X.509 Certificates:: Authenticating HTTPS servers.
996ed739 174* Name Service Switch:: Configuring libc's name service switch.
aaa3eaa9
LC
175* Initial RAM Disk:: Linux-Libre bootstrapping.
176* GRUB Configuration:: Configuring the boot loader.
177* Invoking guix system:: Instantiating a system configuration.
97d76250 178* Running GuixSD in a VM:: How to run GuixSD in a virtual machine.
aaa3eaa9
LC
179* Defining Services:: Adding new service definitions.
180
181Services
182
183* Base Services:: Essential system services.
184* Networking Services:: Network setup, SSH daemon, etc.
185* X Window:: Graphical display.
1b2b8177
LC
186* Desktop Services:: D-Bus and desktop services.
187* Database Services:: SQL databases.
d8c18af8 188* Mail Services:: IMAP, POP3, SMTP, and all that.
cbd02397 189* Web Services:: Web servers.
aa4ed923 190* Various Services:: Other services.
aaa3eaa9 191
0adfe95a
LC
192Defining Services
193
194* Service Composition:: The model for composing services.
195* Service Types and Services:: Types and services.
196* Service Reference:: API reference.
dd17bc38 197* Shepherd Services:: A particular type of service.
0adfe95a 198
aaa3eaa9
LC
199Packaging Guidelines
200
ec0339cd
LC
201* Software Freedom:: What may go into the distribution.
202* Package Naming:: What's in a name?
203* Version Numbers:: When the name is not enough.
cbd02397 204* Synopses and Descriptions:: Helping users find the right package.
ec0339cd
LC
205* Python Modules:: Taming the snake.
206* Perl Modules:: Little pearls.
207* Fonts:: Fond of fonts.
aaa3eaa9 208
8c01b9d0
ML
209Contributing
210
211* Building from Git:: The latest and greatest.
212* Running Guix Before It Is Installed:: Hacker tricks.
213* The Perfect Setup:: The right tools.
214* Coding Style:: Hygiene of the contributor.
215* Submitting Patches:: Share your work.
216
217Coding Style
218
219* Programming Paradigm:: How to compose your elements.
220* Modules:: Where to store your code?
221* Data Types and Pattern Matching:: Implementing data structures.
222* Formatting Code:: Writing conventions.
223
aaa3eaa9 224@end detailmenu
568717fd
LC
225@end menu
226
227@c *********************************************************************
228@node Introduction
229@chapter Introduction
230
c80e7e55
LC
231GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks''
232using the international phonetic alphabet (IPA).} is a functional
233package management tool for the GNU system. Package management consists
4bfc4ea3
NK
234of all activities that relate to building packages from sources,
235honoring their build-time and run-time dependencies,
c80e7e55
LC
236installing packages in user environments, upgrading installed packages
237to new versions or rolling back to a previous set, removing unused
238software packages, etc.
568717fd
LC
239
240@cindex functional package management
241The term @dfn{functional} refers to a specific package management
136787cb
LC
242discipline pioneered by Nix (@pxref{Acknowledgments}).
243In Guix, the package build and installation process is seen
4bfc4ea3
NK
244as a function, in the mathematical sense. That function takes inputs,
245such as build scripts, a compiler, and libraries, and
246returns an installed package. As a pure function, its result depends
568717fd
LC
247solely on its inputs---for instance, it cannot refer to software or
248scripts that were not explicitly passed as inputs. A build function
4bfc4ea3 249always produces the same result when passed a given set of inputs. It
f97c9175 250cannot alter the environment of the running system in
568717fd
LC
251any way; for instance, it cannot create, modify, or delete files outside
252of its build and installation directories. This is achieved by running
e900c503 253build processes in isolated environments (or @dfn{containers}), where only their
4bfc4ea3 254explicit inputs are visible.
568717fd 255
e531ac2a 256@cindex store
568717fd 257The result of package build functions is @dfn{cached} in the file
e531ac2a 258system, in a special directory called @dfn{the store} (@pxref{The
f97c9175 259Store}). Each package is installed in a directory of its own in the
834129e0 260store---by default under @file{/gnu/store}. The directory name contains
568717fd
LC
261a hash of all the inputs used to build that package; thus, changing an
262input yields a different directory name.
263
f97c9175
AE
264This approach is the foundation for the salient features of Guix: support
265for transactional package upgrade and rollback, per-user installation, and
eeaf4427 266garbage collection of packages (@pxref{Features}).
568717fd 267
4bfc4ea3 268Guix has a command-line interface, which allows users to build, install,
568717fd 269upgrade, and remove packages, as well as a Scheme programming interface.
568717fd 270
3ca2731c 271@cindex Guix System Distribution
4705641f 272@cindex GuixSD
a1ba8475 273Last but not least, Guix is used to build a distribution of the GNU
3ca2731c 274system, with many GNU and non-GNU free software packages. The Guix
4705641f
LC
275System Distribution, or GNU@tie{}GuixSD, takes advantage of the core
276properties of Guix at the system level. With GuixSD, users
3ca2731c
LC
277@emph{declare} all aspects of the operating system configuration, and
278Guix takes care of instantiating that configuration in a reproducible,
279stateless fashion. @xref{GNU Distribution}.
a1ba8475 280
bd5e766b
LC
281@c *********************************************************************
282@node Installation
283@chapter Installation
284
48febeb8
LC
285GNU Guix is available for download from its website at
286@url{http://www.gnu.org/software/guix/}. This section describes the
287software requirements of Guix, as well as how to install it and get
288ready to use it.
bd5e766b 289
5af6de3e
LC
290Note that this section is concerned with the installation of the package
291manager, which can be done on top of a running GNU/Linux system. If,
292instead, you want to install the complete GNU operating system,
6621cdb6 293@pxref{System Installation}.
5af6de3e 294
bd5e766b 295@menu
09722b11 296* Binary Installation:: Getting Guix running in no time!
bd5e766b 297* Requirements:: Software needed to build and run Guix.
ec0339cd 298* Running the Test Suite:: Testing Guix.
bd5e766b
LC
299* Setting Up the Daemon:: Preparing the build daemon's environment.
300* Invoking guix-daemon:: Running the build daemon.
0e2d0213 301* Application Setup:: Application-specific setup.
bd5e766b
LC
302@end menu
303
09722b11
LC
304@node Binary Installation
305@section Binary Installation
306
307This section describes how to install Guix on an arbitrary system from a
308self-contained tarball providing binaries for Guix and for all its
309dependencies. This is often quicker than installing from source, which
310is described in the next sections. The only requirement is to have
311GNU@tie{}tar and Xz.
312
313Installing goes along these lines:
314
315@enumerate
316@item
317Download the binary tarball from
daa8922a
LC
318@indicateurl{ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz},
319where @var{system} is @code{x86_64-linux} for an @code{x86_64} machine
320already running the kernel Linux, and so on.
321
322Make sure to download the associated @file{.sig} file and to verify the
323authenticity of the tarball against it, along these lines:
324
325@example
326$ wget ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz.sig
327$ gpg --verify guix-binary-@value{VERSION}.@var{system}.tar.xz.sig
328@end example
329
f97c9175 330If that command fails because you do not have the required public key,
daa8922a
LC
331then run this command to import it:
332
333@example
334$ gpg --keyserver keys.gnupg.net --recv-keys 3D9AEBB5
335@end example
336
337@noindent
338and rerun the @code{gpg --verify} command.
09722b11
LC
339
340@item
341As @code{root}, run:
342
343@example
5dc42964 344# cd /tmp
254b1c2e
LC
345# tar --warning=no-timestamp -xf \
346 guix-binary-@value{VERSION}.@var{system}.tar.xz
5dc42964 347# mv var/guix /var/ && mv gnu /
09722b11
LC
348@end example
349
7acd3439
LC
350This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}.
351The latter contains a ready-to-use profile for @code{root} (see next
352step.)
09722b11 353
5dc3ce5f
LC
354Do @emph{not} unpack the tarball on a working Guix system since that
355would overwrite its own essential files.
356
254b1c2e 357The @code{--warning=no-timestamp} option makes sure GNU@tie{}tar does
e9ba6357
LC
358not emit warnings about ``implausibly old time stamps'' (such
359warnings were triggered by GNU@tie{}tar 1.26 and older; recent
360versions are fine.)
361They stem from the fact that all the
254b1c2e
LC
362files in the archive have their modification time set to zero (which
363means January 1st, 1970.) This is done on purpose to make sure the
364archive content is independent of its creation time, thus making it
365reproducible.
366
7acd3439
LC
367@item
368Make @code{root}'s profile available under @file{~/.guix-profile}:
369
370@example
371# ln -sf /var/guix/profiles/per-user/root/guix-profile \
372 ~root/.guix-profile
373@end example
374
43c33047
LC
375@item
376Create the group and user accounts for build users as explained below
377(@pxref{Build Environment Setup}).
378
09722b11 379@item
175ced41 380Run the daemon:
09722b11
LC
381
382@example
7acd3439 383# ~root/.guix-profile/bin/guix-daemon --build-users-group=guixbuild
09722b11
LC
384@end example
385
d2825c96
LC
386On hosts using the systemd init system, drop
387@file{~root/.guix-profile/lib/systemd/system/guix-daemon.service} in
388@file{/etc/systemd/system}.
389
ad227484
MDRS
390Likewise, on hosts using the Upstart init system, drop
391@file{~root/.guix-profile/lib/upstart/system/guix-daemon.conf} in
392@file{/etc/init}.
393
09722b11
LC
394@item
395Make the @command{guix} command available to other users on the machine,
396for instance with:
397
398@example
399# mkdir -p /usr/local/bin
400# cd /usr/local/bin
d72d05f9 401# ln -s /var/guix/profiles/per-user/root/guix-profile/bin/guix
09722b11 402@end example
39f8ed14 403
aca738f3
LC
404It is also a good idea to make the Info version of this manual available
405there:
406
407@example
408# mkdir -p /usr/local/share/info
409# cd /usr/local/share/info
410# for i in /var/guix/profiles/per-user/root/guix-profile/share/info/* ;
411 do ln -s $i ; done
412@end example
413
414That way, assuming @file{/usr/local/share/info} is in the search path,
415running @command{info guix} will open this manual (@pxref{Other Info
416Directories,,, texinfo, GNU Texinfo}, for more details on changing the
417Info search path.)
418
39f8ed14
LC
419@item
420To use substitutes from @code{hydra.gnu.org} (@pxref{Substitutes}),
421authorize them:
422
423@example
7acd3439 424# guix archive --authorize < ~root/.guix-profile/share/guix/hydra.gnu.org.pub
39f8ed14 425@end example
09722b11
LC
426@end enumerate
427
53de532f
LC
428And that's it! For additional tips and tricks, @pxref{Application
429Setup}.
09722b11 430
5dc3ce5f 431The @code{guix} package must remain available in @code{root}'s
09722b11
LC
432profile, or it would become subject to garbage collection---in which
433case you would find yourself badly handicapped by the lack of the
434@command{guix} command.
435
39f8ed14
LC
436The tarball in question can be (re)produced and verified simply by
437running the following command in the Guix source tree:
09722b11
LC
438
439@example
440make guix-binary.@var{system}.tar.xz
441@end example
442
443
bd5e766b
LC
444@node Requirements
445@section Requirements
446
09722b11
LC
447This section lists requirements when building Guix from source. The
448build procedure for Guix is the same as for other GNU software, and is
449not covered here. Please see the files @file{README} and @file{INSTALL}
450in the Guix source tree for additional details.
451
bd5e766b
LC
452GNU Guix depends on the following packages:
453
454@itemize
47c66da0 455@item @url{http://gnu.org/software/guile/, GNU Guile}, version 2.0.7 or later;
288dca55 456@item @url{http://gnupg.org/, GNU libgcrypt};
f0b98b84 457@item @url{http://www.gnu.org/software/make/, GNU Make}.
8a96bd4b
ID
458@end itemize
459
460The following dependencies are optional:
461
462@itemize
288dca55 463@item
8a96bd4b 464Installing
288dca55 465@url{http://savannah.nongnu.org/projects/guile-json/, Guile-JSON} will
2f7d2d91
LC
466allow you to use the @command{guix import pypi} command (@pxref{Invoking
467guix import}). It is of
288dca55 468interest primarily for developers and not for casual users.
8a96bd4b
ID
469@item
470Installing @uref{http://gnutls.org/, GnuTLS-Guile} will
471allow you to access @code{https} URLs with the @command{guix download}
d45dc6da
EB
472command (@pxref{Invoking guix download}), the @command{guix import pypi}
473command, and the @command{guix import cpan} command. This is primarily
474of interest to developers. @xref{Guile Preparations, how to install the
475GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}.
bd5e766b
LC
476@end itemize
477
478Unless @code{--disable-daemon} was passed to @command{configure}, the
479following packages are also needed:
480
481@itemize
368d08f7
LC
482@item @url{http://sqlite.org, SQLite 3};
483@item @url{http://www.bzip.org, libbz2};
484@item @url{http://gcc.gnu.org, GCC's g++}, with support for the
485C++11 standard.
bd5e766b
LC
486@end itemize
487
4bfc4ea3
NK
488When a working installation of @url{http://nixos.org/nix/, the Nix package
489manager} is available, you
bd5e766b 490can instead configure Guix with @code{--disable-daemon}. In that case,
4bfc4ea3 491Nix replaces the three dependencies above.
bd5e766b 492
b22a12fd
LC
493Guix is compatible with Nix, so it is possible to share the same store
494between both. To do so, you must pass @command{configure} not only the
495same @code{--with-store-dir} value, but also the same
4bfc4ea3
NK
496@code{--localstatedir} value. The latter is essential because it
497specifies where the database that stores metadata about the store is
834129e0 498located, among other things. The default values for Nix are
b22a12fd 499@code{--with-store-dir=/nix/store} and @code{--localstatedir=/nix/var}.
4bfc4ea3
NK
500Note that @code{--disable-daemon} is not required if
501your goal is to share the store with Nix.
b22a12fd 502
ec0339cd
LC
503@node Running the Test Suite
504@section Running the Test Suite
505
506After a successful @command{configure} and @code{make} run, it is a good
507idea to run the test suite. It can help catch issues with the setup or
508environment, or bugs in Guix itself---and really, reporting test
509failures is a good way to help improve the software. To run the test
510suite, type:
511
512@example
513make check
514@end example
515
516Test cases can run in parallel: you can use the @code{-j} option of
517GNU@tie{}make to speed things up. The first run may take a few minutes
518on a recent machine; subsequent runs will be faster because the store
519that is created for test purposes will already have various things in
520cache.
521
a887fd8d
LC
522It is also possible to run a subset of the tests by defining the
523@code{TESTS} makefile variable as in this example:
524
525@example
526make check TESTS="tests/store.scm tests/cpio.scm"
527@end example
528
ec0339cd
LC
529Upon failure, please email @email{bug-guix@@gnu.org} and attach the
530@file{test-suite.log} file. When @file{tests/@var{something}.scm}
531fails, please also attach the @file{@var{something}.log} file available
532in the top-level build directory. Please specify the Guix version being
533used as well as version numbers of the dependencies
534(@pxref{Requirements}) in your message.
535
bd5e766b
LC
536@node Setting Up the Daemon
537@section Setting Up the Daemon
538
539@cindex daemon
540Operations such as building a package or running the garbage collector
49e6291a 541are all performed by a specialized process, the @dfn{build daemon}, on
bd5e766b
LC
542behalf of clients. Only the daemon may access the store and its
543associated database. Thus, any operation that manipulates the store
544goes through the daemon. For instance, command-line tools such as
e49951eb 545@command{guix package} and @command{guix build} communicate with the
bd5e766b
LC
546daemon (@i{via} remote procedure calls) to instruct it what to do.
547
49e6291a 548The following sections explain how to prepare the build daemon's
f97c9175 549environment. See also @ref{Substitutes}, for information on how to allow
225dafde 550the daemon to download pre-built binaries.
49e6291a
LC
551
552@menu
553* Build Environment Setup:: Preparing the isolated build environment.
554* Daemon Offload Setup:: Offloading builds to remote machines.
555@end menu
556
557@node Build Environment Setup
558@subsection Build Environment Setup
559
bd5e766b
LC
560In a standard multi-user setup, Guix and its daemon---the
561@command{guix-daemon} program---are installed by the system
834129e0 562administrator; @file{/gnu/store} is owned by @code{root} and
bd5e766b
LC
563@command{guix-daemon} runs as @code{root}. Unprivileged users may use
564Guix tools to build packages or otherwise access the store, and the
565daemon will do it on their behalf, ensuring that the store is kept in a
566consistent state, and allowing built packages to be shared among users.
567
568@cindex build users
569When @command{guix-daemon} runs as @code{root}, you may not want package
570build processes themselves to run as @code{root} too, for obvious
571security reasons. To avoid that, a special pool of @dfn{build users}
572should be created for use by build processes started by the daemon.
573These build users need not have a shell and a home directory: they will
574just be used when the daemon drops @code{root} privileges in build
575processes. Having several such users allows the daemon to launch
576distinct build processes under separate UIDs, which guarantees that they
577do not interfere with each other---an essential feature since builds are
578regarded as pure functions (@pxref{Introduction}).
579
580On a GNU/Linux system, a build user pool may be created like this (using
581Bash syntax and the @code{shadow} commands):
582
091196b3
LC
583@c See http://lists.gnu.org/archive/html/bug-guix/2013-01/msg00239.html
584@c for why `-G' is needed.
bd5e766b 585@example
cfc149dc
LC
586# groupadd --system guixbuild
587# for i in `seq -w 1 10`;
bd5e766b 588 do
cfc149dc
LC
589 useradd -g guixbuild -G guixbuild \
590 -d /var/empty -s `which nologin` \
591 -c "Guix build user $i" --system \
592 guixbuilder$i;
bd5e766b
LC
593 done
594@end example
595
596@noindent
54eb03ab
LC
597The number of build users determines how many build jobs may run in
598parallel, as specified by the @option{--max-jobs} option
d2825c96
LC
599(@pxref{Invoking guix-daemon, @option{--max-jobs}}). The
600@code{guix-daemon} program may then be run as @code{root} with the
601following command@footnote{If your machine uses the systemd init system,
602dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service}
603file in @file{/etc/systemd/system} will ensure that
ad227484
MDRS
604@command{guix-daemon} is automatically started. Similarly, if your
605machine uses the Upstart init system, drop the
606@file{@var{prefix}/lib/upstart/system/guix-daemon.conf}
607file in @file{/etc/init}.}:
bd5e766b
LC
608
609@example
cfc149dc 610# guix-daemon --build-users-group=guixbuild
bd5e766b
LC
611@end example
612
e900c503 613@cindex chroot
b095792f
LC
614@noindent
615This way, the daemon starts build processes in a chroot, under one of
cfc149dc 616the @code{guixbuilder} users. On GNU/Linux, by default, the chroot
6dc99317
LC
617environment contains nothing but:
618
619@c Keep this list in sync with libstore/build.cc! -----------------------
620@itemize
621@item
4743a4da
LC
622a minimal @code{/dev} directory, created mostly independently from the
623host @code{/dev}@footnote{``Mostly'', because while the set of files
624that appear in the chroot's @code{/dev} is fixed, most of these files
625can only be created if the host has them.};
626
627@item
f97c9175 628the @code{/proc} directory; it only shows the processes of the container
4743a4da 629since a separate PID name space is used;
6dc99317
LC
630
631@item
632@file{/etc/passwd} with an entry for the current user and an entry for
633user @file{nobody};
634
635@item
636@file{/etc/group} with an entry for the user's group;
637
638@item
639@file{/etc/hosts} with an entry that maps @code{localhost} to
640@code{127.0.0.1};
641
642@item
643a writable @file{/tmp} directory.
644@end itemize
b095792f 645
cb960102
ED
646You can influence the directory where the daemon stores build trees
647@i{via} the @code{TMPDIR} environment variable. However, the build tree
f97c9175 648within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0},
cb960102
ED
649where @var{name} is the derivation name---e.g., @code{coreutils-8.24}.
650This way, the value of @code{TMPDIR} does not leak inside build
651environments, which avoids discrepancies in cases where build processes
652capture the name of their build tree.
653
e0c941fe
LC
654@vindex http_proxy
655The daemon also honors the @code{http_proxy} environment variable for
656HTTP downloads it performs, be it for fixed-output derivations
657(@pxref{Derivations}) or for substitutes (@pxref{Substitutes}).
658
1e2644bb
LC
659If you are installing Guix as an unprivileged user, it is still possible
660to run @command{guix-daemon} provided you pass @code{--disable-chroot}.
661However, build processes will not be isolated from one another, and not
662from the rest of the system. Thus, build processes may interfere with
663each other, and may access programs, libraries, and other files
664available on the system---making it much harder to view them as
665@emph{pure} functions.
bd5e766b 666
49e6291a
LC
667
668@node Daemon Offload Setup
669@subsection Using the Offload Facility
670
671@cindex offloading
4ec2e92d
LC
672@cindex build hook
673When desired, the build daemon can @dfn{offload}
674derivation builds to other machines
49e6291a
LC
675running Guix, using the @code{offload} @dfn{build hook}. When that
676feature is enabled, a list of user-specified build machines is read from
f97c9175 677@file{/etc/guix/machines.scm}; every time a build is requested, for
49e6291a 678instance via @code{guix build}, the daemon attempts to offload it to one
f97c9175 679of the machines that satisfy the constraints of the derivation, in
49e6291a
LC
680particular its system type---e.g., @file{x86_64-linux}. Missing
681prerequisites for the build are copied over SSH to the target machine,
682which then proceeds with the build; upon success the output(s) of the
683build are copied back to the initial machine.
684
4ec2e92d 685The @file{/etc/guix/machines.scm} file typically looks like this:
49e6291a
LC
686
687@example
688(list (build-machine
689 (name "eightysix.example.org")
690 (system "x86_64-linux")
691 (user "bob")
692 (speed 2.)) ; incredibly fast!
693
694 (build-machine
695 (name "meeps.example.org")
696 (system "mips64el-linux")
697 (user "alice")
698 (private-key
699 (string-append (getenv "HOME")
c4fdfd6f 700 "/.lsh/identity-for-guix"))))
49e6291a
LC
701@end example
702
703@noindent
704In the example above we specify a list of two build machines, one for
705the @code{x86_64} architecture and one for the @code{mips64el}
4ec2e92d
LC
706architecture.
707
708In fact, this file is---not surprisingly!---a Scheme file that is
709evaluated when the @code{offload} hook is started. Its return value
710must be a list of @code{build-machine} objects. While this example
711shows a fixed list of build machines, one could imagine, say, using
712DNS-SD to return a list of potential build machines discovered in the
713local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using
c678a4ee
LC
714Avahi in Guile Scheme Programs}). The @code{build-machine} data type is
715detailed below.
4ec2e92d 716
c678a4ee 717@deftp {Data Type} build-machine
f97c9175
AE
718This data type represents build machines to which the daemon may offload
719builds. The important fields are:
49e6291a
LC
720
721@table @code
722
723@item name
f97c9175 724The host name of the remote machine.
49e6291a
LC
725
726@item system
f97c9175 727The system type of the remote machine---e.g., @code{"x86_64-linux"}.
49e6291a
LC
728
729@item user
730The user account to use when connecting to the remote machine over SSH.
731Note that the SSH key pair must @emph{not} be passphrase-protected, to
732allow non-interactive logins.
733
734@end table
735
4ec2e92d 736A number of optional fields may be specified:
49e6291a
LC
737
738@table @code
739
cecd72d5 740@item port
f97c9175 741Port number of SSH server on the machine (default: 22).
cecd72d5 742
49e6291a
LC
743@item private-key
744The SSH private key file to use when connecting to the machine.
745
c4fdfd6f
LC
746Currently offloading uses GNU@tie{}lsh as its SSH client
747(@pxref{Invoking lsh,,, GNU lsh Manual}). Thus, the key file here must
748be an lsh key file. This may change in the future, though.
749
49e6291a
LC
750@item parallel-builds
751The number of builds that may run in parallel on the machine (1 by
752default.)
753
754@item speed
755A ``relative speed factor''. The offload scheduler will tend to prefer
756machines with a higher speed factor.
757
758@item features
759A list of strings denoting specific features supported by the machine.
760An example is @code{"kvm"} for machines that have the KVM Linux modules
761and corresponding hardware support. Derivations can request features by
762name, and they will be scheduled on matching build machines.
763
764@end table
c678a4ee 765@end deftp
49e6291a
LC
766
767The @code{guix} command must be in the search path on the build
768machines, since offloading works by invoking the @code{guix archive} and
c4fdfd6f
LC
769@code{guix build} commands. In addition, the Guix modules must be in
770@code{$GUILE_LOAD_PATH} on the build machine---you can check whether
771this is the case by running:
772
773@example
74273b6f 774lsh build-machine guile -c "'(use-modules (guix config))'"
c4fdfd6f 775@end example
49e6291a 776
f97c9175 777There is one last thing to do once @file{machines.scm} is in place. As
49e6291a 778explained above, when offloading, files are transferred back and forth
c4fdfd6f
LC
779between the machine stores. For this to work, you first need to
780generate a key pair on each machine to allow the daemon to export signed
781archives of files from the store (@pxref{Invoking guix archive}):
49e6291a
LC
782
783@example
784# guix archive --generate-key
785@end example
786
787@noindent
c4fdfd6f
LC
788Each build machine must authorize the key of the master machine so that
789it accepts store items it receives from the master:
790
791@example
792# guix archive --authorize < master-public-key.txt
793@end example
794
795@noindent
796Likewise, the master machine must authorize the key of each build machine.
797
798All the fuss with keys is here to express pairwise mutual trust
799relations between the master and the build machines. Concretely, when
800the master receives files from a build machine (and @i{vice versa}), its
801build daemon can make sure they are genuine, have not been tampered
802with, and that they are signed by an authorized key.
49e6291a
LC
803
804
bd5e766b
LC
805@node Invoking guix-daemon
806@section Invoking @command{guix-daemon}
807
808The @command{guix-daemon} program implements all the functionality to
809access the store. This includes launching build processes, running the
810garbage collector, querying the availability of a build result, etc. It
811is normally run as @code{root} like this:
812
813@example
cfc149dc 814# guix-daemon --build-users-group=guixbuild
bd5e766b
LC
815@end example
816
817@noindent
081145cf 818For details on how to set it up, @pxref{Setting Up the Daemon}.
bd5e766b 819
e900c503
LC
820@cindex chroot
821@cindex container, build environment
822@cindex build environment
823@cindex reproducible builds
bd5e766b
LC
824By default, @command{guix-daemon} launches build processes under
825different UIDs, taken from the build group specified with
826@code{--build-users-group}. In addition, each build process is run in a
827chroot environment that only contains the subset of the store that the
828build process depends on, as specified by its derivation
829(@pxref{Programming Interface, derivation}), plus a set of specific
830system directories. By default, the latter contains @file{/dev} and
e900c503
LC
831@file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a
832@dfn{container}: in addition to having its own file system tree, it has
833a separate mount name space, its own PID name space, network name space,
834etc. This helps achieve reproducible builds (@pxref{Features}).
bd5e766b 835
cbc538fe
LC
836When the daemon performs a build on behalf of the user, it creates a
837build directory under @file{/tmp} or under the directory specified by
838its @code{TMPDIR} environment variable; this directory is shared with
839the container for the duration of the build. Be aware that using a
840directory other than @file{/tmp} can affect build results---for example,
841with a longer directory name, a build process that uses Unix-domain
842sockets might hit the name length limitation for @code{sun_path}, which
843it would otherwise not hit.
844
845The build directory is automatically deleted upon completion, unless the
846build failed and the client specified @option{--keep-failed}
847(@pxref{Invoking guix build, @option{--keep-failed}}).
848
bd5e766b
LC
849The following command-line options are supported:
850
851@table @code
852@item --build-users-group=@var{group}
853Take users from @var{group} to run build processes (@pxref{Setting Up
854the Daemon, build users}).
855
6858f9d1 856@item --no-substitutes
b5385b52 857@cindex substitutes
6858f9d1 858Do not use substitutes for build products. That is, always build things
c4202d60
LC
859locally instead of allowing downloads of pre-built binaries
860(@pxref{Substitutes}).
6858f9d1 861
b5385b52
LC
862By default substitutes are used, unless the client---such as the
863@command{guix package} command---is explicitly invoked with
864@code{--no-substitutes}.
865
866When the daemon runs with @code{--no-substitutes}, clients can still
867explicitly enable substitution @i{via} the @code{set-build-options}
868remote procedure call (@pxref{The Store}).
869
9176607e 870@item --substitute-urls=@var{urls}
f8a8e0fe 871@anchor{daemon-substitute-urls}
9176607e 872Consider @var{urls} the default whitespace-separated list of substitute
ae806096 873source URLs. When this option is omitted, @indicateurl{http://hydra.gnu.org}
9176607e
LC
874is used.
875
876This means that substitutes may be downloaded from @var{urls}, as long
877as they are signed by a trusted signature (@pxref{Substitutes}).
878
4ec2e92d
LC
879@cindex build hook
880@item --no-build-hook
881Do not use the @dfn{build hook}.
882
883The build hook is a helper program that the daemon can start and to
884which it submits build requests. This mechanism is used to offload
885builds to other machines (@pxref{Daemon Offload Setup}).
886
bd5e766b
LC
887@item --cache-failures
888Cache build failures. By default, only successful builds are cached.
889
30d9aa54
LC
890When this option is used, @command{guix gc --list-failures} can be used
891to query the set of store items marked as failed; @command{guix gc
892--clear-failures} removes store items from the set of cached failures.
893@xref{Invoking guix gc}.
894
bd5e766b
LC
895@item --cores=@var{n}
896@itemx -c @var{n}
897Use @var{n} CPU cores to build each derivation; @code{0} means as many
898as available.
899
6efc160e 900The default value is @code{0}, but it may be overridden by clients, such
e49951eb
MW
901as the @code{--cores} option of @command{guix build} (@pxref{Invoking
902guix build}).
bd5e766b
LC
903
904The effect is to define the @code{NIX_BUILD_CORES} environment variable
905in the build process, which can then use it to exploit internal
906parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}.
907
908@item --max-jobs=@var{n}
909@itemx -M @var{n}
910Allow at most @var{n} build jobs in parallel. The default value is
f6526eb3
LC
911@code{1}. Setting it to @code{0} means that no builds will be performed
912locally; instead, the daemon will offload builds (@pxref{Daemon Offload
913Setup}), or simply fail.
bd5e766b 914
ecf84b7c
LC
915@item --rounds=@var{N}
916Build each derivation @var{n} times in a row, and raise an error if
917consecutive build results are not bit-for-bit identical. Note that this
918setting can be overridden by clients such as @command{guix build}
919(@pxref{Invoking guix build}).
920
bd5e766b
LC
921@item --debug
922Produce debugging output.
923
924This is useful to debug daemon start-up issues, but then it may be
925overridden by clients, for example the @code{--verbosity} option of
e49951eb 926@command{guix build} (@pxref{Invoking guix build}).
bd5e766b
LC
927
928@item --chroot-directory=@var{dir}
929Add @var{dir} to the build chroot.
930
931Doing this may change the result of build processes---for instance if
932they use optional dependencies found in @var{dir} when it is available,
933and not otherwise. For that reason, it is not recommended to do so.
934Instead, make sure that each derivation declares all the inputs that it
935needs.
936
937@item --disable-chroot
938Disable chroot builds.
939
940Using this option is not recommended since, again, it would allow build
1e2644bb
LC
941processes to gain access to undeclared dependencies. It is necessary,
942though, when @command{guix-daemon} is running under an unprivileged user
943account.
bd5e766b
LC
944
945@item --disable-log-compression
946Disable compression of the build logs.
947
1da983b9
LC
948Unless @code{--lose-logs} is used, all the build logs are kept in the
949@var{localstatedir}. To save space, the daemon automatically compresses
950them with bzip2 by default. This option disables that.
951
ab3893d7
LC
952@item --disable-deduplication
953@cindex deduplication
bd5e766b
LC
954Disable automatic file ``deduplication'' in the store.
955
1da983b9 956By default, files added to the store are automatically ``deduplicated'':
ab3893d7
LC
957if a newly added file is identical to another one found in the store,
958the daemon makes the new file a hard link to the other file. This can
4988dd40 959noticeably reduce disk usage, at the expense of slightly increased
ab3893d7
LC
960input/output load at the end of a build process. This option disables
961this optimization.
1da983b9 962
6e37066e
LC
963@item --gc-keep-outputs[=yes|no]
964Tell whether the garbage collector (GC) must keep outputs of live
965derivations.
966
967When set to ``yes'', the GC will keep the outputs of any live derivation
968available in the store---the @code{.drv} files. The default is ``no'',
969meaning that derivation outputs are kept only if they are GC roots.
970
971@item --gc-keep-derivations[=yes|no]
972Tell whether the garbage collector (GC) must keep derivations
973corresponding to live outputs.
974
975When set to ``yes'', as is the case by default, the GC keeps
976derivations---i.e., @code{.drv} files---as long as at least one of their
977outputs is live. This allows users to keep track of the origins of
978items in their store. Setting it to ``no'' saves a bit of disk space.
979
980Note that when both @code{--gc-keep-derivations} and
981@code{--gc-keep-outputs} are used, the effect is to keep all the build
982prerequisites (the sources, compiler, libraries, and other build-time
983tools) of live objects in the store, regardless of whether these
984prerequisites are live. This is convenient for developers since it
985saves rebuilds or downloads.
986
bd5e766b
LC
987@item --impersonate-linux-2.6
988On Linux-based systems, impersonate Linux 2.6. This means that the
989kernel's @code{uname} system call will report 2.6 as the release number.
990
991This might be helpful to build programs that (usually wrongfully) depend
992on the kernel version number.
993
994@item --lose-logs
995Do not keep build logs. By default they are kept under
ce33631f 996@code{@var{localstatedir}/guix/log}.
bd5e766b
LC
997
998@item --system=@var{system}
999Assume @var{system} as the current system type. By default it is the
1000architecture/kernel pair found at configure time, such as
1001@code{x86_64-linux}.
b8d2aa26
LC
1002
1003@item --listen=@var{socket}
1004Listen for connections on @var{socket}, the file name of a Unix-domain
1005socket. The default socket is
1006@file{@var{localstatedir}/daemon-socket/socket}. This option is only
1007useful in exceptional circumstances, such as if you need to run several
1008daemons on the same machine.
bd5e766b
LC
1009@end table
1010
1011
0e2d0213
LC
1012@node Application Setup
1013@section Application Setup
1014
85e57214
LC
1015When using Guix on top of GNU/Linux distribution other than GuixSD---a
1016so-called @dfn{foreign distro}---a few additional steps are needed to
1017get everything in place. Here are some of them.
0e2d0213
LC
1018
1019@subsection Locales
1020
5c3c1427 1021@anchor{locales-and-locpath}
0e2d0213 1022@cindex locales, when not on GuixSD
5c3c1427 1023@vindex LOCPATH
85e57214 1024@vindex GUIX_LOCPATH
f97c9175
AE
1025Packages installed @i{via} Guix will not use the locale data of the
1026host system. Instead, you must first install one of the locale packages
85e57214
LC
1027available with Guix and then define the @code{GUIX_LOCPATH} environment
1028variable:
0e2d0213
LC
1029
1030@example
1031$ guix package -i glibc-locales
85e57214 1032$ export GUIX_LOCPATH=$HOME/.guix-profile/lib/locale
0e2d0213
LC
1033@end example
1034
1035Note that the @code{glibc-locales} package contains data for all the
1036locales supported by the GNU@tie{}libc and weighs in at around
f97c9175 1037110@tie{}MiB. Alternatively, the @code{glibc-utf8-locales} is smaller but
0e2d0213
LC
1038limited to a few UTF-8 locales.
1039
85e57214
LC
1040The @code{GUIX_LOCPATH} variable plays a role similar to @code{LOCPATH}
1041(@pxref{Locale Names, @code{LOCPATH},, libc, The GNU C Library Reference
1042Manual}). There are two important differences though:
1043
1044@enumerate
1045@item
f97c9175 1046@code{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc
85e57214 1047provided by foreign distros. Thus, using @code{GUIX_LOCPATH} allows you
f97c9175 1048to make sure the programs of the foreign distro will not end up loading
85e57214
LC
1049incompatible locale data.
1050
1051@item
1052libc suffixes each entry of @code{GUIX_LOCPATH} with @code{/X.Y}, where
1053@code{X.Y} is the libc version---e.g., @code{2.22}. This means that,
1054should your Guix profile contain a mixture of programs linked against
1055different libc version, each libc version will only try to load locale
1056data in the right format.
1057@end enumerate
1058
1059This is important because the locale data format used by different libc
1060versions may be incompatible.
1061
0e2d0213
LC
1062@subsection X11 Fonts
1063
4988dd40 1064The majority of graphical applications use Fontconfig to locate and
f97c9175
AE
1065load fonts and perform X11-client-side rendering. The @code{fontconfig}
1066package in Guix looks for fonts in @file{$HOME/.guix-profile}
0e2d0213 1067by default. Thus, to allow graphical applications installed with Guix
f97c9175 1068to display fonts, you have to install fonts with Guix as well.
0e2d0213 1069Essential font packages include @code{gs-fonts}, @code{font-dejavu}, and
8fe5b1d1 1070@code{font-gnu-freefont-ttf}.
0e2d0213 1071
5c36edc8
LC
1072To display text written in Chinese languages, Japanese, or Korean in
1073graphical applications, consider installing
1074@code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former
1075has multiple outputs, one per language family (@pxref{Packages with
1076Multiple Outputs}). For instance, the following command installs fonts
1077for Chinese languages:
1078
1079@example
1080guix package -i font-adobe-source-han-sans:cn
1081@end example
1082
6d97319c
AK
1083@subsection Emacs Packages
1084
1085When you install Emacs packages with Guix, the elisp files may be placed
1086either in @file{$HOME/.guix-profile/share/emacs/site-lisp/} or in
1087sub-directories of
1088@file{$HOME/.guix-profile/share/emacs/site-lisp/guix.d/}. The latter
1089directory exists because potentially there may exist thousands of Emacs
1090packages and storing all their files in a single directory may be not
1091reliable (because of name conflicts). So we think using a separate
1092directory for each package is a good idea. It is very similar to how
1093the Emacs package system organizes the file structure (@pxref{Package
1094Files,,, emacs, The GNU Emacs Manual}).
1095
1096By default, Emacs (installed with Guix) ``knows'' where these packages
f97c9175 1097are placed, so you do not need to perform any configuration. If, for
6d97319c 1098some reason, you want to avoid auto-loading Emacs packages installed
f97c9175 1099with Guix, you can do so by running Emacs with @code{--no-site-file}
6d97319c
AK
1100option (@pxref{Init File,,, emacs, The GNU Emacs Manual}).
1101
0e2d0213
LC
1102@c TODO What else?
1103
eeaf4427
LC
1104@c *********************************************************************
1105@node Package Management
1106@chapter Package Management
1107
f8348b91 1108The purpose of GNU Guix is to allow users to easily install, upgrade, and
eeaf4427 1109remove software packages, without having to know about their build
f97c9175 1110procedures or dependencies. Guix also goes beyond this obvious set of
eeaf4427
LC
1111features.
1112
1113This chapter describes the main features of Guix, as well as the package
c1941588 1114management tools it provides. Two user interfaces are provided for
c554de89
AK
1115routine package management tasks: A command-line interface described below
1116(@pxref{Invoking guix package, @code{guix package}}), as well as a visual user
1117interface in Emacs described in a subsequent chapter (@pxref{Emacs Interface}).
eeaf4427
LC
1118
1119@menu
1120* Features:: How Guix will make your life brighter.
e49951eb 1121* Invoking guix package:: Package installation, removal, etc.
c4202d60 1122* Substitutes:: Downloading pre-built binaries.
760c60d6 1123* Packages with Multiple Outputs:: Single source package, multiple outputs.
e49951eb 1124* Invoking guix gc:: Running the garbage collector.
f651b477 1125* Invoking guix pull:: Fetching the latest Guix and distribution.
760c60d6 1126* Invoking guix archive:: Exporting and importing store files.
eeaf4427
LC
1127@end menu
1128
1129@node Features
1130@section Features
1131
1132When using Guix, each package ends up in the @dfn{package store}, in its
1133own directory---something that resembles
9a130e19
AK
1134@file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string
1135(note that Guix comes with an Emacs extension to shorten those file
081145cf 1136names, @pxref{Emacs Prettify}.)
eeaf4427
LC
1137
1138Instead of referring to these directories, users have their own
1139@dfn{profile}, which points to the packages that they actually want to
821b0015
LC
1140use. These profiles are stored within each user's home directory, at
1141@code{$HOME/.guix-profile}.
eeaf4427 1142
821b0015 1143For example, @code{alice} installs GCC 4.7.2. As a result,
eeaf4427 1144@file{/home/alice/.guix-profile/bin/gcc} points to
834129e0 1145@file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine,
821b0015
LC
1146@code{bob} had already installed GCC 4.8.0. The profile of @code{bob}
1147simply continues to point to
834129e0 1148@file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC
821b0015 1149coexist on the same system without any interference.
eeaf4427 1150
e49951eb 1151The @command{guix package} command is the central tool to manage
f97c9175 1152packages (@pxref{Invoking guix package}). It operates on the per-user
821b0015 1153profiles, and can be used @emph{with normal user privileges}.
eeaf4427
LC
1154
1155The command provides the obvious install, remove, and upgrade
1156operations. Each invocation is actually a @emph{transaction}: either
ba55b1cb 1157the specified operation succeeds, or nothing happens. Thus, if the
e49951eb 1158@command{guix package} process is terminated during the transaction,
eeaf4427
LC
1159or if a power outage occurs during the transaction, then the user's
1160profile remains in its previous state, and remains usable.
1161
1162In addition, any package transaction may be @emph{rolled back}. So, if,
1163for example, an upgrade installs a new version of a package that turns
1164out to have a serious bug, users may roll back to the previous instance
4af2447e
LC
1165of their profile, which was known to work well. Similarly, the global
1166system configuration is subject to transactional upgrades and roll-back
1167(@pxref{Using the Configuration System}).
eeaf4427 1168
f97c9175
AE
1169All packages in the package store may be @emph{garbage-collected}.
1170Guix can determine which packages are still referenced by user
fe8ff028 1171profiles, and remove those that are provably no longer referenced
e49951eb 1172(@pxref{Invoking guix gc}). Users may also explicitly remove old
fe8ff028
LC
1173generations of their profile so that the packages they refer to can be
1174collected.
eeaf4427 1175
e900c503
LC
1176@cindex reproducibility
1177@cindex reproducible builds
eeaf4427
LC
1178Finally, Guix takes a @dfn{purely functional} approach to package
1179management, as described in the introduction (@pxref{Introduction}).
834129e0 1180Each @file{/gnu/store} package directory name contains a hash of all the
eeaf4427
LC
1181inputs that were used to build that package---compiler, libraries, build
1182scripts, etc. This direct correspondence allows users to make sure a
1183given package installation matches the current state of their
e900c503
LC
1184distribution. It also helps maximize @dfn{build reproducibility}:
1185thanks to the isolated build environments that are used, a given build
1186is likely to yield bit-identical files when performed on different
1187machines (@pxref{Invoking guix-daemon, container}).
eeaf4427 1188
c4202d60 1189@cindex substitutes
eeaf4427 1190This foundation allows Guix to support @dfn{transparent binary/source
c4202d60 1191deployment}. When a pre-built binary for a @file{/gnu/store} item is
18f2887b 1192available from an external source---a @dfn{substitute}, Guix just
c4202d60
LC
1193downloads it and unpacks it;
1194otherwise, it builds the package from source, locally
1195(@pxref{Substitutes}).
eeaf4427 1196
f5fd4fd2
LC
1197Control over the build environment is a feature that is also useful for
1198developers. The @command{guix environment} command allows developers of
1199a package to quickly set up the right development environment for their
f97c9175
AE
1200package, without having to manually install the dependencies of the
1201package into their profile (@pxref{Invoking guix environment}).
f5fd4fd2 1202
e49951eb
MW
1203@node Invoking guix package
1204@section Invoking @command{guix package}
eeaf4427 1205
e49951eb 1206The @command{guix package} command is the tool that allows users to
eeaf4427
LC
1207install, upgrade, and remove packages, as well as rolling back to
1208previous configurations. It operates only on the user's own profile,
1209and works with normal user privileges (@pxref{Features}). Its syntax
1210is:
1211
1212@example
e49951eb 1213guix package @var{options}
eeaf4427
LC
1214@end example
1215
ba55b1cb 1216Primarily, @var{options} specifies the operations to be performed during
eeaf4427 1217the transaction. Upon completion, a new profile is created, but
99bd74d5 1218previous @dfn{generations} of the profile remain available, should the user
eeaf4427
LC
1219want to roll back.
1220
6447738c
MW
1221For example, to remove @code{lua} and install @code{guile} and
1222@code{guile-cairo} in a single transaction:
1223
1224@example
1225guix package -r lua -i guile guile-cairo
1226@end example
1227
99bd74d5
LC
1228@command{guix package} also supports a @dfn{declarative approach}
1229whereby the user specifies the exact set of packages to be available and
1230passes it @i{via} the @option{--manifest} option
1231(@pxref{profile-manifest, @option{--manifest}}).
1232
b9e5c0a9 1233For each user, a symlink to the user's default profile is automatically
0ec1af59 1234created in @file{$HOME/.guix-profile}. This symlink always points to the
b9e5c0a9
LC
1235current generation of the user's default profile. Thus, users can add
1236@file{$HOME/.guix-profile/bin} to their @code{PATH} environment
1237variable, and so on.
d664f1b4
LC
1238@cindex search paths
1239If you are not using the Guix System Distribution, consider adding the
1240following lines to your @file{~/.bash_profile} (@pxref{Bash Startup
1241Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned
1242shells get all the right environment variable definitions:
1243
1244@example
1245GUIX_PROFILE="$HOME/.guix-profile" \
1246source "$HOME/.guix-profile/etc/profile"
1247@end example
b9e5c0a9 1248
4379c35b
LC
1249In a multi-user setup, user profiles are stored in a place registered as
1250a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points
1251to (@pxref{Invoking guix gc}). That directory is normally
0ec1af59
LC
1252@code{@var{localstatedir}/profiles/per-user/@var{user}}, where
1253@var{localstatedir} is the value passed to @code{configure} as
4379c35b
LC
1254@code{--localstatedir}, and @var{user} is the user name. The
1255@file{per-user} directory is created when @command{guix-daemon} is
1256started, and the @var{user} sub-directory is created by @command{guix
1257package}.
0ec1af59
LC
1258
1259The @var{options} can be among the following:
1260
eeaf4427
LC
1261@table @code
1262
6447738c
MW
1263@item --install=@var{package} @dots{}
1264@itemx -i @var{package} @dots{}
1265Install the specified @var{package}s.
eeaf4427 1266
6447738c 1267Each @var{package} may specify either a simple package name, such as
eeaf4427 1268@code{guile}, or a package name followed by a hyphen and version number,
724311a2
LC
1269such as @code{guile-1.8.8} or simply @code{guile-1.8} (in the latter
1270case, the newest version prefixed by @code{1.8} is selected.)
1271
1272If no version number is specified, the
dc5669cd
MW
1273newest available version will be selected. In addition, @var{package}
1274may contain a colon, followed by the name of one of the outputs of the
6e721c4d 1275package, as in @code{gcc:doc} or @code{binutils-2.22:lib}
e7f34eb0
LC
1276(@pxref{Packages with Multiple Outputs}). Packages with a corresponding
1277name (and optionally version) are searched for among the GNU
1278distribution modules (@pxref{Package Modules}).
eeaf4427 1279
461572cc
LC
1280@cindex propagated inputs
1281Sometimes packages have @dfn{propagated inputs}: these are dependencies
21461f27
LC
1282that automatically get installed along with the required package
1283(@pxref{package-propagated-inputs, @code{propagated-inputs} in
1284@code{package} objects}, for information about propagated inputs in
1285package definitions).
461572cc 1286
21461f27 1287@anchor{package-cmd-propagated-inputs}
461572cc
LC
1288An example is the GNU MPC library: its C header files refer to those of
1289the GNU MPFR library, which in turn refer to those of the GMP library.
1290Thus, when installing MPC, the MPFR and GMP libraries also get installed
1291in the profile; removing MPC also removes MPFR and GMP---unless they had
f97c9175 1292also been explicitly installed by the user.
461572cc 1293
ba7ea5ce 1294Besides, packages sometimes rely on the definition of environment
5924080d 1295variables for their search paths (see explanation of
ba7ea5ce 1296@code{--search-paths} below). Any missing or possibly incorrect
5924080d
LC
1297environment variable definitions are reported here.
1298
ef010c0f 1299@c XXX: keep me up-to-date
5924080d 1300Finally, when installing a GNU package, the tool reports the
ef010c0f
LC
1301availability of a newer upstream version. In the future, it may provide
1302the option of installing directly from the upstream version, even if
1303that version is not yet in the distribution.
1304
5d4b411f
LC
1305@item --install-from-expression=@var{exp}
1306@itemx -e @var{exp}
1307Install the package @var{exp} evaluates to.
1308
1309@var{exp} must be a Scheme expression that evaluates to a
1310@code{<package>} object. This option is notably useful to disambiguate
1311between same-named variants of a package, with expressions such as
1312@code{(@@ (gnu packages base) guile-final)}.
1313
1314Note that this option installs the first output of the specified
1315package, which may be insufficient when needing a specific output of a
1316multiple-output package.
1317
0d279400
DT
1318@item --install-from-file=@var{file}
1319@itemx -f @var{file}
1320Install the package that the code within @var{file} evaluates to.
1321
1322As an example, @var{file} might contain a definition like this
1323(@pxref{Defining Packages}):
1324
1325@example
1326@verbatiminclude package-hello.scm
1327@end example
1328
1329Developers may find it useful to include such a @file{package.scm} file
f97c9175 1330in the root of their project source tree that can be used to test
0d279400
DT
1331development snapshots and create reproducible development environments
1332(@pxref{Invoking guix environment}).
1333
6447738c
MW
1334@item --remove=@var{package} @dots{}
1335@itemx -r @var{package} @dots{}
1336Remove the specified @var{package}s.
eeaf4427 1337
6447738c 1338As for @code{--install}, each @var{package} may specify a version number
13ed095c
LC
1339and/or output name in addition to the package name. For instance,
1340@code{-r glibc:debug} would remove the @code{debug} output of
1341@code{glibc}.
1342
6447738c
MW
1343@item --upgrade[=@var{regexp} @dots{}]
1344@itemx -u [@var{regexp} @dots{}]
1345Upgrade all the installed packages. If one or more @var{regexp}s are
1346specified, upgrade only installed packages whose name matches a
d5f01e48 1347@var{regexp}. Also see the @code{--do-not-upgrade} option below.
eeaf4427 1348
f651b477
LC
1349Note that this upgrades package to the latest version of packages found
1350in the distribution currently installed. To update your distribution,
1351you should regularly run @command{guix pull} (@pxref{Invoking guix
1352pull}).
1353
d5f01e48
MW
1354@item --do-not-upgrade[=@var{regexp} @dots{}]
1355When used together with the @code{--upgrade} option, do @emph{not}
1356upgrade any packages whose name matches a @var{regexp}. For example, to
1357upgrade all packages in the current profile except those containing the
1358substring ``emacs'':
1359
1360@example
1361$ guix package --upgrade . --do-not-upgrade emacs
1362@end example
1363
99bd74d5 1364@item @anchor{profile-manifest}--manifest=@var{file}
1b676447 1365@itemx -m @var{file}
99bd74d5
LC
1366@cindex profile declaration
1367@cindex profile manifest
1368Create a new generation of the profile from the manifest object
1b676447
DT
1369returned by the Scheme code in @var{file}.
1370
99bd74d5
LC
1371This allows you to @emph{declare} the profile's contents rather than
1372constructing it through a sequence of @code{--install} and similar
1373commands. The advantage is that @var{file} can be put under version
1374control, copied to different machines to reproduce the same profile, and
1375so on.
1376
1377@c FIXME: Add reference to (guix profile) documentation when available.
1378@var{file} must return a @dfn{manifest} object, which is roughly a list
1379of packages:
1b676447 1380
99bd74d5 1381@findex packages->manifest
1b676447 1382@example
99bd74d5 1383(use-package-modules guile emacs)
1b676447
DT
1384
1385(packages->manifest
99bd74d5
LC
1386 (list emacs
1387 guile-2.0
1b676447 1388 ;; Use a specific package output.
99bd74d5 1389 (list guile-2.0 "debug")))
1b676447
DT
1390@end example
1391
24e262f0
LC
1392@item --roll-back
1393Roll back to the previous @dfn{generation} of the profile---i.e., undo
1394the last transaction.
1395
1396When combined with options such as @code{--install}, roll back occurs
1397before any other actions.
1398
d9307267 1399When rolling back from the first generation that actually contains
4b2bc804 1400installed packages, the profile is made to point to the @dfn{zeroth
f97c9175 1401generation}, which contains no files apart from its own metadata.
d9307267 1402
f97c9175
AE
1403After having rolled back, installing, removing, or upgrading packages
1404overwrites previous future generations. Thus, the history of the
1405generations in a profile is always linear.
82fe08ed 1406
b3bb82f1
AK
1407@item --switch-generation=@var{pattern}
1408@itemx -S @var{pattern}
1409Switch to a particular generation defined by @var{pattern}.
1410
1411@var{pattern} may be either a generation number or a number prefixed
1412with ``+'' or ``-''. The latter means: move forward/backward by a
1413specified number of generations. For example, if you want to return to
1414the latest generation after @code{--roll-back}, use
1415@code{--switch-generation=+1}.
1416
1417The difference between @code{--roll-back} and
1418@code{--switch-generation=-1} is that @code{--switch-generation} will
1419not make a zeroth generation, so if a specified generation does not
1420exist, the current generation will not be changed.
1421
dbc31ab2 1422@item --search-paths[=@var{kind}]
5924080d
LC
1423@cindex search paths
1424Report environment variable definitions, in Bash syntax, that may be
1425needed in order to use the set of installed packages. These environment
1426variables are used to specify @dfn{search paths} for files used by some
1427of the installed packages.
1428
1429For example, GCC needs the @code{CPATH} and @code{LIBRARY_PATH}
1430environment variables to be defined so it can look for headers and
1431libraries in the user's profile (@pxref{Environment Variables,,, gcc,
1432Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C
1433library are installed in the profile, then @code{--search-paths} will
1434suggest setting these variables to @code{@var{profile}/include} and
1435@code{@var{profile}/lib}, respectively.
1436
dbc31ab2
LC
1437The typical use case is to define these environment variables in the
1438shell:
1439
1440@example
1441$ eval `guix package --search-paths`
1442@end example
1443
1444@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix},
1445meaning that the returned environment variable definitions will either
1446be exact settings, or prefixes or suffixes of the current value of these
1447variables. When omitted, @var{kind} defaults to @code{exact}.
1448
fc2d2339
LC
1449This option can also be used to compute the @emph{combined} search paths
1450of several profiles. Consider this example:
1451
1452@example
1453$ guix package -p foo -i guile
1454$ guix package -p bar -i guile-json
1455$ guix package -p foo -p bar --search-paths
1456@end example
1457
1458The last command above reports about the @code{GUILE_LOAD_PATH}
1459variable, even though, taken individually, neither @file{foo} nor
1460@file{bar} would lead to that recommendation.
1461
1462
eeaf4427
LC
1463@item --profile=@var{profile}
1464@itemx -p @var{profile}
1465Use @var{profile} instead of the user's default profile.
1466
70915c1a 1467@item --verbose
f97c9175
AE
1468Produce verbose output. In particular, emit the build log of the
1469environment on the standard error port.
70915c1a 1470
eeaf4427
LC
1471@item --bootstrap
1472Use the bootstrap Guile to build the profile. This option is only
1473useful to distribution developers.
1474
1475@end table
1476
f97c9175 1477In addition to these actions, @command{guix package} supports the
733b4130
LC
1478following options to query the current state of a profile, or the
1479availability of packages:
eeaf4427 1480
733b4130
LC
1481@table @option
1482
acc08466
NK
1483@item --search=@var{regexp}
1484@itemx -s @var{regexp}
b110869d 1485@cindex searching for packages
5763ad92 1486List the available packages whose name, synopsis, or description matches
f97c9175 1487@var{regexp}. Print all the metadata of matching packages in
299112d3
LC
1488@code{recutils} format (@pxref{Top, GNU recutils databases,, recutils,
1489GNU recutils manual}).
acc08466 1490
299112d3
LC
1491This allows specific fields to be extracted using the @command{recsel}
1492command, for instance:
1493
1494@example
e49951eb 1495$ guix package -s malloc | recsel -p name,version
299112d3
LC
1496name: glibc
1497version: 2.17
1498
1499name: libgc
1500version: 7.2alpha6
1501@end example
acc08466 1502
a12d92f5
LC
1503Similarly, to show the name of all the packages available under the
1504terms of the GNU@tie{}LGPL version 3:
1505
1506@example
1507$ guix package -s "" | recsel -p name -e 'license ~ "LGPL 3"'
1508name: elfutils
1509
1510name: gmp
1511@dots{}
1512@end example
1513
db5a9444
LC
1514It is also possible to refine search results using several @code{-s}
1515flags. For example, the following command returns a list of board
1516games:
1517
1518@example
1519$ guix package -s '\<board\>' -s game | recsel -p name
1520name: gnubg
1521@dots{}
1522@end example
1523
1524If we were to omit @code{-s game}, we would also get software packages
1525that deal with printed circuit boards; removing the angle brackets
1526around @code{board} would further add packages that have to do with
1527keyboards.
1528
b110869d
LC
1529And now for a more elaborate example. The following command searches
1530for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby
1531libraries, and prints the name and synopsis of the matching packages:
1532
1533@example
1534$ guix package -s crypto -s library | \
1535 recsel -e '! (name ~ "^(ghc|perl|python|ruby)")' -p name,synopsis
1536@end example
1537
1538@noindent
1539@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more
1540information on @dfn{selection expressions} for @code{recsel -e}.
1541
2aa6efb0
CR
1542@item --show=@var{package}
1543Show details about @var{package}, taken from the list of available packages, in
1544@code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU
1545recutils manual}).
1546
1547@example
1548$ guix package --show=python | recsel -p name,version
1549name: python
1550version: 2.7.6
1551
1552name: python
1553version: 3.3.5
1554@end example
1555
1556You may also specify the full name of a package to only get details about a
1557specific version of it:
1558@example
1559$ guix package --show=python-3.3.5 | recsel -p name,version
1560name: python
1561version: 3.3.5
1562@end example
1563
1564
1565
733b4130
LC
1566@item --list-installed[=@var{regexp}]
1567@itemx -I [@var{regexp}]
bd9bde1c
LC
1568List the currently installed packages in the specified profile, with the
1569most recently installed packages shown last. When @var{regexp} is
1570specified, list only installed packages whose name matches @var{regexp}.
733b4130
LC
1571
1572For each installed package, print the following items, separated by
1573tabs: the package name, its version string, the part of the package that
1574is installed (for instance, @code{out} for the default output,
1575@code{include} for its headers, etc.), and the path of this package in
1576the store.
1577
64fc89b6
LC
1578@item --list-available[=@var{regexp}]
1579@itemx -A [@var{regexp}]
5763ad92 1580List packages currently available in the distribution for this system
a1ba8475
LC
1581(@pxref{GNU Distribution}). When @var{regexp} is specified, list only
1582installed packages whose name matches @var{regexp}.
64fc89b6
LC
1583
1584For each package, print the following items separated by tabs: its name,
6e721c4d
LC
1585its version string, the parts of the package (@pxref{Packages with
1586Multiple Outputs}), and the source location of its definition.
64fc89b6 1587
f566d765
LC
1588@item --list-generations[=@var{pattern}]
1589@itemx -l [@var{pattern}]
1590Return a list of generations along with their creation dates; for each
1591generation, show the installed packages, with the most recently
4b2bc804
NK
1592installed packages shown last. Note that the zeroth generation is never
1593shown.
f566d765
LC
1594
1595For each installed package, print the following items, separated by
1596tabs: the name of a package, its version string, the part of the package
1597that is installed (@pxref{Packages with Multiple Outputs}), and the
1598location of this package in the store.
1599
1600When @var{pattern} is used, the command returns only matching
1601generations. Valid patterns include:
1602
1603@itemize
1604@item @emph{Integers and comma-separated integers}. Both patterns denote
1605generation numbers. For instance, @code{--list-generations=1} returns
1606the first one.
1607
1608And @code{--list-generations=1,8,2} outputs three generations in the
1609specified order. Neither spaces nor trailing commas are allowed.
1610
1611@item @emph{Ranges}. @code{--list-generations=2..9} prints the
1612specified generations and everything in between. Note that the start of
f97c9175 1613a range must be smaller than its end.
f566d765
LC
1614
1615It is also possible to omit the endpoint. For example,
1616@code{--list-generations=2..}, returns all generations starting from the
1617second one.
1618
1619@item @emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks,
1620or months by passing an integer along with the first letter of the
d7ddb257
LC
1621duration. For example, @code{--list-generations=20d} lists generations
1622that are up to 20 days old.
f566d765
LC
1623@end itemize
1624
b7884ca3
NK
1625@item --delete-generations[=@var{pattern}]
1626@itemx -d [@var{pattern}]
d7ddb257
LC
1627When @var{pattern} is omitted, delete all generations except the current
1628one.
b7884ca3
NK
1629
1630This command accepts the same patterns as @option{--list-generations}.
d7ddb257
LC
1631When @var{pattern} is specified, delete the matching generations. When
1632@var{pattern} specifies a duration, generations @emph{older} than the
1633specified duration match. For instance, @code{--delete-generations=1m}
1634deletes generations that are more than one month old.
1635
391bdd8f
LC
1636If the current generation matches, it is @emph{not} deleted. Also, the
1637zeroth generation is never deleted.
b7884ca3 1638
f97c9175 1639Note that deleting generations prevents rolling back to them.
1bb9900a
LC
1640Consequently, this command must be used with care.
1641
733b4130 1642@end table
eeaf4427 1643
70ee5642 1644Finally, since @command{guix package} may actually start build
ccd7158d 1645processes, it supports all the common build options (@pxref{Common Build
f97c9175 1646Options}). It also supports package transformation options, such as
b8638f03
LC
1647@option{--with-source} (@pxref{Package Transformation Options}).
1648However, note that package transformations are lost when upgrading; to
f97c9175 1649preserve transformations across upgrades, you should define your own
b8638f03
LC
1650package variant in a Guile module and add it to @code{GUIX_PACKAGE_PATH}
1651(@pxref{Defining Packages}).
1652
70ee5642 1653
c4202d60
LC
1654@node Substitutes
1655@section Substitutes
1656
1657@cindex substitutes
1658@cindex pre-built binaries
1659Guix supports transparent source/binary deployment, which means that it
1660can either build things locally, or download pre-built items from a
1661server. We call these pre-built items @dfn{substitutes}---they are
1662substitutes for local build results. In many cases, downloading a
1663substitute is much faster than building things locally.
1664
1665Substitutes can be anything resulting from a derivation build
1666(@pxref{Derivations}). Of course, in the common case, they are
1667pre-built package binaries, but source tarballs, for instance, which
1668also result from derivation builds, can be available as substitutes.
1669
1670The @code{hydra.gnu.org} server is a front-end to a build farm that
1671builds packages from the GNU distribution continuously for some
32950fc8
AK
1672architectures, and makes them available as substitutes (@pxref{Emacs
1673Hydra}, for information on how to query the continuous integration
1674server). This is the
f8a8e0fe
LC
1675default source of substitutes; it can be overridden by passing the
1676@option{--substitute-urls} option either to @command{guix-daemon}
1677(@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}})
1678or to client tools such as @command{guix package}
1679(@pxref{client-substitute-urls,, client @option{--substitute-urls}
1680option}).
c4202d60
LC
1681
1682@cindex security
1683@cindex digital signatures
1684To allow Guix to download substitutes from @code{hydra.gnu.org}, you
1685must add its public key to the access control list (ACL) of archive
1686imports, using the @command{guix archive} command (@pxref{Invoking guix
1687archive}). Doing so implies that you trust @code{hydra.gnu.org} to not
1688be compromised and to serve genuine substitutes.
1689
1690This public key is installed along with Guix, in
1691@code{@var{prefix}/share/guix/hydra.gnu.org.pub}, where @var{prefix} is
1692the installation prefix of Guix. If you installed Guix from source,
1693make sure you checked the GPG signature of
1694@file{guix-@value{VERSION}.tar.gz}, which contains this public key file.
1695Then, you can run something like this:
1696
1697@example
1698# guix archive --authorize < hydra.gnu.org.pub
1699@end example
1700
1701Once this is in place, the output of a command like @code{guix build}
1702should change from something like:
1703
1704@example
1705$ guix build emacs --dry-run
1706The following derivations would be built:
1707 /gnu/store/yr7bnx8xwcayd6j95r2clmkdl1qh688w-emacs-24.3.drv
1708 /gnu/store/x8qsh1hlhgjx6cwsjyvybnfv2i37z23w-dbus-1.6.4.tar.gz.drv
1709 /gnu/store/1ixwp12fl950d15h2cj11c73733jay0z-alsa-lib-1.0.27.1.tar.bz2.drv
1710 /gnu/store/nlma1pw0p603fpfiqy7kn4zm105r5dmw-util-linux-2.21.drv
1711@dots{}
1712@end example
1713
1714@noindent
1715to something like:
1716
1717@example
1718$ guix build emacs --dry-run
1719The following files would be downloaded:
1720 /gnu/store/pk3n22lbq6ydamyymqkkz7i69wiwjiwi-emacs-24.3
1721 /gnu/store/2ygn4ncnhrpr61rssa6z0d9x22si0va3-libjpeg-8d
1722 /gnu/store/71yz6lgx4dazma9dwn2mcjxaah9w77jq-cairo-1.12.16
1723 /gnu/store/7zdhgp0n1518lvfn8mb96sxqfmvqrl7v-libxrender-0.9.7
1724@dots{}
1725@end example
1726
1727@noindent
1728This indicates that substitutes from @code{hydra.gnu.org} are usable and
1729will be downloaded, when possible, for future builds.
1730
1731Guix ignores substitutes that are not signed, or that are not signed by
ef27aa9c 1732one of the keys listed in the ACL. It also detects and raises an error
c4202d60
LC
1733when attempting to use a substitute that has been tampered with.
1734
e0c941fe
LC
1735@vindex http_proxy
1736Substitutes are downloaded over HTTP. The @code{http_proxy} environment
1737variable can be set in the environment of @command{guix-daemon} and is
1738honored for downloads of substitutes. Note that the value of
1739@code{http_proxy} in the environment where @command{guix build},
1740@command{guix package}, and other client commands are run has
1741@emph{absolutely no effect}.
1742
c4202d60
LC
1743The substitute mechanism can be disabled globally by running
1744@code{guix-daemon} with @code{--no-substitutes} (@pxref{Invoking
1745guix-daemon}). It can also be disabled temporarily by passing the
1746@code{--no-substitutes} option to @command{guix package}, @command{guix
1747build}, and other command-line tools.
1748
1749
1750Today, each individual's control over their own computing is at the
1751mercy of institutions, corporations, and groups with enough power and
1752determination to subvert the computing infrastructure and exploit its
1753weaknesses. While using @code{hydra.gnu.org} substitutes can be
1754convenient, we encourage users to also build on their own, or even run
1755their own build farm, such that @code{hydra.gnu.org} is less of an
8ce229fc
LC
1756interesting target. One way to help is by publishing the software you
1757build using @command{guix publish} so that others have one more choice
1758of server to download substitutes from (@pxref{Invoking guix publish}).
c4202d60
LC
1759
1760Guix has the foundations to maximize build reproducibility
1761(@pxref{Features}). In most cases, independent builds of a given
1762package or derivation should yield bit-identical results. Thus, through
1763a diverse set of independent package builds, we can strengthen the
d23c20f1
LC
1764integrity of our systems. The @command{guix challenge} command aims to
1765help users assess substitute servers, and to assist developers in
1766finding out about non-deterministic package builds (@pxref{Invoking guix
a8d65643
LC
1767challenge}). Similarly, the @option{--check} option of @command{guix
1768build} allows users to check whether previously-installed substitutes
1769are genuine by rebuilding them locally (@pxref{build-check,
1770@command{guix build --check}}).
c4202d60
LC
1771
1772In the future, we want Guix to have support to publish and retrieve
1773binaries to/from other users, in a peer-to-peer fashion. If you would
1774like to discuss this project, join us on @email{guix-devel@@gnu.org}.
1775
1776
6e721c4d
LC
1777@node Packages with Multiple Outputs
1778@section Packages with Multiple Outputs
1779
1780@cindex multiple-output packages
1781@cindex package outputs
1782
1783Often, packages defined in Guix have a single @dfn{output}---i.e., the
f97c9175 1784source package leads to exactly one directory in the store. When running
6e721c4d
LC
1785@command{guix package -i glibc}, one installs the default output of the
1786GNU libc package; the default output is called @code{out}, but its name
1787can be omitted as shown in this command. In this particular case, the
1788default output of @code{glibc} contains all the C header files, shared
1789libraries, static libraries, Info documentation, and other supporting
1790files.
1791
1792Sometimes it is more appropriate to separate the various types of files
1793produced from a single source package into separate outputs. For
1794instance, the GLib C library (used by GTK+ and related packages)
1795installs more than 20 MiB of reference documentation as HTML pages.
1796To save space for users who do not need it, the documentation goes to a
1797separate output, called @code{doc}. To install the main GLib output,
1798which contains everything but the documentation, one would run:
1799
1800@example
1801guix package -i glib
1802@end example
1803
1804The command to install its documentation is:
1805
1806@example
1807guix package -i glib:doc
1808@end example
1809
1810Some packages install programs with different ``dependency footprints''.
f97c9175 1811For instance, the WordNet package installs both command-line tools and
6e721c4d
LC
1812graphical user interfaces (GUIs). The former depend solely on the C
1813library, whereas the latter depend on Tcl/Tk and the underlying X
1814libraries. In this case, we leave the command-line tools in the default
1815output, whereas the GUIs are in a separate output. This allows users
fcc58db6
LC
1816who do not need the GUIs to save space. The @command{guix size} command
1817can help find out about such situations (@pxref{Invoking guix size}).
88856916 1818@command{guix graph} can also be helpful (@pxref{Invoking guix graph}).
6e721c4d
LC
1819
1820There are several such multiple-output packages in the GNU distribution.
91ef73d4
LC
1821Other conventional output names include @code{lib} for libraries and
1822possibly header files, @code{bin} for stand-alone programs, and
1823@code{debug} for debugging information (@pxref{Installing Debugging
1824Files}). The outputs of a packages are listed in the third column of
1825the output of @command{guix package --list-available} (@pxref{Invoking
1826guix package}).
6e721c4d 1827
eeaf4427 1828
e49951eb
MW
1829@node Invoking guix gc
1830@section Invoking @command{guix gc}
fe8ff028
LC
1831
1832@cindex garbage collector
f97c9175 1833Packages that are installed, but not used, may be @dfn{garbage-collected}.
e49951eb 1834The @command{guix gc} command allows users to explicitly run the garbage
c22eb992
LC
1835collector to reclaim space from the @file{/gnu/store} directory. It is
1836the @emph{only} way to remove files from @file{/gnu/store}---removing
1837files or directories manually may break it beyond repair!
fe8ff028
LC
1838
1839The garbage collector has a set of known @dfn{roots}: any file under
834129e0 1840@file{/gnu/store} reachable from a root is considered @dfn{live} and
fe8ff028
LC
1841cannot be deleted; any other file is considered @dfn{dead} and may be
1842deleted. The set of garbage collector roots includes default user
e49951eb
MW
1843profiles, and may be augmented with @command{guix build --root}, for
1844example (@pxref{Invoking guix build}).
fe8ff028 1845
1bb9900a
LC
1846Prior to running @code{guix gc --collect-garbage} to make space, it is
1847often useful to remove old generations from user profiles; that way, old
1848package builds referenced by those generations can be reclaimed. This
1849is achieved by running @code{guix package --delete-generations}
1850(@pxref{Invoking guix package}).
1851
e49951eb 1852The @command{guix gc} command has three modes of operation: it can be
fe8ff028 1853used to garbage-collect any dead files (the default), to delete specific
7770aafc
LC
1854files (the @code{--delete} option), to print garbage-collector
1855information, or for more advanced queries. The garbage collection
1856options are as follows:
fe8ff028
LC
1857
1858@table @code
1859@item --collect-garbage[=@var{min}]
1860@itemx -C [@var{min}]
834129e0 1861Collect garbage---i.e., unreachable @file{/gnu/store} files and
fe8ff028
LC
1862sub-directories. This is the default operation when no option is
1863specified.
1864
1865When @var{min} is given, stop once @var{min} bytes have been collected.
1866@var{min} may be a number of bytes, or it may include a unit as a
4a44d7bb
LC
1867suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes
1868(@pxref{Block size, size specifications,, coreutils, GNU Coreutils}).
fe8ff028
LC
1869
1870When @var{min} is omitted, collect all the garbage.
1871
1872@item --delete
1873@itemx -d
1874Attempt to delete all the store files and directories specified as
1875arguments. This fails if some of the files are not in the store, or if
1876they are still live.
1877
30d9aa54
LC
1878@item --list-failures
1879List store items corresponding to cached build failures.
1880
1881This prints nothing unless the daemon was started with
1882@option{--cache-failures} (@pxref{Invoking guix-daemon,
1883@option{--cache-failures}}).
1884
1885@item --clear-failures
1886Remove the specified store items from the failed-build cache.
1887
1888Again, this option only makes sense when the daemon is started with
1889@option{--cache-failures}. Otherwise, it does nothing.
1890
fe8ff028
LC
1891@item --list-dead
1892Show the list of dead files and directories still present in the
1893store---i.e., files and directories no longer reachable from any root.
1894
1895@item --list-live
1896Show the list of live store files and directories.
ba8b732d
LC
1897
1898@end table
1899
1900In addition, the references among existing store files can be queried:
1901
1902@table @code
1903
1904@item --references
1905@itemx --referrers
1906List the references (respectively, the referrers) of store files given
1907as arguments.
1908
8e59fdd5
LC
1909@item --requisites
1910@itemx -R
fcc58db6 1911@cindex closure
8e59fdd5
LC
1912List the requisites of the store files passed as arguments. Requisites
1913include the store files themselves, their references, and the references
1914of these, recursively. In other words, the returned list is the
1915@dfn{transitive closure} of the store files.
1916
f97c9175
AE
1917@xref{Invoking guix size}, for a tool to profile the size of the closure
1918of an element. @xref{Invoking guix graph}, for a tool to visualize
88856916 1919the graph of references.
fcc58db6 1920
fe8ff028
LC
1921@end table
1922
7770aafc
LC
1923Lastly, the following options allow you to check the integrity of the
1924store and to control disk usage.
1925
1926@table @option
1927
1928@item --verify[=@var{options}]
1929@cindex integrity, of the store
1930@cindex integrity checking
1931Verify the integrity of the store.
1932
1933By default, make sure that all the store items marked as valid in the
f97c9175 1934database of the daemon actually exist in @file{/gnu/store}.
7770aafc 1935
f97c9175 1936When provided, @var{options} must be a comma-separated list containing one
7770aafc
LC
1937or more of @code{contents} and @code{repair}.
1938
f97c9175
AE
1939When passing @option{--verify=contents}, the daemon computse the
1940content hash of each store item and compares it against its hash in the
7770aafc
LC
1941database. Hash mismatches are reported as data corruptions. Because it
1942traverses @emph{all the files in the store}, this command can take a
1943long time, especially on systems with a slow disk drive.
1944
1945@cindex repairing the store
1946Using @option{--verify=repair} or @option{--verify=contents,repair}
1947causes the daemon to try to repair corrupt store items by fetching
1948substitutes for them (@pxref{Substitutes}). Because repairing is not
1949atomic, and thus potentially dangerous, it is available only to the
1950system administrator.
1951
1952@item --optimize
1953@cindex deduplication
1954Optimize the store by hard-linking identical files---this is
1955@dfn{deduplication}.
1956
1957The daemon performs deduplication after each successful build or archive
1958import, unless it was started with @code{--disable-deduplication}
1959(@pxref{Invoking guix-daemon, @code{--disable-deduplication}}). Thus,
1960this option is primarily useful when the daemon was running with
1961@code{--disable-deduplication}.
1962
1963@end table
eeaf4427 1964
f651b477
LC
1965@node Invoking guix pull
1966@section Invoking @command{guix pull}
1967
1968Packages are installed or upgraded to the latest version available in
1969the distribution currently available on your local machine. To update
1970that distribution, along with the Guix tools, you must run @command{guix
1971pull}: the command downloads the latest Guix source code and package
1972descriptions, and deploys it.
1973
1974On completion, @command{guix package} will use packages and package
1975versions from this just-retrieved copy of Guix. Not only that, but all
1976the Guix commands and Scheme modules will also be taken from that latest
1977version. New @command{guix} sub-commands added by the update also
ef54b61d
AV
1978become available@footnote{Under the hood, @command{guix pull} updates
1979the @file{~/.config/guix/latest} symbolic link to point to the latest
1980Guix, and the @command{guix} command loads code from there.}.
f651b477
LC
1981
1982The @command{guix pull} command is usually invoked with no arguments,
1983but it supports the following options:
1984
1985@table @code
1986@item --verbose
1987Produce verbose output, writing build logs to the standard error output.
1988
ab5d72ad
LC
1989@item --url=@var{url}
1990Download the source tarball of Guix from @var{url}.
1991
1992By default, the tarball is taken from its canonical address at
1993@code{gnu.org}, for the stable branch of Guix.
1994
f651b477
LC
1995@item --bootstrap
1996Use the bootstrap Guile to build the latest Guix. This option is only
1997useful to Guix developers.
1998@end table
1999
760c60d6
LC
2000
2001@node Invoking guix archive
2002@section Invoking @command{guix archive}
2003
2004The @command{guix archive} command allows users to @dfn{export} files
2005from the store into a single archive, and to later @dfn{import} them.
2006In particular, it allows store files to be transferred from one machine
4d4c4816
AE
2007to the store on another machine.
2008
2009To export store files as an archive to standard output, run:
2010
2011@example
2012guix archive --export @var{options} @var{specifications}...
2013@end example
2014
2015@var{specifications} may be either store file names or package
2016specifications, as for @command{guix package} (@pxref{Invoking guix
2017package}). For instance, the following command creates an archive
2018containing the @code{gui} output of the @code{git} package and the main
2019output of @code{emacs}:
2020
2021@example
2022guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar
2023@end example
2024
2025If the specified packages are not built yet, @command{guix archive}
2026automatically builds them. The build process may be controlled with the
2027common build options (@pxref{Common Build Options}).
2028
2029To transfer the @code{emacs} package to a machine connected over SSH,
2030one would run:
760c60d6
LC
2031
2032@example
56607088 2033guix archive --export -r emacs | ssh the-machine guix archive --import
760c60d6
LC
2034@end example
2035
87236aed 2036@noindent
56607088
LC
2037Similarly, a complete user profile may be transferred from one machine
2038to another like this:
2039
2040@example
2041guix archive --export -r $(readlink -f ~/.guix-profile) | \
2042 ssh the-machine guix-archive --import
2043@end example
2044
2045@noindent
2046However, note that, in both examples, all of @code{emacs} and the
2047profile as well as all of their dependencies are transferred (due to
f97c9175
AE
2048@code{-r}), regardless of what is already available in the store on the
2049target machine. The @code{--missing} option can help figure out which
2050items are missing from the target store.
87236aed 2051
760c60d6 2052Archives are stored in the ``Nix archive'' or ``Nar'' format, which is
0dbd88db
LC
2053comparable in spirit to `tar', but with a few noteworthy differences
2054that make it more appropriate for our purposes. First, rather than
f97c9175 2055recording all Unix metadata for each file, the Nar format only mentions
0dbd88db
LC
2056the file type (regular, directory, or symbolic link); Unix permissions
2057and owner/group are dismissed. Second, the order in which directory
2058entries are stored always follows the order of file names according to
2059the C locale collation order. This makes archive production fully
2060deterministic.
2061
2062When exporting, the daemon digitally signs the contents of the archive,
2063and that digital signature is appended. When importing, the daemon
2064verifies the signature and rejects the import in case of an invalid
2065signature or if the signing key is not authorized.
760c60d6
LC
2066@c FIXME: Add xref to daemon doc about signatures.
2067
2068The main options are:
2069
2070@table @code
2071@item --export
2072Export the specified store files or packages (see below.) Write the
2073resulting archive to the standard output.
2074
56607088
LC
2075Dependencies are @emph{not} included in the output, unless
2076@code{--recursive} is passed.
2077
2078@item -r
2079@itemx --recursive
2080When combined with @code{--export}, this instructs @command{guix
2081archive} to include dependencies of the given items in the archive.
2082Thus, the resulting archive is self-contained: it contains the closure
2083of the exported store items.
2084
760c60d6
LC
2085@item --import
2086Read an archive from the standard input, and import the files listed
2087therein into the store. Abort if the archive has an invalid digital
f82cc5fd
LC
2088signature, or if it is signed by a public key not among the authorized
2089keys (see @code{--authorize} below.)
554f26ec 2090
87236aed
LC
2091@item --missing
2092Read a list of store file names from the standard input, one per line,
2093and write on the standard output the subset of these files missing from
2094the store.
2095
554f26ec 2096@item --generate-key[=@var{parameters}]
f82cc5fd 2097@cindex signing, archives
f97c9175 2098Generate a new key pair for the daemon. This is a prerequisite before
554f26ec
LC
2099archives can be exported with @code{--export}. Note that this operation
2100usually takes time, because it needs to gather enough entropy to
2101generate the key pair.
2102
2103The generated key pair is typically stored under @file{/etc/guix}, in
2104@file{signing-key.pub} (public key) and @file{signing-key.sec} (private
867d8473
LC
2105key, which must be kept secret.) When @var{parameters} is omitted,
2106an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt
2107versions before 1.6.0, it is a 4096-bit RSA key.
f97c9175 2108Alternatively, @var{parameters} can specify
554f26ec
LC
2109@code{genkey} parameters suitable for Libgcrypt (@pxref{General
2110public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The
2111Libgcrypt Reference Manual}).
f82cc5fd
LC
2112
2113@item --authorize
2114@cindex authorizing, archives
2115Authorize imports signed by the public key passed on standard input.
2116The public key must be in ``s-expression advanced format''---i.e., the
2117same format as the @file{signing-key.pub} file.
2118
2119The list of authorized keys is kept in the human-editable file
2120@file{/etc/guix/acl}. The file contains
2121@url{http://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format
2122s-expressions''} and is structured as an access-control list in the
2123@url{http://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure
2124(SPKI)}.
c6f8e9dd
LC
2125
2126@item --extract=@var{directory}
2127@itemx -x @var{directory}
2128Read a single-item archive as served by substitute servers
2129(@pxref{Substitutes}) and extract it to @var{directory}. This is a
2130low-level operation needed in only very narrow use cases; see below.
2131
2132For example, the following command extracts the substitute for Emacs
2133served by @code{hydra.gnu.org} to @file{/tmp/emacs}:
2134
2135@example
2136$ wget -O - \
2137 http://hydra.gnu.org/nar/@dots{}-emacs-24.5 \
2138 | bunzip2 | guix archive -x /tmp/emacs
2139@end example
2140
2141Single-item archives are different from multiple-item archives produced
2142by @command{guix archive --export}; they contain a single store item,
2143and they do @emph{not} embed a signature. Thus this operation does
2144@emph{no} signature verification and its output should be considered
2145unsafe.
2146
2147The primary purpose of this operation is to facilitate inspection of
2148archive contents coming from possibly untrusted substitute servers.
2149
760c60d6
LC
2150@end table
2151
c554de89
AK
2152@c *********************************************************************
2153@include emacs.texi
760c60d6 2154
568717fd
LC
2155@c *********************************************************************
2156@node Programming Interface
2157@chapter Programming Interface
2158
3dc1970d
LC
2159GNU Guix provides several Scheme programming interfaces (APIs) to
2160define, build, and query packages. The first interface allows users to
2161write high-level package definitions. These definitions refer to
2162familiar packaging concepts, such as the name and version of a package,
2163its build system, and its dependencies. These definitions can then be
2164turned into concrete build actions.
2165
ba55b1cb 2166Build actions are performed by the Guix daemon, on behalf of users. In a
3dc1970d 2167standard setup, the daemon has write access to the store---the
834129e0 2168@file{/gnu/store} directory---whereas users do not. The recommended
3dc1970d
LC
2169setup also has the daemon perform builds in chroots, under a specific
2170build users, to minimize interference with the rest of the system.
2171
2172@cindex derivation
2173Lower-level APIs are available to interact with the daemon and the
2174store. To instruct the daemon to perform a build action, users actually
2175provide it with a @dfn{derivation}. A derivation is a low-level
2176representation of the build actions to be taken, and the environment in
2177which they should occur---derivations are to package definitions what
49ad317a
LC
2178assembly is to C programs. The term ``derivation'' comes from the fact
2179that build results @emph{derive} from them.
3dc1970d
LC
2180
2181This chapter describes all these APIs in turn, starting from high-level
2182package definitions.
2183
568717fd 2184@menu
b860f382 2185* Defining Packages:: Defining new packages.
7458bd0a 2186* Build Systems:: Specifying how packages are built.
b860f382
LC
2187* The Store:: Manipulating the package store.
2188* Derivations:: Low-level interface to package derivations.
2189* The Store Monad:: Purely functional interface to the store.
21b679f6 2190* G-Expressions:: Manipulating build expressions.
568717fd
LC
2191@end menu
2192
2193@node Defining Packages
2194@section Defining Packages
2195
3dc1970d
LC
2196The high-level interface to package definitions is implemented in the
2197@code{(guix packages)} and @code{(guix build-system)} modules. As an
2198example, the package definition, or @dfn{recipe}, for the GNU Hello
2199package looks like this:
2200
2201@example
e7f34eb0
LC
2202(define-module (gnu packages hello)
2203 #:use-module (guix packages)
2204 #:use-module (guix download)
2205 #:use-module (guix build-system gnu)
a6dcdcac
SB
2206 #:use-module (guix licenses)
2207 #:use-module (gnu packages gawk))
b22a12fd 2208
79f5dd59 2209(define-public hello
3dc1970d
LC
2210 (package
2211 (name "hello")
17d8e33f 2212 (version "2.10")
3dc1970d 2213 (source (origin
17d8e33f
ML
2214 (method url-fetch)
2215 (uri (string-append "mirror://gnu/hello/hello-" version
2216 ".tar.gz"))
2217 (sha256
2218 (base32
2219 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
3dc1970d 2220 (build-system gnu-build-system)
7458bd0a 2221 (arguments `(#:configure-flags '("--enable-silent-rules")))
3dc1970d 2222 (inputs `(("gawk" ,gawk)))
7458bd0a
LC
2223 (synopsis "Hello, GNU world: An example GNU package")
2224 (description "Guess what GNU Hello prints!")
3dc1970d 2225 (home-page "http://www.gnu.org/software/hello/")
b22a12fd 2226 (license gpl3+)))
3dc1970d
LC
2227@end example
2228
2229@noindent
2230Without being a Scheme expert, the reader may have guessed the meaning
f97c9175
AE
2231of the various fields here. This expression binds the variable
2232@code{hello} to a @code{<package>} object, which is essentially a record
3dc1970d
LC
2233(@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}).
2234This package object can be inspected using procedures found in the
2235@code{(guix packages)} module; for instance, @code{(package-name hello)}
2236returns---surprise!---@code{"hello"}.
2237
2f7d2d91
LC
2238With luck, you may be able to import part or all of the definition of
2239the package you are interested in from another repository, using the
2240@code{guix import} command (@pxref{Invoking guix import}).
2241
f97c9175 2242In the example above, @var{hello} is defined in a module of its own,
e7f34eb0
LC
2243@code{(gnu packages hello)}. Technically, this is not strictly
2244necessary, but it is convenient to do so: all the packages defined in
2245modules under @code{(gnu packages @dots{})} are automatically known to
2246the command-line tools (@pxref{Package Modules}).
2247
3dc1970d
LC
2248There are a few points worth noting in the above package definition:
2249
2250@itemize
2251@item
a2bf4907
LC
2252The @code{source} field of the package is an @code{<origin>} object
2253(@pxref{origin Reference}, for the complete reference).
3dc1970d
LC
2254Here, the @code{url-fetch} method from @code{(guix download)} is used,
2255meaning that the source is a file to be downloaded over FTP or HTTP.
2256
2257The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of
2258the GNU mirrors defined in @code{(guix download)}.
2259
2260The @code{sha256} field specifies the expected SHA256 hash of the file
2261being downloaded. It is mandatory, and allows Guix to check the
2262integrity of the file. The @code{(base32 @dots{})} form introduces the
6c365eca 2263base32 representation of the hash. You can obtain this information with
210cc920
LC
2264@code{guix download} (@pxref{Invoking guix download}) and @code{guix
2265hash} (@pxref{Invoking guix hash}).
3dc1970d 2266
f9cc8971
LC
2267@cindex patches
2268When needed, the @code{origin} form can also have a @code{patches} field
2269listing patches to be applied, and a @code{snippet} field giving a
2270Scheme expression to modify the source code.
2271
3dc1970d
LC
2272@item
2273@cindex GNU Build System
7458bd0a
LC
2274The @code{build-system} field specifies the procedure to build the
2275package (@pxref{Build Systems}). Here, @var{gnu-build-system}
2276represents the familiar GNU Build System, where packages may be
2277configured, built, and installed with the usual @code{./configure &&
2278make && make check && make install} command sequence.
2279
2280@item
2281The @code{arguments} field specifies options for the build system
2282(@pxref{Build Systems}). Here it is interpreted by
2283@var{gnu-build-system} as a request run @file{configure} with the
2284@code{--enable-silent-rules} flag.
3dc1970d
LC
2285
2286@item
2287The @code{inputs} field specifies inputs to the build process---i.e.,
2288build-time or run-time dependencies of the package. Here, we define an
2289input called @code{"gawk"} whose value is that of the @var{gawk}
2290variable; @var{gawk} is itself bound to a @code{<package>} object.
2291
2292Note that GCC, Coreutils, Bash, and other essential tools do not need to
2293be specified as inputs here. Instead, @var{gnu-build-system} takes care
7458bd0a 2294of ensuring that they are present (@pxref{Build Systems}).
3dc1970d
LC
2295
2296However, any other dependencies need to be specified in the
2297@code{inputs} field. Any dependency not specified here will simply be
2298unavailable to the build process, possibly leading to a build failure.
2299@end itemize
2300
87eafdbd
TUBK
2301@xref{package Reference}, for a full description of possible fields.
2302
2f7d2d91 2303Once a package definition is in place, the
e49951eb 2304package may actually be built using the @code{guix build} command-line
39bee8a2
LC
2305tool (@pxref{Invoking guix build}). You can easily jump back to the
2306package definition using the @command{guix edit} command
2307(@pxref{Invoking guix edit}).
2308@xref{Packaging Guidelines}, for
b4f5e0e8
CR
2309more information on how to test package definitions, and
2310@ref{Invoking guix lint}, for information on how to check a definition
2311for style conformance.
2312
f97c9175 2313Finally, updating the package definition to a new upstream version
7458bd0a
LC
2314can be partly automated by the @command{guix refresh} command
2315(@pxref{Invoking guix refresh}).
3dc1970d
LC
2316
2317Behind the scenes, a derivation corresponding to the @code{<package>}
2318object is first computed by the @code{package-derivation} procedure.
834129e0 2319That derivation is stored in a @code{.drv} file under @file{/gnu/store}.
ba55b1cb 2320The build actions it prescribes may then be realized by using the
3dc1970d
LC
2321@code{build-derivations} procedure (@pxref{The Store}).
2322
2323@deffn {Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]
59688fc4
LC
2324Return the @code{<derivation>} object of @var{package} for @var{system}
2325(@pxref{Derivations}).
3dc1970d
LC
2326
2327@var{package} must be a valid @code{<package>} object, and @var{system}
2328must be a string denoting the target system type---e.g.,
2329@code{"x86_64-linux"} for an x86_64 Linux-based GNU system. @var{store}
2330must be a connection to the daemon, which operates on the store
2331(@pxref{The Store}).
2332@end deffn
568717fd 2333
9c1edabd
LC
2334@noindent
2335@cindex cross-compilation
2336Similarly, it is possible to compute a derivation that cross-builds a
2337package for some other system:
2338
2339@deffn {Scheme Procedure} package-cross-derivation @var{store} @
2340 @var{package} @var{target} [@var{system}]
59688fc4
LC
2341Return the @code{<derivation>} object of @var{package} cross-built from
2342@var{system} to @var{target}.
9c1edabd
LC
2343
2344@var{target} must be a valid GNU triplet denoting the target hardware
2345and operating system, such as @code{"mips64el-linux-gnu"}
2346(@pxref{Configuration Names, GNU configuration triplets,, configure, GNU
2347Configure and Build System}).
2348@end deffn
2349
87eafdbd
TUBK
2350@menu
2351* package Reference :: The package data type.
2352* origin Reference:: The origin data type.
2353@end menu
2354
2355
2356@node package Reference
2357@subsection @code{package} Reference
2358
2359This section summarizes all the options available in @code{package}
2360declarations (@pxref{Defining Packages}).
2361
2362@deftp {Data Type} package
2363This is the data type representing a package recipe.
2364
2365@table @asis
2366@item @code{name}
2367The name of the package, as a string.
2368
2369@item @code{version}
2370The version of the package, as a string.
2371
2372@item @code{source}
2373An origin object telling how the source code for the package should be
2374acquired (@pxref{origin Reference}).
2375
2376@item @code{build-system}
2377The build system that should be used to build the package (@pxref{Build
2378Systems}).
2379
2380@item @code{arguments} (default: @code{'()})
2381The arguments that should be passed to the build system. This is a
2382list, typically containing sequential keyword-value pairs.
2383
2384@item @code{inputs} (default: @code{'()})
70650c68
LC
2385@itemx @code{native-inputs} (default: @code{'()})
2386@itemx @code{propagated-inputs} (default: @code{'()})
2387@cindex inputs, of packages
2388These fields list dependencies of the package. Each one is a list of
2389tuples, where each tuple has a label for the input (a string) as its
2390first element, a package, origin, or derivation as its second element,
2391and optionally the name of the output thereof that should be used, which
2392defaults to @code{"out"} (@pxref{Packages with Multiple Outputs}, for
f97c9175 2393more on package outputs). For example, the list below specifies three
70650c68 2394inputs:
87eafdbd 2395
70650c68
LC
2396@example
2397`(("libffi" ,libffi)
2398 ("libunistring" ,libunistring)
2399 ("glib:bin" ,glib "bin")) ;the "bin" output of Glib
2400@end example
2401
2402@cindex cross compilation, package dependencies
2403The distinction between @code{native-inputs} and @code{inputs} is
2404necessary when considering cross-compilation. When cross-compiling,
2405dependencies listed in @code{inputs} are built for the @emph{target}
2406architecture; conversely, dependencies listed in @code{native-inputs}
2407are built for the architecture of the @emph{build} machine.
2408
f97c9175
AE
2409@code{native-inputs} is typically used to list tools needed at
2410build time, but not at run time, such as Autoconf, Automake, pkg-config,
70650c68
LC
2411Gettext, or Bison. @command{guix lint} can report likely mistakes in
2412this area (@pxref{Invoking guix lint}).
2413
2414@anchor{package-propagated-inputs}
2415Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the
f97c9175
AE
2416specified packages will be automatically installed alongside the package
2417they belong to (@pxref{package-cmd-propagated-inputs, @command{guix
70650c68
LC
2418package}}, for information on how @command{guix package} deals with
2419propagated inputs.)
21461f27 2420
e0508b6b
LC
2421For example this is necessary when a C/C++ library needs headers of
2422another library to compile, or when a pkg-config file refers to another
2423one @i{via} its @code{Requires} field.
2424
f97c9175
AE
2425Another example where @code{propagated-inputs} is useful is for languages
2426that lack a facility to record the run-time search path akin to the
2427@code{RUNPATH}of ELF files; this includes Guile, Python, Perl, GHC, and
e0508b6b
LC
2428more. To ensure that libraries written in those languages can find
2429library code they depend on at run time, run-time dependencies must be
2430listed in @code{propagated-inputs} rather than @code{inputs}.
87eafdbd 2431
87eafdbd
TUBK
2432@item @code{self-native-input?} (default: @code{#f})
2433This is a Boolean field telling whether the package should use itself as
2434a native input when cross-compiling.
2435
2436@item @code{outputs} (default: @code{'("out")})
2437The list of output names of the package. @xref{Packages with Multiple
2438Outputs}, for typical uses of additional outputs.
2439
2440@item @code{native-search-paths} (default: @code{'()})
2441@itemx @code{search-paths} (default: @code{'()})
2442A list of @code{search-path-specification} objects describing
2443search-path environment variables honored by the package.
2444
2445@item @code{replacement} (default: @code{#f})
f97c9175 2446This must be either @code{#f} or a package object that will be used as a
87eafdbd
TUBK
2447@dfn{replacement} for this package. @xref{Security Updates, grafts},
2448for details.
2449
2450@item @code{synopsis}
2451A one-line description of the package.
2452
2453@item @code{description}
2454A more elaborate description of the package.
2455
2456@item @code{license}
f97c9175
AE
2457The license of the package; a value from @code{(guix licenses)},
2458or a list of such values.
87eafdbd
TUBK
2459
2460@item @code{home-page}
2461The URL to the home-page of the package, as a string.
2462
2463@item @code{supported-systems} (default: @var{%supported-systems})
2464The list of systems supported by the package, as strings of the form
2465@code{architecture-kernel}, for example @code{"x86_64-linux"}.
2466
2467@item @code{maintainers} (default: @code{'()})
2468The list of maintainers of the package, as @code{maintainer} objects.
2469
2470@item @code{location} (default: source location of the @code{package} form)
f97c9175 2471The source location of the package. It is useful to override this when
87eafdbd
TUBK
2472inheriting from another package, in which case this field is not
2473automatically corrected.
2474@end table
2475@end deftp
2476
2477
2478@node origin Reference
2479@subsection @code{origin} Reference
2480
2481This section summarizes all the options available in @code{origin}
2482declarations (@pxref{Defining Packages}).
2483
2484@deftp {Data Type} origin
2485This is the data type representing a source code origin.
2486
2487@table @asis
2488@item @code{uri}
2489An object containing the URI of the source. The object type depends on
2490the @code{method} (see below). For example, when using the
2491@var{url-fetch} method of @code{(guix download)}, the valid @code{uri}
2492values are: a URL represented as a string, or a list thereof.
2493
2494@item @code{method}
f97c9175 2495A procedure that handles the URI.
87eafdbd
TUBK
2496
2497Examples include:
2498
2499@table @asis
2500@item @var{url-fetch} from @code{(guix download)}
f97c9175 2501download a file from the HTTP, HTTPS, or FTP URL specified in the
87eafdbd
TUBK
2502@code{uri} field;
2503
2504@item @var{git-fetch} from @code{(guix git-download)}
2505clone the Git version control repository, and check out the revision
2506specified in the @code{uri} field as a @code{git-reference} object; a
2507@code{git-reference} looks like this:
2508
2509@example
2510(git-reference
2511 (url "git://git.debian.org/git/pkg-shadow/shadow")
2512 (commit "v4.1.5.1"))
2513@end example
2514@end table
2515
2516@item @code{sha256}
2517A bytevector containing the SHA-256 hash of the source. Typically the
2518@code{base32} form is used here to generate the bytevector from a
2519base-32 string.
2520
2521@item @code{file-name} (default: @code{#f})
2522The file name under which the source code should be saved. When this is
2523@code{#f}, a sensible default value will be used in most cases. In case
2524the source is fetched from a URL, the file name from the URL will be
f97c9175 2525used. For version control checkouts, it is recommended to provide the
87eafdbd
TUBK
2526file name explicitly because the default is not very descriptive.
2527
2528@item @code{patches} (default: @code{'()})
2529A list of file names containing patches to be applied to the source.
2530
2531@item @code{snippet} (default: @code{#f})
2532A quoted piece of code that will be run in the source directory to make
2533any modifications, which is sometimes more convenient than a patch.
2534
2535@item @code{patch-flags} (default: @code{'("-p1")})
2536A list of command-line flags that should be passed to the @code{patch}
2537command.
2538
2539@item @code{patch-inputs} (default: @code{#f})
2540Input packages or derivations to the patching process. When this is
2541@code{#f}, the usual set of inputs necessary for patching are provided,
2542such as GNU@tie{}Patch.
2543
2544@item @code{modules} (default: @code{'()})
2545A list of Guile modules that should be loaded during the patching
2546process and while running the code in the @code{snippet} field.
2547
2548@item @code{imported-modules} (default: @code{'()})
2549The list of Guile modules to import in the patch derivation, for use by
2550the @code{snippet}.
2551
2552@item @code{patch-guile} (default: @code{#f})
2553The Guile package that should be used in the patching process. When
2554this is @code{#f}, a sensible default is used.
2555@end table
2556@end deftp
2557
9c1edabd 2558
7458bd0a
LC
2559@node Build Systems
2560@section Build Systems
2561
2562@cindex build system
2563Each package definition specifies a @dfn{build system} and arguments for
2564that build system (@pxref{Defining Packages}). This @code{build-system}
f97c9175 2565field represents the build procedure of the package, as well as implicit
7458bd0a
LC
2566dependencies of that build procedure.
2567
2568Build systems are @code{<build-system>} objects. The interface to
2569create and manipulate them is provided by the @code{(guix build-system)}
2570module, and actual build systems are exported by specific modules.
2571
f5fd4fd2 2572@cindex bag (low-level package representation)
0d5a559f
LC
2573Under the hood, build systems first compile package objects to
2574@dfn{bags}. A @dfn{bag} is like a package, but with less
2575ornamentation---in other words, a bag is a lower-level representation of
2576a package, which includes all the inputs of that package, including some
2577that were implicitly added by the build system. This intermediate
2578representation is then compiled to a derivation (@pxref{Derivations}).
2579
7458bd0a
LC
2580Build systems accept an optional list of @dfn{arguments}. In package
2581definitions, these are passed @i{via} the @code{arguments} field
2582(@pxref{Defining Packages}). They are typically keyword arguments
2583(@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU
2584Guile Reference Manual}). The value of these arguments is usually
2585evaluated in the @dfn{build stratum}---i.e., by a Guile process launched
2586by the daemon (@pxref{Derivations}).
2587
2588The main build system is @var{gnu-build-system}, which implements the
f97c9175 2589standard build procedure for GNU and many other packages. It
7458bd0a
LC
2590is provided by the @code{(guix build-system gnu)} module.
2591
2592@defvr {Scheme Variable} gnu-build-system
2593@var{gnu-build-system} represents the GNU Build System, and variants
2594thereof (@pxref{Configuration, configuration and makefile conventions,,
2595standards, GNU Coding Standards}).
2596
2597@cindex build phases
f97c9175 2598In a nutshell, packages using it are configured, built, and installed with
7458bd0a
LC
2599the usual @code{./configure && make && make check && make install}
2600command sequence. In practice, a few additional steps are often needed.
2601All these steps are split up in separate @dfn{phases},
2602notably@footnote{Please see the @code{(guix build gnu-build-system)}
2603modules for more details about the build phases.}:
2604
2605@table @code
2606@item unpack
2607Unpack the source tarball, and change the current directory to the
2608extracted source tree. If the source is actually a directory, copy it
2609to the build tree, and enter that directory.
2610
2611@item patch-source-shebangs
2612Patch shebangs encountered in source files so they refer to the right
2613store file names. For instance, this changes @code{#!/bin/sh} to
2614@code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}.
2615
2616@item configure
2617Run the @file{configure} script with a number of default options, such
2618as @code{--prefix=/gnu/store/@dots{}}, as well as the options specified
2619by the @code{#:configure-flags} argument.
2620
2621@item build
2622Run @code{make} with the list of flags specified with
0917e80e 2623@code{#:make-flags}. If the @code{#:parallel-build?} argument is true
7458bd0a
LC
2624(the default), build with @code{make -j}.
2625
2626@item check
2627Run @code{make check}, or some other target specified with
2628@code{#:test-target}, unless @code{#:tests? #f} is passed. If the
2629@code{#:parallel-tests?} argument is true (the default), run @code{make
2630check -j}.
2631
2632@item install
2633Run @code{make install} with the flags listed in @code{#:make-flags}.
2634
2635@item patch-shebangs
2636Patch shebangs on the installed executable files.
2637
2638@item strip
2639Strip debugging symbols from ELF files (unless @code{#:strip-binaries?}
2640is false), copying them to the @code{debug} output when available
2641(@pxref{Installing Debugging Files}).
2642@end table
2643
2644@vindex %standard-phases
2645The build-side module @code{(guix build gnu-build-system)} defines
2646@var{%standard-phases} as the default list of build phases.
2647@var{%standard-phases} is a list of symbol/procedure pairs, where the
2648procedure implements the actual phase.
2649
2650The list of phases used for a particular package can be changed with the
2651@code{#:phases} parameter. For instance, passing:
2652
2653@example
c2c5dc79 2654#:phases (modify-phases %standard-phases (delete 'configure))
7458bd0a
LC
2655@end example
2656
9bf404e9 2657means that all the phases described above will be used, except the
7458bd0a
LC
2658@code{configure} phase.
2659
2660In addition, this build system ensures that the ``standard'' environment
2661for GNU packages is available. This includes tools such as GCC, libc,
2662Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix
f97c9175
AE
2663build-system gnu)} module for a complete list). We call these the
2664@dfn{implicit inputs} of a package, because package definitions do not
7458bd0a
LC
2665have to mention them.
2666@end defvr
2667
2668Other @code{<build-system>} objects are defined to support other
2669conventions and tools used by free software packages. They inherit most
2670of @var{gnu-build-system}, and differ mainly in the set of inputs
2671implicitly added to the build process, and in the list of phases
2672executed. Some of these build systems are listed below.
2673
2674@defvr {Scheme Variable} cmake-build-system
2675This variable is exported by @code{(guix build-system cmake)}. It
2676implements the build procedure for packages using the
2677@url{http://www.cmake.org, CMake build tool}.
2678
2679It automatically adds the @code{cmake} package to the set of inputs.
2680Which package is used can be specified with the @code{#:cmake}
2681parameter.
9849cfc1
LC
2682
2683The @code{#:configure-flags} parameter is taken as a list of flags
2684passed to the @command{cmake} command. The @code{#:build-type}
2685parameter specifies in abstract terms the flags passed to the compiler;
2686it defaults to @code{"RelWithDebInfo"} (short for ``release mode with
2687debugging information''), which roughly means that code is compiled with
2688@code{-O2 -g}, as is the case for Autoconf-based packages by default.
7458bd0a
LC
2689@end defvr
2690
3afcf52b
FB
2691@defvr {Scheme Variable} glib-or-gtk-build-system
2692This variable is exported by @code{(guix build-system glib-or-gtk)}. It
2693is intended for use with packages making use of GLib or GTK+.
2694
2695This build system adds the following two phases to the ones defined by
2696@var{gnu-build-system}:
2697
2698@table @code
2699@item glib-or-gtk-wrap
f97c9175
AE
2700The phase @code{glib-or-gtk-wrap} ensures that programs in
2701@file{bin/} are able to find GLib ``schemas'' and
3afcf52b
FB
2702@uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+
2703modules}. This is achieved by wrapping the programs in launch scripts
2704that appropriately set the @code{XDG_DATA_DIRS} and @code{GTK_PATH}
2705environment variables.
2706
73aa8ddb
LC
2707It is possible to exclude specific package outputs from that wrapping
2708process by listing their names in the
2709@code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful
2710when an output is known not to contain any GLib or GTK+ binaries, and
2711where wrapping would gratuitously add a dependency of that output on
2712GLib and GTK+.
2713
3afcf52b 2714@item glib-or-gtk-compile-schemas
f97c9175 2715The phase @code{glib-or-gtk-compile-schemas} makes sure that all
3afcf52b 2716@uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html,
f97c9175 2717GSettings schemas} of GLib are compiled. Compilation is performed by the
3afcf52b
FB
2718@command{glib-compile-schemas} program. It is provided by the package
2719@code{glib:bin} which is automatically imported by the build system.
2720The @code{glib} package providing @command{glib-compile-schemas} can be
2721specified with the @code{#:glib} parameter.
2722@end table
2723
2724Both phases are executed after the @code{install} phase.
2725@end defvr
2726
7458bd0a
LC
2727@defvr {Scheme Variable} python-build-system
2728This variable is exported by @code{(guix build-system python)}. It
2729implements the more or less standard build procedure used by Python
2730packages, which consists in running @code{python setup.py build} and
2731then @code{python setup.py install --prefix=/gnu/store/@dots{}}.
2732
2733For packages that install stand-alone Python programs under @code{bin/},
f97c9175 2734it takes care of wrapping these programs so that their @code{PYTHONPATH}
7458bd0a
LC
2735environment variable points to all the Python libraries they depend on.
2736
2737Which Python package is used can be specified with the @code{#:python}
2738parameter.
2739@end defvr
2740
2741@defvr {Scheme Variable} perl-build-system
2742This variable is exported by @code{(guix build-system perl)}. It
2d2a53fc
EB
2743implements the standard build procedure for Perl packages, which either
2744consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}},
2745followed by @code{Build} and @code{Build install}; or in running
2746@code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by
f97c9175 2747@code{make} and @code{make install}, depending on which of
2d2a53fc
EB
2748@code{Build.PL} or @code{Makefile.PL} is present in the package
2749distribution. Preference is given to the former if both @code{Build.PL}
2750and @code{Makefile.PL} exist in the package distribution. This
2751preference can be reversed by specifying @code{#t} for the
2752@code{#:make-maker?} parameter.
2753
2754The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation
2755passes flags specified by the @code{#:make-maker-flags} or
2756@code{#:module-build-flags} parameter, respectively.
7458bd0a
LC
2757
2758Which Perl package is used can be specified with @code{#:perl}.
2759@end defvr
2760
f8f3bef6
RW
2761@defvr {Scheme Variable} r-build-system
2762This variable is exported by @code{(guix build-system r)}. It
2763implements the build procedure used by @uref{http://r-project.org, R}
2764packages, which essentially is little more than running @code{R CMD
2765INSTALL --library=/gnu/store/@dots{}} in an environment where
2766@code{R_LIBS_SITE} contains the paths to all R package inputs. Tests
2767are run after installation using the R function
2768@code{tools::testInstalledPackage}.
2769@end defvr
2770
c08f9818
DT
2771@defvr {Scheme Variable} ruby-build-system
2772This variable is exported by @code{(guix build-system ruby)}. It
2773implements the RubyGems build procedure used by Ruby packages, which
2774involves running @code{gem build} followed by @code{gem install}.
2775
5dc87623
DT
2776The @code{source} field of a package that uses this build system
2777typically references a gem archive, since this is the format that Ruby
2778developers use when releasing their software. The build system unpacks
2779the gem archive, potentially patches the source, runs the test suite,
2780repackages the gem, and installs it. Additionally, directories and
2781tarballs may be referenced to allow building unreleased gems from Git or
2782a traditional source release tarball.
e83c6d00 2783
c08f9818 2784Which Ruby package is used can be specified with the @code{#:ruby}
6e9f2913
PP
2785parameter. A list of additional flags to be passed to the @command{gem}
2786command can be specified with the @code{#:gem-flags} parameter.
c08f9818 2787@end defvr
7458bd0a 2788
a677c726
RW
2789@defvr {Scheme Variable} waf-build-system
2790This variable is exported by @code{(guix build-system waf)}. It
2791implements a build procedure around the @code{waf} script. The common
2792phases---@code{configure}, @code{build}, and @code{install}---are
2793implemented by passing their names as arguments to the @code{waf}
2794script.
2795
2796The @code{waf} script is executed by the Python interpreter. Which
2797Python package is used to run the script can be specified with the
2798@code{#:python} parameter.
2799@end defvr
2800
14dfdf2e
FB
2801@defvr {Scheme Variable} haskell-build-system
2802This variable is exported by @code{(guix build-system haskell)}. It
2803implements the Cabal build procedure used by Haskell packages, which
2804involves running @code{runhaskell Setup.hs configure
2805--prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}.
2806Instead of installing the package by running @code{runhaskell Setup.hs
2807install}, to avoid trying to register libraries in the read-only
2808compiler store directory, the build system uses @code{runhaskell
2809Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In
2810addition, the build system generates the package documentation by
2811running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f}
2812is passed. Optional Haddock parameters can be passed with the help of
2813the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is
2814not found, the build system looks for @code{Setup.lhs} instead.
2815
2816Which Haskell compiler is used can be specified with the @code{#:haskell}
a54bd6d7 2817parameter which defaults to @code{ghc}.
14dfdf2e
FB
2818@end defvr
2819
e9137a53
FB
2820@defvr {Scheme Variable} emacs-build-system
2821This variable is exported by @code{(guix build-system emacs)}. It
f97c9175
AE
2822implements an installation procedure similar to the packaging system
2823of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
e9137a53
FB
2824
2825It first creates the @code{@var{package}-autoloads.el} file, then it
2826byte compiles all Emacs Lisp files. Differently from the Emacs
2827packaging system, the Info documentation files are moved to the standard
2828documentation directory and the @file{dir} file is deleted. Each
2829package is installed in its own directory under
2830@file{share/emacs/site-lisp/guix.d}.
2831@end defvr
2832
7458bd0a
LC
2833Lastly, for packages that do not need anything as sophisticated, a
2834``trivial'' build system is provided. It is trivial in the sense that
2835it provides basically no support: it does not pull any implicit inputs,
2836and does not have a notion of build phases.
2837
2838@defvr {Scheme Variable} trivial-build-system
2839This variable is exported by @code{(guix build-system trivial)}.
2840
2841This build system requires a @code{#:builder} argument. This argument
f97c9175 2842must be a Scheme expression that builds the package output(s)---as
7458bd0a
LC
2843with @code{build-expression->derivation} (@pxref{Derivations,
2844@code{build-expression->derivation}}).
2845@end defvr
2846
568717fd
LC
2847@node The Store
2848@section The Store
2849
e531ac2a
LC
2850@cindex store
2851@cindex store paths
2852
f97c9175
AE
2853Conceptually, the @dfn{store} is the place where derivations that have
2854been built successfully are stored---by default, @file{/gnu/store}.
e531ac2a 2855Sub-directories in the store are referred to as @dfn{store paths}. The
4988dd40 2856store has an associated database that contains information such as the
e531ac2a
LC
2857store paths referred to by each store path, and the list of @emph{valid}
2858store paths---paths that result from a successful build.
2859
2860The store is always accessed by the daemon on behalf of its clients
2861(@pxref{Invoking guix-daemon}). To manipulate the store, clients
f97c9175
AE
2862connect to the daemon over a Unix-domain socket, send requests to it,
2863and read the result---these are remote procedure calls, or RPCs.
e531ac2a
LC
2864
2865The @code{(guix store)} module provides procedures to connect to the
2866daemon, and to perform RPCs. These are described below.
2867
2868@deffn {Scheme Procedure} open-connection [@var{file}] [#:reserve-space? #t]
2869Connect to the daemon over the Unix-domain socket at @var{file}. When
2870@var{reserve-space?} is true, instruct it to reserve a little bit of
2871extra space on the file system so that the garbage collector can still
f97c9175 2872operate should the disk become full. Return a server object.
e531ac2a
LC
2873
2874@var{file} defaults to @var{%default-socket-path}, which is the normal
2875location given the options that were passed to @command{configure}.
2876@end deffn
2877
2878@deffn {Scheme Procedure} close-connection @var{server}
2879Close the connection to @var{server}.
2880@end deffn
2881
2882@defvr {Scheme Variable} current-build-output-port
2883This variable is bound to a SRFI-39 parameter, which refers to the port
2884where build and error logs sent by the daemon should be written.
2885@end defvr
2886
2887Procedures that make RPCs all take a server object as their first
2888argument.
2889
2890@deffn {Scheme Procedure} valid-path? @var{server} @var{path}
2891Return @code{#t} when @var{path} is a valid store path.
2892@end deffn
2893
cfbf9160 2894@deffn {Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]
e531ac2a
LC
2895Add @var{text} under file @var{name} in the store, and return its store
2896path. @var{references} is the list of store paths referred to by the
2897resulting store path.
2898@end deffn
2899
874e6874 2900@deffn {Scheme Procedure} build-derivations @var{server} @var{derivations}
59688fc4
LC
2901Build @var{derivations} (a list of @code{<derivation>} objects or
2902derivation paths), and return when the worker is done building them.
2903Return @code{#t} on success.
874e6874
LC
2904@end deffn
2905
b860f382
LC
2906Note that the @code{(guix monads)} module provides a monad as well as
2907monadic versions of the above procedures, with the goal of making it
2908more convenient to work with code that accesses the store (@pxref{The
2909Store Monad}).
2910
e531ac2a
LC
2911@c FIXME
2912@i{This section is currently incomplete.}
568717fd
LC
2913
2914@node Derivations
2915@section Derivations
2916
874e6874
LC
2917@cindex derivations
2918Low-level build actions and the environment in which they are performed
2919are represented by @dfn{derivations}. A derivation contain the
2920following pieces of information:
2921
2922@itemize
2923@item
2924The outputs of the derivation---derivations produce at least one file or
2925directory in the store, but may produce more.
2926
2927@item
2928The inputs of the derivations, which may be other derivations or plain
2929files in the store (patches, build scripts, etc.)
2930
2931@item
2932The system type targeted by the derivation---e.g., @code{x86_64-linux}.
2933
2934@item
2935The file name of a build script in the store, along with the arguments
2936to be passed.
2937
2938@item
2939A list of environment variables to be defined.
2940
2941@end itemize
2942
2943@cindex derivation path
2944Derivations allow clients of the daemon to communicate build actions to
2945the store. They exist in two forms: as an in-memory representation,
2946both on the client- and daemon-side, and as files in the store whose
2947name end in @code{.drv}---these files are referred to as @dfn{derivation
2948paths}. Derivations paths can be passed to the @code{build-derivations}
2949procedure to perform the build actions they prescribe (@pxref{The
2950Store}).
2951
2952The @code{(guix derivations)} module provides a representation of
2953derivations as Scheme objects, along with procedures to create and
2954otherwise manipulate derivations. The lowest-level primitive to create
2955a derivation is the @code{derivation} procedure:
2956
1909431c
LC
2957@deffn {Scheme Procedure} derivation @var{store} @var{name} @var{builder} @
2958 @var{args} [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
2096ef47 2959 [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @
1909431c 2960 [#:system (%current-system)] [#:references-graphs #f] @
4a6aeb67
LC
2961 [#:allowed-references #f] [#:leaked-env-vars #f] [#:local-build? #f] @
2962 [#:substitutable? #t]
59688fc4
LC
2963Build a derivation with the given arguments, and return the resulting
2964@code{<derivation>} object.
874e6874 2965
2096ef47 2966When @var{hash} and @var{hash-algo} are given, a
874e6874 2967@dfn{fixed-output derivation} is created---i.e., one whose result is
36bbbbd1
LC
2968known in advance, such as a file download. If, in addition,
2969@var{recursive?} is true, then that fixed output may be an executable
2970file or a directory and @var{hash} must be the hash of an archive
2971containing this output.
5b0c9d16 2972
858e9282 2973When @var{references-graphs} is true, it must be a list of file
5b0c9d16
LC
2974name/store path pairs. In that case, the reference graph of each store
2975path is exported in the build environment in the corresponding file, in
2976a simple text format.
1909431c 2977
b53be755
LC
2978When @var{allowed-references} is true, it must be a list of store items
2979or outputs that the derivation's output may refer to.
2980
c0468155
LC
2981When @var{leaked-env-vars} is true, it must be a list of strings
2982denoting environment variables that are allowed to ``leak'' from the
2983daemon's environment to the build environment. This is only applicable
2984to fixed-output derivations---i.e., when @var{hash} is true. The main
2985use is to allow variables such as @code{http_proxy} to be passed to
2986derivations that download files.
2987
1909431c
LC
2988When @var{local-build?} is true, declare that the derivation is not a
2989good candidate for offloading and should rather be built locally
2990(@pxref{Daemon Offload Setup}). This is the case for small derivations
2991where the costs of data transfers would outweigh the benefits.
4a6aeb67
LC
2992
2993When @var{substitutable?} is false, declare that substitutes of the
2994derivation's output should not be used (@pxref{Substitutes}). This is
2995useful, for instance, when building packages that capture details of the
2996host CPU instruction set.
874e6874
LC
2997@end deffn
2998
2999@noindent
3000Here's an example with a shell script as its builder, assuming
3001@var{store} is an open connection to the daemon, and @var{bash} points
3002to a Bash executable in the store:
3003
3004@lisp
3005(use-modules (guix utils)
3006 (guix store)
3007 (guix derivations))
3008
59688fc4
LC
3009(let ((builder ; add the Bash script to the store
3010 (add-text-to-store store "my-builder.sh"
3011 "echo hello world > $out\n" '())))
3012 (derivation store "foo"
3013 bash `("-e" ,builder)
21b679f6 3014 #:inputs `((,bash) (,builder))
59688fc4 3015 #:env-vars '(("HOME" . "/homeless"))))
834129e0 3016@result{} #<derivation /gnu/store/@dots{}-foo.drv => /gnu/store/@dots{}-foo>
874e6874
LC
3017@end lisp
3018
21b679f6
LC
3019As can be guessed, this primitive is cumbersome to use directly. A
3020better approach is to write build scripts in Scheme, of course! The
3021best course of action for that is to write the build code as a
3022``G-expression'', and to pass it to @code{gexp->derivation}. For more
6621cdb6 3023information, @pxref{G-Expressions}.
21b679f6 3024
568717fd 3025
b860f382
LC
3026@node The Store Monad
3027@section The Store Monad
3028
3029@cindex monad
3030
3031The procedures that operate on the store described in the previous
3032sections all take an open connection to the build daemon as their first
3033argument. Although the underlying model is functional, they either have
3034side effects or depend on the current state of the store.
3035
3036The former is inconvenient: the connection to the build daemon has to be
3037carried around in all those functions, making it impossible to compose
3038functions that do not take that parameter with functions that do. The
3039latter can be problematic: since store operations have side effects
3040and/or depend on external state, they have to be properly sequenced.
3041
3042@cindex monadic values
3043@cindex monadic functions
3044This is where the @code{(guix monads)} module comes in. This module
3045provides a framework for working with @dfn{monads}, and a particularly
3046useful monad for our uses, the @dfn{store monad}. Monads are a
3047construct that allows two things: associating ``context'' with values
3048(in our case, the context is the store), and building sequences of
561fb6c3 3049computations (here computations include accesses to the store.) Values
b860f382
LC
3050in a monad---values that carry this additional context---are called
3051@dfn{monadic values}; procedures that return such values are called
3052@dfn{monadic procedures}.
3053
3054Consider this ``normal'' procedure:
3055
3056@example
45adbd62
LC
3057(define (sh-symlink store)
3058 ;; Return a derivation that symlinks the 'bash' executable.
3059 (let* ((drv (package-derivation store bash))
3060 (out (derivation->output-path drv))
3061 (sh (string-append out "/bin/bash")))
3062 (build-expression->derivation store "sh"
3063 `(symlink ,sh %output))))
b860f382
LC
3064@end example
3065
c6f30b81
LC
3066Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten
3067as a monadic function:
b860f382
LC
3068
3069@example
45adbd62 3070(define (sh-symlink)
b860f382 3071 ;; Same, but return a monadic value.
c6f30b81
LC
3072 (mlet %store-monad ((drv (package->derivation bash)))
3073 (gexp->derivation "sh"
3074 #~(symlink (string-append #$drv "/bin/bash")
3075 #$output))))
b860f382
LC
3076@end example
3077
c6f30b81
LC
3078There several things to note in the second version: the @code{store}
3079parameter is now implicit and is ``threaded'' in the calls to the
3080@code{package->derivation} and @code{gexp->derivation} monadic
3081procedures, and the monadic value returned by @code{package->derivation}
3082is @dfn{bound} using @code{mlet} instead of plain @code{let}.
3083
3084As it turns out, the call to @code{package->derivation} can even be
3085omitted since it will take place implicitly, as we will see later
3086(@pxref{G-Expressions}):
3087
3088@example
3089(define (sh-symlink)
3090 (gexp->derivation "sh"
3091 #~(symlink (string-append #$bash "/bin/bash")
3092 #$output)))
3093@end example
b860f382 3094
7ce21611
LC
3095@c See
3096@c <https://syntaxexclamation.wordpress.com/2014/06/26/escaping-continuations/>
3097@c for the funny quote.
3098Calling the monadic @code{sh-symlink} has no effect. As someone once
3099said, ``you exit a monad like you exit a building on fire: by running''.
3100So, to exit the monad and get the desired effect, one must use
3101@code{run-with-store}:
b860f382
LC
3102
3103@example
8e9aa37f
CAW
3104(run-with-store (open-connection) (sh-symlink))
3105@result{} /gnu/store/...-sh-symlink
b860f382
LC
3106@end example
3107
f97c9175 3108Note that the @code{(guix monad-repl)} module extends the Guile REPL with
b9b86078 3109new ``meta-commands'' to make it easier to deal with monadic procedures:
f97c9175 3110@code{run-in-store}, and @code{enter-store-monad}. The former is used
b9b86078
LC
3111to ``run'' a single monadic value through the store:
3112
3113@example
3114scheme@@(guile-user)> ,run-in-store (package->derivation hello)
3115$1 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3116@end example
3117
3118The latter enters a recursive REPL, where all the return values are
3119automatically run through the store:
3120
3121@example
3122scheme@@(guile-user)> ,enter-store-monad
3123store-monad@@(guile-user) [1]> (package->derivation hello)
3124$2 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3125store-monad@@(guile-user) [1]> (text-file "foo" "Hello!")
3126$3 = "/gnu/store/@dots{}-foo"
3127store-monad@@(guile-user) [1]> ,q
3128scheme@@(guile-user)>
3129@end example
3130
3131@noindent
3132Note that non-monadic values cannot be returned in the
3133@code{store-monad} REPL.
3134
e87f0591
LC
3135The main syntactic forms to deal with monads in general are provided by
3136the @code{(guix monads)} module and are described below.
b860f382
LC
3137
3138@deffn {Scheme Syntax} with-monad @var{monad} @var{body} ...
3139Evaluate any @code{>>=} or @code{return} forms in @var{body} as being
3140in @var{monad}.
3141@end deffn
3142
3143@deffn {Scheme Syntax} return @var{val}
3144Return a monadic value that encapsulates @var{val}.
3145@end deffn
3146
751630c9 3147@deffn {Scheme Syntax} >>= @var{mval} @var{mproc} ...
b860f382 3148@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic
751630c9
LC
3149procedures @var{mproc}@dots{}@footnote{This operation is commonly
3150referred to as ``bind'', but that name denotes an unrelated procedure in
3151Guile. Thus we use this somewhat cryptic symbol inherited from the
3152Haskell language.}. There can be one @var{mproc} or several of them, as
3153in this example:
3154
3155@example
3156(run-with-state
3157 (with-monad %state-monad
3158 (>>= (return 1)
3159 (lambda (x) (return (+ 1 x)))
3160 (lambda (x) (return (* 2 x)))))
3161 'some-state)
3162
3163@result{} 4
3164@result{} some-state
3165@end example
b860f382
LC
3166@end deffn
3167
3168@deffn {Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @
3169 @var{body} ...
3170@deffnx {Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @
3171 @var{body} ...
3172Bind the variables @var{var} to the monadic values @var{mval} in
3173@var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the
3174``normal'' value @var{val}, as per @code{let}.
3175
3176@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let}
3177(@pxref{Local Bindings,,, guile, GNU Guile Reference Manual}).
3178@end deffn
3179
405a9d4e
LC
3180@deffn {Scheme System} mbegin @var{monad} @var{mexp} ...
3181Bind @var{mexp} and the following monadic expressions in sequence,
3182returning the result of the last expression.
3183
3184This is akin to @code{mlet}, except that the return values of the
3185monadic expressions are ignored. In that sense, it is analogous to
3186@code{begin}, but applied to monadic expressions.
3187@end deffn
3188
561fb6c3
LC
3189@cindex state monad
3190The @code{(guix monads)} module provides the @dfn{state monad}, which
3191allows an additional value---the state---to be @emph{threaded} through
3192monadic procedure calls.
3193
3194@defvr {Scheme Variable} %state-monad
3195The state monad. Procedures in the state monad can access and change
3196the state that is threaded.
3197
3198Consider the example below. The @code{square} procedure returns a value
3199in the state monad. It returns the square of its argument, but also
3200increments the current state value:
3201
3202@example
3203(define (square x)
3204 (mlet %state-monad ((count (current-state)))
3205 (mbegin %state-monad
3206 (set-current-state (+ 1 count))
3207 (return (* x x)))))
3208
3209(run-with-state (sequence %state-monad (map square (iota 3))) 0)
3210@result{} (0 1 4)
3211@result{} 3
3212@end example
3213
3214When ``run'' through @var{%state-monad}, we obtain that additional state
3215value, which is the number of @code{square} calls.
3216@end defvr
3217
3218@deffn {Monadic Procedure} current-state
3219Return the current state as a monadic value.
3220@end deffn
3221
3222@deffn {Monadic Procedure} set-current-state @var{value}
3223Set the current state to @var{value} and return the previous state as a
3224monadic value.
3225@end deffn
3226
3227@deffn {Monadic Procedure} state-push @var{value}
3228Push @var{value} to the current state, which is assumed to be a list,
3229and return the previous state as a monadic value.
3230@end deffn
3231
3232@deffn {Monadic Procedure} state-pop
3233Pop a value from the current state and return it as a monadic value.
3234The state is assumed to be a list.
3235@end deffn
3236
3237@deffn {Scheme Procedure} run-with-state @var{mval} [@var{state}]
3238Run monadic value @var{mval} starting with @var{state} as the initial
3239state. Return two values: the resulting value, and the resulting state.
3240@end deffn
3241
e87f0591
LC
3242The main interface to the store monad, provided by the @code{(guix
3243store)} module, is as follows.
b860f382
LC
3244
3245@defvr {Scheme Variable} %store-monad
561fb6c3
LC
3246The store monad---an alias for @var{%state-monad}.
3247
3248Values in the store monad encapsulate accesses to the store. When its
3249effect is needed, a value of the store monad must be ``evaluated'' by
3250passing it to the @code{run-with-store} procedure (see below.)
b860f382
LC
3251@end defvr
3252
3253@deffn {Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]
3254Run @var{mval}, a monadic value in the store monad, in @var{store}, an
3255open store connection.
3256@end deffn
3257
ad372953 3258@deffn {Monadic Procedure} text-file @var{name} @var{text} [@var{references}]
b860f382 3259Return as a monadic value the absolute file name in the store of the file
ad372953
LC
3260containing @var{text}, a string. @var{references} is a list of store items that the
3261resulting text file refers to; it defaults to the empty list.
45adbd62
LC
3262@end deffn
3263
0a90af15
LC
3264@deffn {Monadic Procedure} interned-file @var{file} [@var{name}] @
3265 [#:recursive? #t]
3266Return the name of @var{file} once interned in the store. Use
3267@var{name} as its store name, or the basename of @var{file} if
3268@var{name} is omitted.
3269
3270When @var{recursive?} is true, the contents of @var{file} are added
3271recursively; if @var{file} designates a flat file and @var{recursive?}
3272is true, its contents are added, and its permission bits are kept.
3273
3274The example below adds a file to the store, under two different names:
3275
3276@example
3277(run-with-store (open-connection)
3278 (mlet %store-monad ((a (interned-file "README"))
3279 (b (interned-file "README" "LEGU-MIN")))
3280 (return (list a b))))
3281
3282@result{} ("/gnu/store/rwm@dots{}-README" "/gnu/store/44i@dots{}-LEGU-MIN")
3283@end example
3284
3285@end deffn
3286
e87f0591
LC
3287The @code{(guix packages)} module exports the following package-related
3288monadic procedures:
3289
b860f382 3290@deffn {Monadic Procedure} package-file @var{package} [@var{file}] @
4231f05b 3291 [#:system (%current-system)] [#:target #f] @
f97c9175
AE
3292 [#:output "out"]
3293Return as a monadic
b860f382
LC
3294value in the absolute file name of @var{file} within the @var{output}
3295directory of @var{package}. When @var{file} is omitted, return the name
4231f05b
LC
3296of the @var{output} directory of @var{package}. When @var{target} is
3297true, use it as a cross-compilation target triplet.
b860f382
LC
3298@end deffn
3299
b860f382 3300@deffn {Monadic Procedure} package->derivation @var{package} [@var{system}]
4231f05b
LC
3301@deffnx {Monadic Procedure} package->cross-derivation @var{package} @
3302 @var{target} [@var{system}]
3303Monadic version of @code{package-derivation} and
3304@code{package-cross-derivation} (@pxref{Defining Packages}).
b860f382
LC
3305@end deffn
3306
3307
21b679f6
LC
3308@node G-Expressions
3309@section G-Expressions
3310
3311@cindex G-expression
3312@cindex build code quoting
3313So we have ``derivations'', which represent a sequence of build actions
3314to be performed to produce an item in the store (@pxref{Derivations}).
f97c9175 3315These build actions are performed when asking the daemon to actually
21b679f6
LC
3316build the derivations; they are run by the daemon in a container
3317(@pxref{Invoking guix-daemon}).
3318
3319@cindex strata of code
f97c9175 3320It should come as no surprise that we like to write these build actions
21b679f6
LC
3321in Scheme. When we do that, we end up with two @dfn{strata} of Scheme
3322code@footnote{The term @dfn{stratum} in this context was coined by
ef4ab0a4
LC
3323Manuel Serrano et al.@: in the context of their work on Hop. Oleg
3324Kiselyov, who has written insightful
3325@url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code
3326on this topic}, refers to this kind of code generation as
3327@dfn{staging}.}: the ``host code''---code that defines packages, talks
3328to the daemon, etc.---and the ``build code''---code that actually
3329performs build actions, such as making directories, invoking
3330@command{make}, etc.
21b679f6
LC
3331
3332To describe a derivation and its build actions, one typically needs to
3333embed build code inside host code. It boils down to manipulating build
f97c9175 3334code as data, and the homoiconicity of Scheme---code has a direct
21b679f6 3335representation as data---comes in handy for that. But we need more than
f97c9175 3336the normal @code{quasiquote} mechanism in Scheme to construct build
21b679f6
LC
3337expressions.
3338
3339The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of
3340S-expressions adapted to build expressions. G-expressions, or
f97c9175 3341@dfn{gexps}, consist essentially of three syntactic forms: @code{gexp},
21b679f6 3342@code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~},
f97c9175
AE
3343@code{#$}, and @code{#$@@}), which are comparable to
3344@code{quasiquote}, @code{unquote}, and @code{unquote-splicing},
3345respectivel (@pxref{Expression Syntax, @code{quasiquote},, guile,
3346GNU Guile Reference Manual}). However, there are major differences:
21b679f6
LC
3347
3348@itemize
3349@item
3350Gexps are meant to be written to a file and run or manipulated by other
3351processes.
3352
3353@item
b39fc6f7
LC
3354When a high-level object such as a package or derivation is unquoted
3355inside a gexp, the result is as if its output file name had been
3356introduced.
ff40e9b7 3357
21b679f6
LC
3358@item
3359Gexps carry information about the packages or derivations they refer to,
3360and these dependencies are automatically added as inputs to the build
3361processes that use them.
3362@end itemize
3363
c2b84676 3364@cindex lowering, of high-level objects in gexps
343eacbe
LC
3365This mechanism is not limited to package and derivation
3366objects: @dfn{compilers} able to ``lower'' other high-level objects to
c2b84676
LC
3367derivations or files in the store can be defined,
3368such that these objects can also be inserted
f97c9175 3369into gexps. For example, a useful type of high-level objects that can be
343eacbe 3370inserted in a gexp is ``file-like objects'', which make it easy to
f97c9175 3371add files to the store and to refer to them in
558e8b11
LC
3372derivations and such (see @code{local-file} and @code{plain-file}
3373below.)
b39fc6f7 3374
21b679f6
LC
3375To illustrate the idea, here is an example of a gexp:
3376
3377@example
3378(define build-exp
3379 #~(begin
3380 (mkdir #$output)
3381 (chdir #$output)
aff8ce7c 3382 (symlink (string-append #$coreutils "/bin/ls")
21b679f6
LC
3383 "list-files")))
3384@end example
3385
3386This gexp can be passed to @code{gexp->derivation}; we obtain a
3387derivation that builds a directory containing exactly one symlink to
3388@file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:
3389
3390@example
3391(gexp->derivation "the-thing" build-exp)
3392@end example
3393
e20fd1bf 3394As one would expect, the @code{"/gnu/store/@dots{}-coreutils-8.22"} string is
21b679f6
LC
3395substituted to the reference to the @var{coreutils} package in the
3396actual build code, and @var{coreutils} is automatically made an input to
3397the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp
f97c9175
AE
3398output)}) is replaced by a string containing the directory name of the
3399output of the derivation.
667b2508
LC
3400
3401@cindex cross compilation
3402In a cross-compilation context, it is useful to distinguish between
3403references to the @emph{native} build of a package---that can run on the
3404host---versus references to cross builds of a package. To that end, the
3405@code{#+} plays the same role as @code{#$}, but is a reference to a
3406native package build:
3407
3408@example
3409(gexp->derivation "vi"
3410 #~(begin
3411 (mkdir #$output)
3412 (system* (string-append #+coreutils "/bin/ln")
3413 "-s"
3414 (string-append #$emacs "/bin/emacs")
3415 (string-append #$output "/bin/vi")))
3416 #:target "mips64el-linux")
3417@end example
3418
3419@noindent
3420In the example above, the native build of @var{coreutils} is used, so
3421that @command{ln} can actually run on the host; but then the
3422cross-compiled build of @var{emacs} is referenced.
3423
3424The syntactic form to construct gexps is summarized below.
21b679f6
LC
3425
3426@deffn {Scheme Syntax} #~@var{exp}
3427@deffnx {Scheme Syntax} (gexp @var{exp})
3428Return a G-expression containing @var{exp}. @var{exp} may contain one
3429or more of the following forms:
3430
3431@table @code
3432@item #$@var{obj}
3433@itemx (ungexp @var{obj})
b39fc6f7
LC
3434Introduce a reference to @var{obj}. @var{obj} may have one of the
3435supported types, for example a package or a
21b679f6
LC
3436derivation, in which case the @code{ungexp} form is replaced by its
3437output file name---e.g., @code{"/gnu/store/@dots{}-coreutils-8.22}.
3438
b39fc6f7
LC
3439If @var{obj} is a list, it is traversed and references to supported
3440objects are substituted similarly.
21b679f6
LC
3441
3442If @var{obj} is another gexp, its contents are inserted and its
3443dependencies are added to those of the containing gexp.
3444
3445If @var{obj} is another kind of object, it is inserted as is.
3446
b39fc6f7
LC
3447@item #$@var{obj}:@var{output}
3448@itemx (ungexp @var{obj} @var{output})
21b679f6 3449This is like the form above, but referring explicitly to the
b39fc6f7
LC
3450@var{output} of @var{obj}---this is useful when @var{obj} produces
3451multiple outputs (@pxref{Packages with Multiple Outputs}).
21b679f6 3452
667b2508
LC
3453@item #+@var{obj}
3454@itemx #+@var{obj}:output
3455@itemx (ungexp-native @var{obj})
3456@itemx (ungexp-native @var{obj} @var{output})
3457Same as @code{ungexp}, but produces a reference to the @emph{native}
3458build of @var{obj} when used in a cross compilation context.
3459
21b679f6
LC
3460@item #$output[:@var{output}]
3461@itemx (ungexp output [@var{output}])
3462Insert a reference to derivation output @var{output}, or to the main
3463output when @var{output} is omitted.
3464
3465This only makes sense for gexps passed to @code{gexp->derivation}.
3466
3467@item #$@@@var{lst}
3468@itemx (ungexp-splicing @var{lst})
3469Like the above, but splices the contents of @var{lst} inside the
3470containing list.
3471
667b2508
LC
3472@item #+@@@var{lst}
3473@itemx (ungexp-native-splicing @var{lst})
3474Like the above, but refers to native builds of the objects listed in
3475@var{lst}.
3476
21b679f6
LC
3477@end table
3478
3479G-expressions created by @code{gexp} or @code{#~} are run-time objects
3480of the @code{gexp?} type (see below.)
3481@end deffn
3482
3483@deffn {Scheme Procedure} gexp? @var{obj}
3484Return @code{#t} if @var{obj} is a G-expression.
3485@end deffn
3486
3487G-expressions are meant to be written to disk, either as code building
3488some derivation, or as plain files in the store. The monadic procedures
3489below allow you to do that (@pxref{The Store Monad}, for more
3490information about monads.)
3491
3492@deffn {Monadic Procedure} gexp->derivation @var{name} @var{exp} @
ce45eb4c 3493 [#:system (%current-system)] [#:target #f] [#:graft? #t] @
21b679f6
LC
3494 [#:hash #f] [#:hash-algo #f] @
3495 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
4684f301 3496 [#:module-path @var{%load-path}] @
c8351d9a 3497 [#:references-graphs #f] [#:allowed-references #f] @
c0468155 3498 [#:leaked-env-vars #f] @
0309e1b0 3499 [#:script-name (string-append @var{name} "-builder")] @
4a6aeb67 3500 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
21b679f6 3501Return a derivation @var{name} that runs @var{exp} (a gexp) with
0309e1b0
LC
3502@var{guile-for-build} (a derivation) on @var{system}; @var{exp} is
3503stored in a file called @var{script-name}. When @var{target} is true,
3504it is used as the cross-compilation target triplet for packages referred
3505to by @var{exp}.
21b679f6 3506
ce45eb4c
LC
3507Make @var{modules} available in the evaluation context of @var{exp};
3508@var{modules} is a list of names of Guile modules searched in
3509@var{module-path} to be copied in the store, compiled, and made available in
21b679f6
LC
3510the load path during the execution of @var{exp}---e.g., @code{((guix
3511build utils) (guix build gnu-build-system))}.
3512
ce45eb4c
LC
3513@var{graft?} determines whether packages referred to by @var{exp} should be grafted when
3514applicable.
3515
b53833b2
LC
3516When @var{references-graphs} is true, it must be a list of tuples of one of the
3517following forms:
3518
3519@example
3520(@var{file-name} @var{package})
3521(@var{file-name} @var{package} @var{output})
3522(@var{file-name} @var{derivation})
3523(@var{file-name} @var{derivation} @var{output})
3524(@var{file-name} @var{store-item})
3525@end example
3526
3527The right-hand-side of each element of @var{references-graphs} is automatically made
3528an input of the build process of @var{exp}. In the build environment, each
3529@var{file-name} contains the reference graph of the corresponding item, in a simple
3530text format.
3531
c8351d9a
LC
3532@var{allowed-references} must be either @code{#f} or a list of output names and packages.
3533In the latter case, the list denotes store items that the result is allowed to
3534refer to. Any reference to another store item will lead to a build error.
3535
e20fd1bf 3536The other arguments are as for @code{derivation} (@pxref{Derivations}).
21b679f6
LC
3537@end deffn
3538
343eacbe 3539@cindex file-like objects
e1c153e0
LC
3540The @code{local-file}, @code{plain-file}, @code{computed-file},
3541@code{program-file}, and @code{scheme-file} procedures below return
3542@dfn{file-like objects}. That is, when unquoted in a G-expression,
3543these objects lead to a file in the store. Consider this G-expression:
343eacbe
LC
3544
3545@example
3546#~(system* (string-append #$glibc "/sbin/nscd") "-f"
3547 #$(local-file "/tmp/my-nscd.conf"))
3548@end example
3549
3550The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it
3551to the store. Once expanded, for instance @i{via}
3552@code{gexp->derivation}, the G-expression refers to that copy under
3553@file{/gnu/store}; thus, modifying or removing the file in @file{/tmp}
3554does not have any effect on what the G-expression does.
3555@code{plain-file} can be used similarly; it differs in that the file
3556content is directly passed as a string.
3557
d9ae938f
LC
3558@deffn {Scheme Procedure} local-file @var{file} [@var{name}] @
3559 [#:recursive? #t]
3560Return an object representing local file @var{file} to add to the store; this
9d3994f7
LC
3561object can be used in a gexp. If @var{file} is a relative file name, it is looked
3562up relative to the source file where this form appears. @var{file} will be added to
3563the store under @var{name}--by default the base name of @var{file}.
d9ae938f
LC
3564
3565When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file}
3566designates a flat file and @var{recursive?} is true, its contents are added, and its
3567permission bits are kept.
3568
3569This is the declarative counterpart of the @code{interned-file} monadic
3570procedure (@pxref{The Store Monad, @code{interned-file}}).
3571@end deffn
3572
558e8b11
LC
3573@deffn {Scheme Procedure} plain-file @var{name} @var{content}
3574Return an object representing a text file called @var{name} with the given
3575@var{content} (a string) to be added to the store.
3576
3577This is the declarative counterpart of @code{text-file}.
3578@end deffn
3579
91937029
LC
3580@deffn {Scheme Procedure} computed-file @var{name} @var{gexp} @
3581 [#:modules '()] [#:options '(#:local-build? #t)]
3582Return an object representing the store item @var{name}, a file or
3583directory computed by @var{gexp}. @var{modules} specifies the set of
3584modules visible in the execution context of @var{gexp}. @var{options}
3585is a list of additional arguments to pass to @code{gexp->derivation}.
3586
3587This is the declarative counterpart of @code{gexp->derivation}.
3588@end deffn
3589
21b679f6
LC
3590@deffn {Monadic Procedure} gexp->script @var{name} @var{exp}
3591Return an executable script @var{name} that runs @var{exp} using
3592@var{guile} with @var{modules} in its search path.
3593
3594The example below builds a script that simply invokes the @command{ls}
3595command:
3596
3597@example
3598(use-modules (guix gexp) (gnu packages base))
3599
3600(gexp->script "list-files"
3601 #~(execl (string-append #$coreutils "/bin/ls")
3602 "ls"))
3603@end example
3604
3605When ``running'' it through the store (@pxref{The Store Monad,
e20fd1bf 3606@code{run-with-store}}), we obtain a derivation that produces an
21b679f6
LC
3607executable file @file{/gnu/store/@dots{}-list-files} along these lines:
3608
3609@example
3610#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds
3611!#
3612(execl (string-append "/gnu/store/@dots{}-coreutils-8.22"/bin/ls")
3613 "ls")
3614@end example
3615@end deffn
3616
15a01c72
LC
3617@deffn {Scheme Procedure} program-file @var{name} @var{exp} @
3618 [#:modules '()] [#:guile #f]
3619Return an object representing the executable store item @var{name} that
3620runs @var{gexp}. @var{guile} is the Guile package used to execute that
3621script, and @var{modules} is the list of modules visible to that script.
3622
3623This is the declarative counterpart of @code{gexp->script}.
3624@end deffn
3625
21b679f6
LC
3626@deffn {Monadic Procedure} gexp->file @var{name} @var{exp}
3627Return a derivation that builds a file @var{name} containing @var{exp}.
3628
3629The resulting file holds references to all the dependencies of @var{exp}
3630or a subset thereof.
3631@end deffn
1ed19464 3632
e1c153e0
LC
3633@deffn {Scheme Procedure} scheme-file @var{name} @var{exp}
3634Return an object representing the Scheme file @var{name} that contains
3635@var{exp}.
3636
3637This is the declarative counterpart of @code{gexp->file}.
3638@end deffn
3639
1ed19464
LC
3640@deffn {Monadic Procedure} text-file* @var{name} @var{text} @dots{}
3641Return as a monadic value a derivation that builds a text file
3642containing all of @var{text}. @var{text} may list, in addition to
d9ae938f
LC
3643strings, objects of any type that can be used in a gexp: packages,
3644derivations, local file objects, etc. The resulting store file holds
3645references to all these.
1ed19464
LC
3646
3647This variant should be preferred over @code{text-file} anytime the file
3648to create will reference items from the store. This is typically the
3649case when building a configuration file that embeds store file names,
3650like this:
3651
3652@example
3653(define (profile.sh)
3654 ;; Return the name of a shell script in the store that
3655 ;; initializes the 'PATH' environment variable.
3656 (text-file* "profile.sh"
3657 "export PATH=" coreutils "/bin:"
3658 grep "/bin:" sed "/bin\n"))
3659@end example
3660
3661In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file
3662will references @var{coreutils}, @var{grep}, and @var{sed}, thereby
3663preventing them from being garbage-collected during its lifetime.
3664@end deffn
21b679f6 3665
b751cde3
LC
3666@deffn {Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}
3667Return an object representing store file @var{name} containing
3668@var{text}. @var{text} is a sequence of strings and file-like objects,
3669as in:
3670
3671@example
3672(mixed-text-file "profile"
3673 "export PATH=" coreutils "/bin:" grep "/bin")
3674@end example
3675
3676This is the declarative counterpart of @code{text-file*}.
3677@end deffn
3678
21b679f6
LC
3679Of course, in addition to gexps embedded in ``host'' code, there are
3680also modules containing build tools. To make it clear that they are
3681meant to be used in the build stratum, these modules are kept in the
3682@code{(guix build @dots{})} name space.
3683
c2b84676
LC
3684@cindex lowering, of high-level objects in gexps
3685Internally, high-level objects are @dfn{lowered}, using their compiler,
3686to either derivations or store items. For instance, lowering a package
3687yields a derivation, and lowering a @code{plain-file} yields a store
3688item. This is achieved using the @code{lower-object} monadic procedure.
3689
3690@deffn {Monadic Procedure} lower-object @var{obj} [@var{system}] @
3691 [#:target #f]
3692Return as a value in @var{%store-monad} the derivation or store item
3693corresponding to @var{obj} for @var{system}, cross-compiling for
3694@var{target} if @var{target} is true. @var{obj} must be an object that
3695has an associated gexp compiler, such as a @code{<package>}.
3696@end deffn
3697
21b679f6 3698
568717fd
LC
3699@c *********************************************************************
3700@node Utilities
3701@chapter Utilities
3702
210cc920
LC
3703This section describes tools primarily targeted at developers and users
3704who write new package definitions. They complement the Scheme
3705programming interface of Guix in a convenient way.
3706
568717fd 3707@menu
37166310 3708* Invoking guix build:: Building packages from the command line.
39bee8a2 3709* Invoking guix edit:: Editing package definitions.
210cc920 3710* Invoking guix download:: Downloading a file and printing its hash.
37166310 3711* Invoking guix hash:: Computing the cryptographic hash of a file.
2f7d2d91 3712* Invoking guix import:: Importing package definitions.
37166310 3713* Invoking guix refresh:: Updating package definitions.
b4f5e0e8 3714* Invoking guix lint:: Finding errors in package definitions.
fcc58db6 3715* Invoking guix size:: Profiling disk usage.
88856916 3716* Invoking guix graph:: Visualizing the graph of packages.
372c4bbc 3717* Invoking guix environment:: Setting up development environments.
aff8ce7c 3718* Invoking guix publish:: Sharing substitutes.
d23c20f1 3719* Invoking guix challenge:: Challenging substitute servers.
32efa254 3720* Invoking guix container:: Process isolation.
568717fd
LC
3721@end menu
3722
e49951eb
MW
3723@node Invoking guix build
3724@section Invoking @command{guix build}
568717fd 3725
e49951eb 3726The @command{guix build} command builds packages or derivations and
6798a8e4
LC
3727their dependencies, and prints the resulting store paths. Note that it
3728does not modify the user's profile---this is the job of the
e49951eb 3729@command{guix package} command (@pxref{Invoking guix package}). Thus,
6798a8e4
LC
3730it is mainly useful for distribution developers.
3731
3732The general syntax is:
c78bd12b
LC
3733
3734@example
e49951eb 3735guix build @var{options} @var{package-or-derivation}@dots{}
c78bd12b
LC
3736@end example
3737
f97c9175 3738As an example, the following command builds the latest versions of Emacs
ccd7158d
LC
3739and of Guile, displays their build logs, and finally displays the
3740resulting directories:
3741
3742@example
3743guix build emacs guile
3744@end example
3745
3746Similarly, the following command builds all the available packages:
3747
3748@example
3749guix build --keep-going \
3750 `guix package -A | cut -f1,2 --output-delimiter=@@`
3751@end example
3752
c78bd12b 3753@var{package-or-derivation} may be either the name of a package found in
5401dd75
LC
3754the software distribution such as @code{coreutils} or
3755@code{coreutils-8.20}, or a derivation such as
834129e0 3756@file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a
e7f34eb0
LC
3757package with the corresponding name (and optionally version) is searched
3758for among the GNU distribution modules (@pxref{Package Modules}).
3759
3760Alternatively, the @code{--expression} option may be used to specify a
3761Scheme expression that evaluates to a package; this is useful when
3762disambiguation among several same-named packages or package variants is
3763needed.
c78bd12b 3764
ccd7158d
LC
3765There may be zero or more @var{options}. The available options are
3766described in the subsections below.
3767
3768@menu
3769* Common Build Options:: Build options for most commands.
88ad6ded 3770* Package Transformation Options:: Creating variants of packages.
ccd7158d
LC
3771* Additional Build Options:: Options specific to 'guix build'.
3772@end menu
3773
3774@node Common Build Options
3775@subsection Common Build Options
3776
3777A number of options that control the build process are common to
3778@command{guix build} and other commands that can spawn builds, such as
3779@command{guix package} or @command{guix archive}. These are the
3780following:
3781
3782@table @code
3783
3784@item --load-path=@var{directory}
3785@itemx -L @var{directory}
3786Add @var{directory} to the front of the package module search path
3787(@pxref{Package Modules}).
3788
3789This allows users to define their own packages and make them visible to
3790the command-line tools.
3791
3792@item --keep-failed
3793@itemx -K
3794Keep the build tree of failed builds. Thus, if a build fail, its build
3795tree is kept under @file{/tmp}, in a directory whose name is shown at
3796the end of the build log. This is useful when debugging build issues.
3797
3798@item --keep-going
3799@itemx -k
3800Keep going when some of the derivations fail to build; return only once
3801all the builds have either completed or failed.
3802
3803The default behavior is to stop as soon as one of the specified
3804derivations has failed.
3805
3806@item --dry-run
3807@itemx -n
3808Do not build the derivations.
3809
3810@item --fallback
3811When substituting a pre-built binary fails, fall back to building
3812packages locally.
3813
3814@item --substitute-urls=@var{urls}
3815@anchor{client-substitute-urls}
3816Consider @var{urls} the whitespace-separated list of substitute source
3817URLs, overriding the default list of URLs of @command{guix-daemon}
3818(@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs}).
3819
3820This means that substitutes may be downloaded from @var{urls}, provided
3821they are signed by a key authorized by the system administrator
3822(@pxref{Substitutes}).
3823
3824@item --no-substitutes
3825Do not use substitutes for build products. That is, always build things
3826locally instead of allowing downloads of pre-built binaries
3827(@pxref{Substitutes}).
3828
3829@item --rounds=@var{n}
3830Build each derivation @var{n} times in a row, and raise an error if
3831consecutive build results are not bit-for-bit identical.
3832
3833This is a useful way to detect non-deterministic builds processes.
3834Non-deterministic build processes are a problem because they make it
3835practically impossible for users to @emph{verify} whether third-party
3836binaries are genuine. @xref{Invoking guix challenge}, for more.
3837
3838Note that, currently, the differing build results are not kept around,
3839so you will have to manually investigate in case of an error---e.g., by
3840stashing one of the build results with @code{guix archive --export},
3841then rebuilding, and finally comparing the two results.
3842
3843@item --no-build-hook
f97c9175 3844Do not attempt to offload builds @i{via} the ``build hook'' of the daemon
ccd7158d
LC
3845(@pxref{Daemon Offload Setup}). That is, always build things locally
3846instead of offloading builds to remote machines.
3847
3848@item --max-silent-time=@var{seconds}
3849When the build or substitution process remains silent for more than
3850@var{seconds}, terminate it and report a build failure.
3851
3852@item --timeout=@var{seconds}
3853Likewise, when the build or substitution process lasts for more than
3854@var{seconds}, terminate it and report a build failure.
3855
3856By default there is no timeout. This behavior can be restored with
3857@code{--timeout=0}.
3858
3859@item --verbosity=@var{level}
3860Use the given verbosity level. @var{level} must be an integer between 0
3861and 5; higher means more verbose output. Setting a level of 4 or more
3862may be helpful when debugging setup issues with the build daemon.
3863
3864@item --cores=@var{n}
3865@itemx -c @var{n}
3866Allow the use of up to @var{n} CPU cores for the build. The special
3867value @code{0} means to use as many CPU cores as available.
3868
3869@item --max-jobs=@var{n}
3870@itemx -M @var{n}
3871Allow at most @var{n} build jobs in parallel. @xref{Invoking
3872guix-daemon, @code{--max-jobs}}, for details about this option and the
3873equivalent @command{guix-daemon} option.
3874
3875@end table
3876
3877Behind the scenes, @command{guix build} is essentially an interface to
3878the @code{package-derivation} procedure of the @code{(guix packages)}
3879module, and to the @code{build-derivations} procedure of the @code{(guix
3880derivations)} module.
3881
3882In addition to options explicitly passed on the command line,
3883@command{guix build} and other @command{guix} commands that support
3884building honor the @code{GUIX_BUILD_OPTIONS} environment variable.
3885
3886@defvr {Environment Variable} GUIX_BUILD_OPTIONS
3887Users can define this variable to a list of command line options that
3888will automatically be used by @command{guix build} and other
3889@command{guix} commands that can perform builds, as in the example
3890below:
3891
3892@example
3893$ export GUIX_BUILD_OPTIONS="--no-substitutes -c 2 -L /foo/bar"
3894@end example
3895
3896These options are parsed independently, and the result is appended to
3897the parsed command-line options.
3898@end defvr
3899
88ad6ded
LC
3900
3901@node Package Transformation Options
3902@subsection Package Transformation Options
3903
3904@cindex package variants
3905Another set of command-line options supported by @command{guix build}
b8638f03 3906and also @command{guix package} are @dfn{package transformation
f97c9175 3907options}. These are options that make it possible to define @dfn{package
b8638f03
LC
3908variants}---for instance, packages built from different source code.
3909This is a convenient way to create customized packages on the fly
3910without having to type in the definitions of package variants
3911(@pxref{Defining Packages}).
88ad6ded
LC
3912
3913@table @code
3914
3915@item --with-source=@var{source}
3916Use @var{source} as the source of the corresponding package.
3917@var{source} must be a file name or a URL, as for @command{guix
3918download} (@pxref{Invoking guix download}).
3919
f97c9175
AE
3920The ``corresponding package'' is taken to be the one specified on the
3921command line the name of which matches the base of @var{source}---e.g.,
3922if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding
88ad6ded 3923package is @code{guile}. Likewise, the version string is inferred from
f97c9175 3924@var{source}; in the previous example, it is @code{2.0.10}.
88ad6ded
LC
3925
3926This option allows users to try out versions of packages other than the
3927one provided by the distribution. The example below downloads
3928@file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for
3929the @code{ed} package:
3930
3931@example
3932guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz
3933@end example
3934
3935As a developer, @code{--with-source} makes it easy to test release
3936candidates:
3937
3938@example
3939guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz
3940@end example
3941
3942@dots{} or to build from a checkout in a pristine environment:
3943
3944@example
3945$ git clone git://git.sv.gnu.org/guix.git
3946$ guix build guix --with-source=./guix
3947@end example
3948
47c0f92c
LC
3949@item --with-input=@var{package}=@var{replacement}
3950Replace dependency on @var{package} by a dependency on
3951@var{replacement}. @var{package} must be a package name, and
3952@var{replacement} must be a package specification such as @code{guile}
3953or @code{guile@@1.8}.
3954
f97c9175 3955For instance, the following command builds Guix, but replaces its
47c0f92c
LC
3956dependency on the current stable version of Guile with a dependency on
3957the development version of Guile, @code{guile-next}:
3958
3959@example
3960guix build --with-input=guile=guile-next guix
3961@end example
3962
3963This is a recursive, deep replacement. So in this example, both
3964@code{guix} and its dependency @code{guile-json} (which also depends on
3965@code{guile}) get rebuilt against @code{guile-next}.
3966
3967However, implicit inputs are left unchanged.
88ad6ded
LC
3968@end table
3969
ccd7158d
LC
3970@node Additional Build Options
3971@subsection Additional Build Options
3972
3973The command-line options presented below are specific to @command{guix
3974build}.
c78bd12b
LC
3975
3976@table @code
3977
34a1783f
DT
3978@item --file=@var{file}
3979@itemx -f @var{file}
3980
3981Build the package or derivation that the code within @var{file}
3982evaluates to.
3983
3984As an example, @var{file} might contain a package definition like this
3985(@pxref{Defining Packages}):
3986
3987@example
3988@verbatiminclude package-hello.scm
3989@end example
3990
c78bd12b
LC
3991@item --expression=@var{expr}
3992@itemx -e @var{expr}
ac5de156 3993Build the package or derivation @var{expr} evaluates to.
c78bd12b 3994
5401dd75 3995For example, @var{expr} may be @code{(@@ (gnu packages guile)
c78bd12b
LC
3996guile-1.8)}, which unambiguously designates this specific variant of
3997version 1.8 of Guile.
3998
f97c9175 3999Alternatively, @var{expr} may be a G-expression, in which case it is used
56b82106
LC
4000as a build program passed to @code{gexp->derivation}
4001(@pxref{G-Expressions}).
4002
4003Lastly, @var{expr} may refer to a zero-argument monadic procedure
ac5de156
LC
4004(@pxref{The Store Monad}). The procedure must return a derivation as a
4005monadic value, which is then passed through @code{run-with-store}.
4006
c78bd12b
LC
4007@item --source
4008@itemx -S
f97c9175 4009Build the source derivations of the packages, rather than the packages
c78bd12b
LC
4010themselves.
4011
e49951eb 4012For instance, @code{guix build -S gcc} returns something like
f97c9175
AE
4013@file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC
4014source tarball.
c78bd12b 4015
f9cc8971 4016The returned source tarball is the result of applying any patches and
f97c9175 4017code snippets specified in the package @code{origin} (@pxref{Defining
f9cc8971
LC
4018Packages}).
4019
2cdfe13d
EB
4020@item --sources
4021Fetch and return the source of @var{package-or-derivation} and all their
4022dependencies, recursively. This is a handy way to obtain a local copy
4023of all the source code needed to build @var{packages}, allowing you to
4024eventually build them even without network access. It is an extension
4025of the @code{--source} option and can accept one of the following
4026optional argument values:
4027
4028@table @code
4029@item package
4030This value causes the @code{--sources} option to behave in the same way
4031as the @code{--source} option.
4032
4033@item all
f97c9175
AE
4034Build the source derivations of all packages, including any source that
4035might be listed as @code{inputs}. This is the default value.
2cdfe13d
EB
4036
4037@example
4038$ guix build --sources tzdata
4039The following derivations will be built:
4040 /gnu/store/@dots{}-tzdata2015b.tar.gz.drv
4041 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
4042@end example
4043
4044@item transitive
f97c9175
AE
4045Build the source derivations of all packages, as well of all transitive
4046inputs to the packages. This can be used e.g. to
2cdfe13d
EB
4047prefetch package source for later offline building.
4048
4049@example
4050$ guix build --sources=transitive tzdata
4051The following derivations will be built:
4052 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
4053 /gnu/store/@dots{}-findutils-4.4.2.tar.xz.drv
4054 /gnu/store/@dots{}-grep-2.21.tar.xz.drv
4055 /gnu/store/@dots{}-coreutils-8.23.tar.xz.drv
4056 /gnu/store/@dots{}-make-4.1.tar.xz.drv
4057 /gnu/store/@dots{}-bash-4.3.tar.xz.drv
4058@dots{}
4059@end example
4060
4061@end table
4062
c78bd12b
LC
4063@item --system=@var{system}
4064@itemx -s @var{system}
4065Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of
f97c9175 4066the system type of the build host.
c78bd12b
LC
4067
4068An example use of this is on Linux-based systems, which can emulate
4069different personalities. For instance, passing
4070@code{--system=i686-linux} on an @code{x86_64-linux} system allows users
4071to build packages in a complete 32-bit environment.
4072
e55ec43d
LC
4073@item --target=@var{triplet}
4074@cindex cross-compilation
4075Cross-build for @var{triplet}, which must be a valid GNU triplet, such
4076as @code{"mips64el-linux-gnu"} (@pxref{Configuration Names, GNU
4077configuration triplets,, configure, GNU Configure and Build System}).
4078
a8d65643
LC
4079@anchor{build-check}
4080@item --check
4081@cindex determinism, checking
4082@cindex reproducibility, checking
4083Rebuild @var{package-or-derivation}, which are already available in the
4084store, and raise an error if the build results are not bit-for-bit
4085identical.
4086
f97c9175
AE
4087This mechanism allows you to check whether previously installed
4088substitutes are genuine (@pxref{Substitutes}), or whether the build result
4089of a package is deterministic. @xref{Invoking guix challenge}, for more
a8d65643
LC
4090background information and tools.
4091
05962f29
LC
4092@item --no-grafts
4093Do not ``graft'' packages. In practice, this means that package updates
4094available as grafts are not applied. @xref{Security Updates}, for more
4095information on grafts.
7f3673f2 4096
c78bd12b
LC
4097@item --derivations
4098@itemx -d
4099Return the derivation paths, not the output paths, of the given
4100packages.
4101
70ee5642
LC
4102@item --root=@var{file}
4103@itemx -r @var{file}
4104Make @var{file} a symlink to the result, and register it as a garbage
4105collector root.
4106
4107@item --log-file
3f208ad7 4108Return the build log file names or URLs for the given
f97c9175 4109@var{package-or-derivation}, or raise an error if build logs are
70ee5642
LC
4110missing.
4111
4112This works regardless of how packages or derivations are specified. For
4113instance, the following invocations are equivalent:
4114
4115@example
4116guix build --log-file `guix build -d guile`
4117guix build --log-file `guix build guile`
4118guix build --log-file guile
4119guix build --log-file -e '(@@ (gnu packages guile) guile-2.0)'
4120@end example
4121
3f208ad7
LC
4122If a log is unavailable locally, and unless @code{--no-substitutes} is
4123passed, the command looks for a corresponding log on one of the
4124substitute servers (as specified with @code{--substitute-urls}.)
70ee5642 4125
f97c9175
AE
4126So for instance, imagine you want to see the build log of GDB on MIPS,
4127but you are actually on an @code{x86_64} machine:
3f208ad7
LC
4128
4129@example
4130$ guix build --log-file gdb -s mips64el-linux
4131http://hydra.gnu.org/log/@dots{}-gdb-7.10
4132@end example
4133
4134You can freely access a huge library of build logs!
70ee5642
LC
4135@end table
4136
16eb115e 4137
39bee8a2
LC
4138@node Invoking guix edit
4139@section Invoking @command{guix edit}
4140
4141@cindex package definition, editing
4142So many packages, so many source files! The @command{guix edit} command
4143facilitates the life of packagers by pointing their editor at the source
4144file containing the definition of the specified packages. For instance:
4145
4146@example
4147guix edit gcc-4.8 vim
4148@end example
4149
4150@noindent
6237b9fa
LC
4151launches the program specified in the @code{VISUAL} or in the
4152@code{EDITOR} environment variable to edit the recipe of GCC@tie{}4.8.4
4153and that of Vim.
39bee8a2 4154
f97c9175 4155If you are using Emacs, note that the Emacs user interface provides the
7c1b1ae2 4156@kbd{M-x guix-edit} command and a similar functionality in the ``package
f97c9175 4157info'' and ``package list'' buffers created by the @kbd{M-x
7c1b1ae2 4158guix-search-by-name} and similar commands (@pxref{Emacs Commands}).
39bee8a2
LC
4159
4160
210cc920
LC
4161@node Invoking guix download
4162@section Invoking @command{guix download}
4163
4164When writing a package definition, developers typically need to download
f97c9175 4165a source tarball, compute its SHA256 hash, and write that
210cc920
LC
4166hash in the package definition (@pxref{Defining Packages}). The
4167@command{guix download} tool helps with this task: it downloads a file
4168from the given URI, adds it to the store, and prints both its file name
4169in the store and its SHA256 hash.
4170
4171The fact that the downloaded file is added to the store saves bandwidth:
4172when the developer eventually tries to build the newly defined package
4173with @command{guix build}, the source tarball will not have to be
4174downloaded again because it is already in the store. It is also a
4175convenient way to temporarily stash files, which may be deleted
4176eventually (@pxref{Invoking guix gc}).
4177
4178The @command{guix download} command supports the same URIs as used in
4179package definitions. In particular, it supports @code{mirror://} URIs.
4180@code{https} URIs (HTTP over TLS) are supported @emph{provided} the
4181Guile bindings for GnuTLS are available in the user's environment; when
537c8bb3
LC
4182they are not available, an error is raised. @xref{Guile Preparations,
4183how to install the GnuTLS bindings for Guile,, gnutls-guile,
4184GnuTLS-Guile}, for more information.
210cc920
LC
4185
4186The following option is available:
4187
4188@table @code
4189@item --format=@var{fmt}
4190@itemx -f @var{fmt}
4191Write the hash in the format specified by @var{fmt}. For more
081145cf 4192information on the valid values for @var{fmt}, @pxref{Invoking guix hash}.
210cc920
LC
4193@end table
4194
6c365eca
NK
4195@node Invoking guix hash
4196@section Invoking @command{guix hash}
4197
210cc920 4198The @command{guix hash} command computes the SHA256 hash of a file.
6c365eca
NK
4199It is primarily a convenience tool for anyone contributing to the
4200distribution: it computes the cryptographic hash of a file, which can be
4201used in the definition of a package (@pxref{Defining Packages}).
4202
4203The general syntax is:
4204
4205@example
4206guix hash @var{option} @var{file}
4207@end example
4208
4209@command{guix hash} has the following option:
4210
4211@table @code
4212
4213@item --format=@var{fmt}
4214@itemx -f @var{fmt}
210cc920 4215Write the hash in the format specified by @var{fmt}.
6c365eca
NK
4216
4217Supported formats: @code{nix-base32}, @code{base32}, @code{base16}
4218(@code{hex} and @code{hexadecimal} can be used as well).
4219
4220If the @option{--format} option is not specified, @command{guix hash}
4221will output the hash in @code{nix-base32}. This representation is used
4222in the definitions of packages.
4223
3140f2df
LC
4224@item --recursive
4225@itemx -r
4226Compute the hash on @var{file} recursively.
4227
4228In this case, the hash is computed on an archive containing @var{file},
f97c9175
AE
4229including its children if it is a directory. Some of the metadata of
4230@var{file} is part of the archive; for instance, when @var{file} is a
3140f2df 4231regular file, the hash is different depending on whether @var{file} is
f97c9175 4232executable or not. Metadata such as time stamps has no impact on the
3140f2df
LC
4233hash (@pxref{Invoking guix archive}).
4234@c FIXME: Replace xref above with xref to an ``Archive'' section when
4235@c it exists.
4236
6c365eca
NK
4237@end table
4238
2f7d2d91
LC
4239@node Invoking guix import
4240@section Invoking @command{guix import}
4241
4242@cindex importing packages
4243@cindex package import
4244@cindex package conversion
f97c9175
AE
4245The @command{guix import} command is useful for people who would like to
4246add a package to the distribution with as little work as
4247possible---a legitimate demand. The command knows of a few
4248repositories from which it can ``import'' package metadata. The result
2f7d2d91
LC
4249is a package definition, or a template thereof, in the format we know
4250(@pxref{Defining Packages}).
4251
4252The general syntax is:
4253
4254@example
4255guix import @var{importer} @var{options}@dots{}
4256@end example
4257
4258@var{importer} specifies the source from which to import package
f97c9175 4259metadata, and @var{options} specifies a package identifier and other
2f7d2d91
LC
4260options specific to @var{importer}. Currently, the available
4261``importers'' are:
4262
4263@table @code
4264@item gnu
f97c9175 4265Import metadata for the given GNU package. This provides a template
2f7d2d91
LC
4266for the latest version of that GNU package, including the hash of its
4267source tarball, and its canonical synopsis and description.
4268
f97c9175 4269Additional information such as the package dependencies and its
2f7d2d91
LC
4270license needs to be figured out manually.
4271
4272For example, the following command returns a package definition for
4273GNU@tie{}Hello:
4274
4275@example
4276guix import gnu hello
4277@end example
4278
4279Specific command-line options are:
4280
4281@table @code
4282@item --key-download=@var{policy}
4283As for @code{guix refresh}, specify the policy to handle missing OpenPGP
f97c9175 4284keys when verifying the package signature. @xref{Invoking guix
2f7d2d91
LC
4285refresh, @code{--key-download}}.
4286@end table
4287
4288@item pypi
4289@cindex pypi
f97c9175 4290Import metadata from the @uref{https://pypi.python.org/, Python Package
2f7d2d91
LC
4291Index}@footnote{This functionality requires Guile-JSON to be installed.
4292@xref{Requirements}.}. Information is taken from the JSON-formatted
4293description available at @code{pypi.python.org} and usually includes all
4294the relevant information, including package dependencies.
4295
f97c9175 4296The command below imports metadata for the @code{itsdangerous} Python
2f7d2d91
LC
4297package:
4298
4299@example
4300guix import pypi itsdangerous
4301@end example
4302
3aae8145
DT
4303@item gem
4304@cindex gem
f97c9175 4305Import metadata from @uref{https://rubygems.org/,
3aae8145
DT
4306RubyGems}@footnote{This functionality requires Guile-JSON to be
4307installed. @xref{Requirements}.}. Information is taken from the
4308JSON-formatted description available at @code{rubygems.org} and includes
4309most relevant information, including runtime dependencies. There are
f97c9175 4310some caveats, however. The metadata doesn't distinguish between
3aae8145
DT
4311synopses and descriptions, so the same string is used for both fields.
4312Additionally, the details of non-Ruby dependencies required to build
4313native extensions is unavailable and left as an exercise to the
4314packager.
4315
f97c9175 4316The command below imports metadata for the @code{rails} Ruby package:
3aae8145
DT
4317
4318@example
4319guix import gem rails
4320@end example
4321
d45dc6da
EB
4322@item cpan
4323@cindex CPAN
3c192e4e
AE
4324Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}@footnote{This
4325functionality requires Guile-JSON to be installed.
4326@xref{Requirements}.}.
f97c9175 4327Information is taken from the JSON-formatted metadata provided through
d45dc6da 4328@uref{https://api.metacpan.org/, MetaCPAN's API} and includes most
66392e47
EB
4329relevant information, such as module dependencies. License information
4330should be checked closely. If Perl is available in the store, then the
4331@code{corelist} utility will be used to filter core modules out of the
4332list of dependencies.
d45dc6da 4333
f97c9175 4334The command command below imports metadata for the @code{Acme::Boolean}
d45dc6da
EB
4335Perl module:
4336
4337@example
4338guix import cpan Acme::Boolean
4339@end example
4340
e1248602
RW
4341@item cran
4342@cindex CRAN
d0bd632f 4343@cindex Bioconductor
f97c9175 4344Import metadata from @uref{http://cran.r-project.org/, CRAN}, the
e1248602
RW
4345central repository for the @uref{http://r-project.org, GNU@tie{}R
4346statistical and graphical environment}.
4347
f97c9175 4348Information is extracted from the @code{DESCRIPTION} file of the package.
e1248602 4349
f97c9175 4350The command command below imports metadata for the @code{Cairo}
e1248602
RW
4351R package:
4352
4353@example
4354guix import cran Cairo
4355@end example
4356
f97c9175 4357When @code{--archive=bioconductor} is added, metadata is imported from
d0bd632f
RW
4358@uref{http://www.bioconductor.org/, Bioconductor}, a repository of R
4359packages for for the analysis and comprehension of high-throughput
4360genomic data in bioinformatics.
4361
f97c9175 4362Information is extracted from the @code{DESCRIPTION} file of a package
d0bd632f
RW
4363published on the web interface of the Bioconductor SVN repository.
4364
f97c9175 4365The command below imports metadata for the @code{GenomicRanges}
d0bd632f
RW
4366R package:
4367
4368@example
4369guix import cran --archive=bioconductor GenomicRanges
4370@end example
4371
2f7d2d91 4372@item nix
f97c9175 4373Import metadata from a local copy of the source of the
2f7d2d91
LC
4374@uref{http://nixos.org/nixpkgs/, Nixpkgs distribution}@footnote{This
4375relies on the @command{nix-instantiate} command of
4376@uref{http://nixos.org/nix/, Nix}.}. Package definitions in Nixpkgs are
4377typically written in a mixture of Nix-language and Bash code. This
4378command only imports the high-level package structure that is written in
4379the Nix language. It normally includes all the basic fields of a
4380package definition.
4381
4382When importing a GNU package, the synopsis and descriptions are replaced
4383by their canonical upstream variant.
4384
961d0d2d
LC
4385Usually, you will first need to do:
4386
4387@example
4388export NIX_REMOTE=daemon
4389@end example
4390
4391@noindent
4392so that @command{nix-instantiate} does not try to open the Nix database.
4393
2f7d2d91
LC
4394As an example, the command below imports the package definition of
4395LibreOffice (more precisely, it imports the definition of the package
4396bound to the @code{libreoffice} top-level attribute):
4397
4398@example
4399guix import nix ~/path/to/nixpkgs libreoffice
4400@end example
863af4e1
FB
4401
4402@item hackage
4403@cindex hackage
f97c9175 4404Import metadata from the Haskell community's central package archive
863af4e1
FB
4405@uref{https://hackage.haskell.org/, Hackage}. Information is taken from
4406Cabal files and includes all the relevant information, including package
4407dependencies.
4408
4409Specific command-line options are:
4410
4411@table @code
a4154748
FB
4412@item --stdin
4413@itemx -s
f97c9175 4414Read a Cabal file from standard input.
863af4e1
FB
4415@item --no-test-dependencies
4416@itemx -t
f97c9175 4417Do not include dependencies required only by the test suites.
a4154748
FB
4418@item --cabal-environment=@var{alist}
4419@itemx -e @var{alist}
4420@var{alist} is a Scheme alist defining the environment in which the
4421Cabal conditionals are evaluated. The accepted keys are: @code{os},
4422@code{arch}, @code{impl} and a string representing the name of a flag.
4423The value associated with a flag has to be either the symbol
4424@code{true} or @code{false}. The value associated with other keys
4425has to conform to the Cabal file format definition. The default value
4426associated with the keys @code{os}, @code{arch} and @code{impl} is
f97c9175 4427@samp{linux}, @samp{x86_64} and @samp{ghc}, respectively.
863af4e1
FB
4428@end table
4429
f97c9175 4430The command below imports metadata for the latest version of the
a4154748
FB
4431@code{HTTP} Haskell package without including test dependencies and
4432specifying the value of the flag @samp{network-uri} as @code{false}:
863af4e1
FB
4433
4434@example
a4154748 4435guix import hackage -t -e "'((\"network-uri\" . false))" HTTP
863af4e1
FB
4436@end example
4437
4438A specific package version may optionally be specified by following the
4439package name by a hyphen and a version number as in the following example:
4440
4441@example
4442guix import hackage mtl-2.1.3.1
4443@end example
7f74a931
FB
4444
4445@item elpa
4446@cindex elpa
f97c9175 4447Import metadata from an Emacs Lisp Package Archive (ELPA) package
7f74a931
FB
4448repository (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
4449
4450Specific command-line options are:
4451
4452@table @code
4453@item --archive=@var{repo}
4454@itemx -a @var{repo}
4455@var{repo} identifies the archive repository from which to retrieve the
4456information. Currently the supported repositories and their identifiers
4457are:
4458@itemize -
4459@item
840bd1d3 4460@uref{http://elpa.gnu.org/packages, GNU}, selected by the @code{gnu}
7f74a931
FB
4461identifier. This is the default.
4462
4463@item
840bd1d3 4464@uref{http://stable.melpa.org/packages, MELPA-Stable}, selected by the
7f74a931
FB
4465@code{melpa-stable} identifier.
4466
4467@item
840bd1d3 4468@uref{http://melpa.org/packages, MELPA}, selected by the @code{melpa}
7f74a931
FB
4469identifier.
4470@end itemize
4471@end table
2f7d2d91
LC
4472@end table
4473
4474The structure of the @command{guix import} code is modular. It would be
4475useful to have more importers for other package formats, and your help
4476is welcome here (@pxref{Contributing}).
4477
37166310
LC
4478@node Invoking guix refresh
4479@section Invoking @command{guix refresh}
4480
4481The primary audience of the @command{guix refresh} command is developers
4482of the GNU software distribution. By default, it reports any packages
4483provided by the distribution that are outdated compared to the latest
4484upstream version, like this:
4485
4486@example
4487$ guix refresh
4488gnu/packages/gettext.scm:29:13: gettext would be upgraded from 0.18.1.1 to 0.18.2.1
4489gnu/packages/glib.scm:77:12: glib would be upgraded from 2.34.3 to 2.37.0
4490@end example
4491
f97c9175
AE
4492It does so by browsing the FTP directory of each package and determining
4493the highest version number of the source tarballs therein. The command
bcb571cb
LC
4494knows how to update specific types of packages: GNU packages, ELPA
4495packages, etc.---see the documentation for @option{--type} below. The
4496are many packages, though, for which it lacks a method to determine
4497whether a new upstream release is available. However, the mechanism is
4498extensible, so feel free to get in touch with us to add a new method!
37166310
LC
4499
4500When passed @code{--update}, it modifies distribution source files to
f97c9175 4501update the version numbers and source tarball hashes of those package
37166310
LC
4502recipes (@pxref{Defining Packages}). This is achieved by downloading
4503each package's latest source tarball and its associated OpenPGP
4504signature, authenticating the downloaded tarball against its signature
4505using @command{gpg}, and finally computing its hash. When the public
4506key used to sign the tarball is missing from the user's keyring, an
4507attempt is made to automatically retrieve it from a public key server;
f97c9175 4508when this is successful, the key is added to the user's keyring; otherwise,
37166310
LC
4509@command{guix refresh} reports an error.
4510
4511The following options are supported:
4512
4513@table @code
4514
2d7fc7da
LC
4515@item --expression=@var{expr}
4516@itemx -e @var{expr}
4517Consider the package @var{expr} evaluates to.
4518
4519This is useful to precisely refer to a package, as in this example:
4520
4521@example
4522guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'
4523@end example
4524
4525This command lists the dependents of the ``final'' libc (essentially all
4526the packages.)
4527
37166310
LC
4528@item --update
4529@itemx -u
38e16b49
LC
4530Update distribution source files (package recipes) in place. This is
4531usually run from a checkout of the Guix source tree (@pxref{Running
4532Guix Before It Is Installed}):
4533
4534@example
4535$ ./pre-inst-env guix refresh -s non-core
4536@end example
4537
081145cf 4538@xref{Defining Packages}, for more information on package definitions.
37166310
LC
4539
4540@item --select=[@var{subset}]
4541@itemx -s @var{subset}
4542Select all the packages in @var{subset}, one of @code{core} or
4543@code{non-core}.
4544
4545The @code{core} subset refers to all the packages at the core of the
4546distribution---i.e., packages that are used to build ``everything
4547else''. This includes GCC, libc, Binutils, Bash, etc. Usually,
4548changing one of these packages in the distribution entails a rebuild of
4549all the others. Thus, such updates are an inconvenience to users in
4550terms of build time or bandwidth used to achieve the upgrade.
4551
4552The @code{non-core} subset refers to the remaining packages. It is
4553typically useful in cases where an update of the core packages would be
4554inconvenient.
4555
bcb571cb
LC
4556@item --type=@var{updater}
4557@itemx -t @var{updater}
7191adc5
AK
4558Select only packages handled by @var{updater} (may be a comma-separated
4559list of updaters). Currently, @var{updater} may be one of:
bcb571cb
LC
4560
4561@table @code
4562@item gnu
4563the updater for GNU packages;
e80c0f85
LC
4564@item gnome
4565the updater for GNOME packages;
bcb571cb 4566@item elpa
d882c235
LC
4567the updater for @uref{http://elpa.gnu.org/, ELPA} packages;
4568@item cran
b9d044ef 4569the updater for @uref{http://cran.r-project.org/, CRAN} packages;
d0bd632f
RW
4570@item bioconductor
4571the updater for @uref{http://www.bioconductor.org/, Bioconductor} R packages;
bab020d7 4572@item pypi
b9d044ef 4573the updater for @uref{https://pypi.python.org, PyPI} packages.
fbc5b815
BW
4574@item gem
4575the updater for @uref{https://rubygems.org, RubyGems} packages.
bcb571cb
LC
4576@end table
4577
f97c9175
AE
4578For instance, the following command only checks for updates of Emacs
4579packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:
bcb571cb
LC
4580
4581@example
7191adc5 4582$ guix refresh --type=elpa,cran
d882c235 4583gnu/packages/statistics.scm:819:13: r-testthat would be upgraded from 0.10.0 to 0.11.0
bcb571cb
LC
4584gnu/packages/emacs.scm:856:13: emacs-auctex would be upgraded from 11.88.6 to 11.88.9
4585@end example
4586
37166310
LC
4587@end table
4588
4589In addition, @command{guix refresh} can be passed one or more package
4590names, as in this example:
4591
4592@example
38e16b49 4593$ ./pre-inst-env guix refresh -u emacs idutils gcc-4.8.4
37166310
LC
4594@end example
4595
4596@noindent
4597The command above specifically updates the @code{emacs} and
4598@code{idutils} packages. The @code{--select} option would have no
4599effect in this case.
4600
7d193ec3
EB
4601When considering whether to upgrade a package, it is sometimes
4602convenient to know which packages would be affected by the upgrade and
4603should be checked for compatibility. For this the following option may
4604be used when passing @command{guix refresh} one or more package names:
4605
4606@table @code
4607
6ffa706b
AK
4608@item --list-updaters
4609@itemx -L
4610List available updaters and exit (see @option{--type} above.)
4611
7d193ec3
EB
4612@item --list-dependent
4613@itemx -l
4614List top-level dependent packages that would need to be rebuilt as a
4615result of upgrading one or more packages.
4616
4617@end table
4618
4619Be aware that the @code{--list-dependent} option only
4620@emph{approximates} the rebuilds that would be required as a result of
4621an upgrade. More rebuilds might be required under some circumstances.
4622
4623@example
7779ab61
LC
4624$ guix refresh --list-dependent flex
4625Building the following 120 packages would ensure 213 dependent packages are rebuilt:
4626hop-2.4.0 geiser-0.4 notmuch-0.18 mu-0.9.9.5 cflow-1.4 idutils-4.6 @dots{}
7d193ec3
EB
4627@end example
4628
4629The command above lists a set of packages that could be built to check
4630for compatibility with an upgraded @code{flex} package.
4631
f9230085
LC
4632The following options can be used to customize GnuPG operation:
4633
4634@table @code
4635
f9230085
LC
4636@item --gpg=@var{command}
4637Use @var{command} as the GnuPG 2.x command. @var{command} is searched
4638for in @code{$PATH}.
4639
2bc53ba9
LC
4640@item --key-download=@var{policy}
4641Handle missing OpenPGP keys according to @var{policy}, which may be one
4642of:
4643
4644@table @code
4645@item always
4646Always download missing OpenPGP keys from the key server, and add them
4647to the user's GnuPG keyring.
4648
4649@item never
4650Never try to download missing OpenPGP keys. Instead just bail out.
4651
4652@item interactive
4653When a package signed with an unknown OpenPGP key is encountered, ask
4654the user whether to download it or not. This is the default behavior.
4655@end table
4656
4657@item --key-server=@var{host}
4658Use @var{host} as the OpenPGP key server when importing a public key.
4659
f9230085
LC
4660@end table
4661
b4f5e0e8
CR
4662@node Invoking guix lint
4663@section Invoking @command{guix lint}
f97c9175
AE
4664The @command{guix lint} command is meant to help package developers avoid
4665common errors and use a consistent style. It runs a number of checks on
4666a given set of packages in order to find common mistakes in their
873c4085
LC
4667definitions. Available @dfn{checkers} include (see
4668@code{--list-checkers} for a complete list):
4669
4670@table @code
4671@item synopsis
4672@itemx description
4673Validate certain typographical and stylistic rules about package
4674descriptions and synopses.
4675
4676@item inputs-should-be-native
4677Identify inputs that should most likely be native inputs.
4678
4679@item source
4680@itemx home-page
50f5c46d 4681@itemx source-file-name
873c4085 4682Probe @code{home-page} and @code{source} URLs and report those that are
50f5c46d 4683invalid. Check that the source file name is meaningful, e.g. is not
f97c9175
AE
4684just a version number or ``git-checkout'', without a declared
4685@code{file-name} (@pxref{origin Reference}).
40a7d4e5 4686
5432734b
LC
4687@item cve
4688Report known vulnerabilities found in the Common Vulnerabilities and
4689Exposures (CVE) database
4690@uref{https://nvd.nist.gov/download.cfm#CVE_FEED, published by the US
4691NIST}.
4692
40a7d4e5
LC
4693@item formatting
4694Warn about obvious source code formatting issues: trailing white space,
4695use of tabulations, etc.
873c4085 4696@end table
b4f5e0e8
CR
4697
4698The general syntax is:
4699
4700@example
4701guix lint @var{options} @var{package}@dots{}
4702@end example
4703
4704If no package is given on the command line, then all packages are checked.
4705The @var{options} may be zero or more of the following:
4706
4707@table @code
f97c9175
AE
4708@item --list-checkers
4709@itemx -l
4710List and describe all the available checkers that will be run on packages
4711and exit.
b4f5e0e8 4712
dd7c013d
CR
4713@item --checkers
4714@itemx -c
4715Only enable the checkers specified in a comma-separated list using the
4716names returned by @code{--list-checkers}.
4717
b4f5e0e8 4718@end table
37166310 4719
fcc58db6
LC
4720@node Invoking guix size
4721@section Invoking @command{guix size}
4722
4723The @command{guix size} command helps package developers profile the
4724disk usage of packages. It is easy to overlook the impact of an
4725additional dependency added to a package, or the impact of using a
4726single output for a package that could easily be split (@pxref{Packages
f97c9175 4727with Multiple Outputs}). Such are the typical issues that
fcc58db6
LC
4728@command{guix size} can highlight.
4729
4730The command can be passed a package specification such as @code{gcc-4.8}
4731or @code{guile:debug}, or a file name in the store. Consider this
4732example:
4733
4734@example
4735$ guix size coreutils
4736store item total self
4737/gnu/store/@dots{}-coreutils-8.23 70.0 13.9 19.8%
4738/gnu/store/@dots{}-gmp-6.0.0a 55.3 2.5 3.6%
4739/gnu/store/@dots{}-acl-2.2.52 53.7 0.5 0.7%
4740/gnu/store/@dots{}-attr-2.4.46 53.2 0.3 0.5%
4741/gnu/store/@dots{}-gcc-4.8.4-lib 52.9 15.7 22.4%
4742/gnu/store/@dots{}-glibc-2.21 37.2 37.2 53.1%
4743@end example
4744
4745@cindex closure
4746The store items listed here constitute the @dfn{transitive closure} of
4747Coreutils---i.e., Coreutils and all its dependencies, recursively---as
4748would be returned by:
4749
4750@example
4751$ guix gc -R /gnu/store/@dots{}-coreutils-8.23
4752@end example
4753
f97c9175 4754Here the output shows three columns next to store items. The first column,
fcc58db6
LC
4755labeled ``total'', shows the size in mebibytes (MiB) of the closure of
4756the store item---that is, its own size plus the size of all its
4757dependencies. The next column, labeled ``self'', shows the size of the
f97c9175
AE
4758item itself. The last column shows the ratio of the size of the item
4759itself to the space occupied by all the items listed here.
fcc58db6
LC
4760
4761In this example, we see that the closure of Coreutils weighs in at
476270@tie{}MiB, half of which is taken by libc. (That libc represents a
4763large fraction of the closure is not a problem @i{per se} because it is
4764always available on the system anyway.)
4765
4766When the package passed to @command{guix size} is available in the
4767store, @command{guix size} queries the daemon to determine its
4768dependencies, and measures its size in the store, similar to @command{du
4769-ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU
4770Coreutils}).
4771
4772When the given package is @emph{not} in the store, @command{guix size}
f97c9175
AE
4773reports information based on the available substitutes
4774(@pxref{Substitutes}). This makes it possible it to profile disk usage of
4775store items that are not even on disk, only available remotely.
fcc58db6 4776
a8f996c6 4777The available options are:
fcc58db6
LC
4778
4779@table @option
4780
d490d06e
LC
4781@item --substitute-urls=@var{urls}
4782Use substitute information from @var{urls}.
4783@xref{client-substitute-urls, the same option for @code{guix build}}.
4784
a8f996c6 4785@item --map-file=@var{file}
f97c9175 4786Write a graphical map of disk usage in PNG format to @var{file}.
a8f996c6
LC
4787
4788For the example above, the map looks like this:
4789
4790@image{images/coreutils-size-map,5in,, map of Coreutils disk usage
4791produced by @command{guix size}}
4792
4793This option requires that
4794@uref{http://wingolog.org/software/guile-charting/, Guile-Charting} be
4795installed and visible in Guile's module search path. When that is not
4796the case, @command{guix size} fails as it tries to load it.
4797
fcc58db6
LC
4798@item --system=@var{system}
4799@itemx -s @var{system}
4800Consider packages for @var{system}---e.g., @code{x86_64-linux}.
4801
4802@end table
4803
88856916
LC
4804@node Invoking guix graph
4805@section Invoking @command{guix graph}
4806
4807@cindex DAG
4808Packages and their dependencies form a @dfn{graph}, specifically a
4809directed acyclic graph (DAG). It can quickly become difficult to have a
f97c9175
AE
4810mental model of the package DAG, so the @command{guix graph} command
4811provides a visual representation of the DAG. @command{guix graph}
4812emits a DAG representation in the input format of
88856916 4813@uref{http://www.graphviz.org/, Graphviz}, so its output can be passed
f97c9175 4814directly to the @command{dot} command of Graphviz. The general
88856916
LC
4815syntax is:
4816
4817@example
4818guix graph @var{options} @var{package}@dots{}
4819@end example
4820
4821For example, the following command generates a PDF file representing the
4822package DAG for the GNU@tie{}Core Utilities, showing its build-time
4823dependencies:
4824
4825@example
4826guix graph coreutils | dot -Tpdf > dag.pdf
4827@end example
4828
4829The output looks like this:
4830
4831@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}
4832
4833Nice little graph, no?
4834
f97c9175 4835But there is more than one graph! The one above is concise: it is the
88856916 4836graph of package objects, omitting implicit inputs such as GCC, libc,
f97c9175
AE
4837grep, etc. It is often useful to have such a concise graph, but
4838sometimes one may want to see more details. @command{guix graph} supports
4839several types of graphs, allowing you to choose the level of detail:
88856916
LC
4840
4841@table @code
4842@item package
f97c9175 4843This is the default type used in the example above. It shows the DAG of
88856916
LC
4844package objects, excluding implicit dependencies. It is concise, but
4845filters out many details.
4846
4847@item bag-emerged
4848This is the package DAG, @emph{including} implicit inputs.
4849
4850For instance, the following command:
4851
4852@example
4853guix graph --type=bag-emerged coreutils | dot -Tpdf > dag.pdf
4854@end example
4855
4856... yields this bigger graph:
4857
4858@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}
4859
4860At the bottom of the graph, we see all the implicit inputs of
4861@var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}}).
4862
f97c9175 4863Now, note that the dependencies of these implicit inputs---that is, the
88856916
LC
4864@dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown
4865here, for conciseness.
4866
4867@item bag
4868Similar to @code{bag-emerged}, but this time including all the bootstrap
4869dependencies.
4870
38b92daa
LC
4871@item bag-with-origins
4872Similar to @code{bag}, but also showing origins and their dependencies.
4873
88856916
LC
4874@item derivations
4875This is the most detailed representation: It shows the DAG of
4876derivations (@pxref{Derivations}) and plain store items. Compared to
4877the above representation, many additional nodes are visible, including
f97c9175 4878build scripts, patches, Guile modules, etc.
88856916
LC
4879
4880@end table
4881
f97c9175 4882All the types above correspond to @emph{build-time dependencies}. The
88856916
LC
4883following graph type represents the @emph{run-time dependencies}:
4884
4885@table @code
4886@item references
4887This is the graph of @dfn{references} of a package output, as returned
4888by @command{guix gc --references} (@pxref{Invoking guix gc}).
4889
4890If the given package output is not available in the store, @command{guix
4891graph} attempts to obtain dependency information from substitutes.
4892@end table
4893
4894The available options are the following:
4895
4896@table @option
4897@item --type=@var{type}
4898@itemx -t @var{type}
4899Produce a graph output of @var{type}, where @var{type} must be one of
4900the values listed above.
4901
4902@item --list-types
4903List the supported graph types.
4c8f997a
LC
4904
4905@item --expression=@var{expr}
4906@itemx -e @var{expr}
4907Consider the package @var{expr} evaluates to.
4908
4909This is useful to precisely refer to a package, as in this example:
4910
4911@example
4912guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'
4913@end example
88856916
LC
4914@end table
4915
4916
372c4bbc
DT
4917@node Invoking guix environment
4918@section Invoking @command{guix environment}
4919
f5fd4fd2 4920@cindex reproducible build environments
fe36d84e 4921@cindex development environments
372c4bbc
DT
4922The purpose of @command{guix environment} is to assist hackers in
4923creating reproducible development environments without polluting their
4924package profile. The @command{guix environment} tool takes one or more
f97c9175 4925packages, builds all of their inputs, and creates a shell
372c4bbc
DT
4926environment to use them.
4927
4928The general syntax is:
4929
4930@example
4931guix environment @var{options} @var{package}@dots{}
4932@end example
4933
fe36d84e
LC
4934The following example spawns a new shell set up for the development of
4935GNU@tie{}Guile:
372c4bbc
DT
4936
4937@example
4938guix environment guile
4939@end example
4940
f97c9175
AE
4941If the needed dependencies are not built yet, @command{guix environment}
4942automatically builds them. The environment of the new shell is an augmented
372c4bbc
DT
4943version of the environment that @command{guix environment} was run in.
4944It contains the necessary search paths for building the given package
4945added to the existing environment variables. To create a ``pure''
f97c9175 4946environment, in which the original environment variables have been unset,
50500f7c
LC
4947use the @code{--pure} option@footnote{Users sometimes wrongfully augment
4948environment variables such as @code{PATH} in their @file{~/.bashrc}
4949file. As a consequence, when @code{guix environment} launches it, Bash
4950may read @file{~/.bashrc}, thereby introducing ``impurities'' in these
4951environment variables. It is an error to define such environment
4952variables in @file{.bashrc}; instead, they should be defined in
4953@file{.bash_profile}, which is sourced only by log-in shells.
4954@xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for
4955details on Bash start-up files.}.
372c4bbc 4956
28de8d25
LC
4957@vindex GUIX_ENVIRONMENT
4958@command{guix environment} defines the @code{GUIX_ENVIRONMENT}
f97c9175 4959variable in the shell it spawns. This allows users to, say, define a
28de8d25
LC
4960specific prompt for development environments in their @file{.bashrc}
4961(@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):
4962
4963@example
4964if [ -n "$GUIX_ENVIRONMENT" ]
4965then
4966 export PS1="\u@@\h \w [dev]\$ "
4967fi
4968@end example
4969
372c4bbc
DT
4970Additionally, more than one package may be specified, in which case the
4971union of the inputs for the given packages are used. For example, the
4972command below spawns a shell where all of the dependencies of both Guile
4973and Emacs are available:
4974
4975@example
4976guix environment guile emacs
4977@end example
4978
1de2fe95
DT
4979Sometimes an interactive shell session is not desired. An arbitrary
4980command may be invoked by placing the @code{--} token to separate the
4981command from the rest of the arguments:
372c4bbc
DT
4982
4983@example
1de2fe95 4984guix environment guile -- make -j4
372c4bbc
DT
4985@end example
4986
fe36d84e
LC
4987In other situations, it is more convenient to specify the list of
4988packages needed in the environment. For example, the following command
4989runs @command{python} from an environment containing Python@tie{}2.7 and
4990NumPy:
4991
4992@example
1de2fe95 4993guix environment --ad-hoc python2-numpy python-2.7 -- python
fe36d84e
LC
4994@end example
4995
cc90fbbf
DT
4996Furthermore, one might want the dependencies of a package and also some
4997additional packages that are not build-time or runtime dependencies, but
4998are useful when developing nonetheless. Because of this, the
4999@code{--ad-hoc} flag is positional. Packages appearing before
5000@code{--ad-hoc} are interpreted as packages whose dependencies will be
5001added to the environment. Packages appearing after are interpreted as
5002packages that will be added to the environment directly. For example,
5003the following command creates a Guix development environment that
5004additionally includes Git and strace:
5005
5006@example
5007guix environment guix --ad-hoc git strace
5008@end example
5009
f535dcbe
DT
5010Sometimes it is desirable to isolate the environment as much as
5011possible, for maximal purity and reproducibility. In particular, when
5012using Guix on a host distro that is not GuixSD, it is desirable to
5013prevent access to @file{/usr/bin} and other system-wide resources from
5014the development environment. For example, the following command spawns
5015a Guile REPL in a ``container'' where only the store and the current
5016working directory are mounted:
5017
5018@example
5019guix environment --ad-hoc --container guile -- guile
5020@end example
5021
0f252e26 5022@quotation Note
cfd35b4e 5023The @code{--container} option requires Linux-libre 3.19 or newer.
0f252e26
DT
5024@end quotation
5025
fe36d84e 5026The available options are summarized below.
372c4bbc
DT
5027
5028@table @code
5029@item --expression=@var{expr}
5030@itemx -e @var{expr}
c9c282ce
DT
5031Create an environment for the package or list of packages that
5032@var{expr} evaluates to.
372c4bbc 5033
fe36d84e
LC
5034For example, running:
5035
5036@example
5037guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'
5038@end example
5039
5040starts a shell with the environment for this specific variant of the
5041PETSc package.
5042
c9c282ce
DT
5043Running:
5044
5045@example
5c2b2f00 5046guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'
c9c282ce
DT
5047@end example
5048
5049starts a shell with all the GuixSD base packages available.
5050
779aa003
DT
5051The above commands only the use default output of the given packages.
5052To select other outputs, two element tuples can be specified:
5053
5054@example
5055guix environment --ad-hoc -e '(list (@ (gnu packages bash) bash) "include")'
5056@end example
5057
372c4bbc
DT
5058@item --load=@var{file}
5059@itemx -l @var{file}
c9c282ce
DT
5060Create an environment for the package or list of packages that the code
5061within @var{file} evaluates to.
372c4bbc 5062
fe36d84e
LC
5063As an example, @var{file} might contain a definition like this
5064(@pxref{Defining Packages}):
5065
5066@example
5067@verbatiminclude environment-gdb.scm
5068@end example
5069
a54bd6d7
DT
5070@item --ad-hoc
5071Include all specified packages in the resulting environment, as if an
5072@i{ad hoc} package were defined with them as inputs. This option is
5073useful for quickly creating an environment without having to write a
5074package expression to contain the desired inputs.
5075
5076For instance, the command:
5077
5078@example
1de2fe95 5079guix environment --ad-hoc guile guile-sdl -- guile
a54bd6d7
DT
5080@end example
5081
5082runs @command{guile} in an environment where Guile and Guile-SDL are
5083available.
5084
417c39f1 5085Note that this example implicitly asks for the default output of
f97c9175 5086@code{guile} and @code{guile-sdl}, but it is possible to ask for a
417c39f1
LC
5087specific output---e.g., @code{glib:bin} asks for the @code{bin} output
5088of @code{glib} (@pxref{Packages with Multiple Outputs}).
5089
cc90fbbf
DT
5090This option may be composed with the default behavior of @command{guix
5091environment}. Packages appearing before @code{--ad-hoc} are interpreted
5092as packages whose dependencies will be added to the environment, the
5093default behavior. Packages appearing after are interpreted as packages
5094that will be added to the environment directly.
5095
372c4bbc
DT
5096@item --pure
5097Unset existing environment variables when building the new environment.
5098This has the effect of creating an environment in which search paths
5099only contain package inputs.
5100
5101@item --search-paths
5102Display the environment variable definitions that make up the
5103environment.
ce367ef3
LC
5104
5105@item --system=@var{system}
5106@itemx -s @var{system}
5107Attempt to build for @var{system}---e.g., @code{i686-linux}.
f535dcbe
DT
5108
5109@item --container
5110@itemx -C
5111@cindex container
5112Run @var{command} within an isolated container. The current working
56b6befb 5113directory outside the container is mapped inside the
f535dcbe
DT
5114container. Additionally, the spawned process runs as the current user
5115outside the container, but has root privileges in the context of the
5116container.
5117
5118@item --network
5119@itemx -N
5120For containers, share the network namespace with the host system.
5121Containers created without this flag only have access to the loopback
5122device.
5123
5124@item --expose=@var{source}[=@var{target}]
5125For containers, expose the file system @var{source} from the host system
5126as the read-only file system @var{target} within the container. If
5127@var{target} is not specified, @var{source} is used as the target mount
5128point in the container.
5129
5130The example below spawns a Guile REPL in a container in which the user's
5131home directory is accessible read-only via the @file{/exchange}
5132directory:
5133
5134@example
5135guix environment --container --expose=$HOME=/exchange guile -- guile
5136@end example
5137
5c2b2f00 5138@item --share=@var{source}[=@var{target}]
f535dcbe
DT
5139For containers, share the file system @var{source} from the host system
5140as the writable file system @var{target} within the container. If
5141@var{target} is not specified, @var{source} is used as the target mount
5142point in the container.
5143
5144The example below spawns a Guile REPL in a container in which the user's
5145home directory is accessible for both reading and writing via the
5146@file{/exchange} directory:
5147
5148@example
5149guix environment --container --share=$HOME=/exchange guile -- guile
5150@end example
372c4bbc
DT
5151@end table
5152
5153It also supports all of the common build options that @command{guix
ccd7158d 5154build} supports (@pxref{Common Build Options}).
372c4bbc 5155
aff8ce7c
DT
5156@node Invoking guix publish
5157@section Invoking @command{guix publish}
5158
5159The purpose of @command{guix publish} is to enable users to easily share
f97c9175 5160their store with others, who can then use it as a substitute server
8ce229fc
LC
5161(@pxref{Substitutes}).
5162
5163When @command{guix publish} runs, it spawns an HTTP server which allows
5164anyone with network access to obtain substitutes from it. This means
5165that any machine running Guix can also act as if it were a build farm,
5166since the HTTP interface is compatible with Hydra, the software behind
5167the @code{hydra.gnu.org} build farm.
aff8ce7c
DT
5168
5169For security, each substitute is signed, allowing recipients to check
5170their authenticity and integrity (@pxref{Substitutes}). Because
f97c9175 5171@command{guix publish} uses the signing key of the system, which is only
5463fe51
LC
5172readable by the system administrator, it must be started as root; the
5173@code{--user} option makes it drop root privileges early on.
aff8ce7c 5174
b18812b6
LC
5175The signing key pair must be generated before @command{guix publish} is
5176launched, using @command{guix archive --generate-key} (@pxref{Invoking
5177guix archive}).
5178
aff8ce7c
DT
5179The general syntax is:
5180
5181@example
5182guix publish @var{options}@dots{}
5183@end example
5184
5185Running @command{guix publish} without any additional arguments will
5186spawn an HTTP server on port 8080:
5187
5188@example
5189guix publish
5190@end example
5191
5192Once a publishing server has been authorized (@pxref{Invoking guix
5193archive}), the daemon may download substitutes from it:
5194
5195@example
5196guix-daemon --substitute-urls=http://example.org:8080
5197@end example
5198
5199The following options are available:
5200
5201@table @code
5202@item --port=@var{port}
5203@itemx -p @var{port}
5204Listen for HTTP requests on @var{port}.
5205
9e2292ef
LC
5206@item --listen=@var{host}
5207Listen on the network interface for @var{host}. The default is to
5208accept connections from any interface.
5209
5463fe51
LC
5210@item --user=@var{user}
5211@itemx -u @var{user}
5212Change privileges to @var{user} as soon as possible---i.e., once the
5213server socket is open and the signing key has been read.
5214
aff8ce7c
DT
5215@item --repl[=@var{port}]
5216@itemx -r [@var{port}]
5217Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile
8ce229fc
LC
5218Reference Manual}) on @var{port} (37146 by default). This is used
5219primarily for debugging a running @command{guix publish} server.
aff8ce7c
DT
5220@end table
5221
1c52181f
LC
5222Enabling @command{guix publish} on a GuixSD system is a one-liner: just
5223add a call to @code{guix-publish-service} in the @code{services} field
5224of the @code{operating-system} declaration (@pxref{guix-publish-service,
5225@code{guix-publish-service}}).
5226
d23c20f1
LC
5227
5228@node Invoking guix challenge
5229@section Invoking @command{guix challenge}
5230
5231@cindex reproducible builds
5232@cindex verifiable builds
5233
5234Do the binaries provided by this server really correspond to the source
f97c9175 5235code it claims to build? Is a package build process deterministic?
d23c20f1
LC
5236These are the questions the @command{guix challenge} command attempts to
5237answer.
5238
5239The former is obviously an important question: Before using a substitute
f97c9175 5240server (@pxref{Substitutes}), one had better @emph{verify} that it
d23c20f1
LC
5241provides the right binaries, and thus @emph{challenge} it. The latter
5242is what enables the former: If package builds are deterministic, then
5243independent builds of the package should yield the exact same result,
5244bit for bit; if a server provides a binary different from the one
5245obtained locally, it may be either corrupt or malicious.
5246
5247We know that the hash that shows up in @file{/gnu/store} file names is
5248the hash of all the inputs of the process that built the file or
5249directory---compilers, libraries, build scripts,
5250etc. (@pxref{Introduction}). Assuming deterministic build processes,
5251one store file name should map to exactly one build output.
5252@command{guix challenge} checks whether there is, indeed, a single
5253mapping by comparing the build outputs of several independent builds of
5254any given store item.
5255
f97c9175 5256The command output looks like this:
d23c20f1
LC
5257
5258@smallexample
5259$ guix challenge --substitute-urls="http://hydra.gnu.org http://guix.example.org"
5260updating list of substitutes from 'http://hydra.gnu.org'... 100.0%
5261updating list of substitutes from 'http://guix.example.org'... 100.0%
5262/gnu/store/@dots{}-openssl-1.0.2d contents differ:
5263 local hash: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
5264 http://hydra.gnu.org/nar/@dots{}-openssl-1.0.2d: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
5265 http://guix.example.org/nar/@dots{}-openssl-1.0.2d: 1zy4fmaaqcnjrzzajkdn3f5gmjk754b43qkq47llbyak9z0qjyim
5266/gnu/store/@dots{}-git-2.5.0 contents differ:
5267 local hash: 00p3bmryhjxrhpn2gxs2fy0a15lnip05l97205pgbk5ra395hyha
5268 http://hydra.gnu.org/nar/@dots{}-git-2.5.0: 069nb85bv4d4a6slrwjdy8v1cn4cwspm3kdbmyb81d6zckj3nq9f
5269 http://guix.example.org/nar/@dots{}-git-2.5.0: 0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73
5270/gnu/store/@dots{}-pius-2.1.1 contents differ:
5271 local hash: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
5272 http://hydra.gnu.org/nar/@dots{}-pius-2.1.1: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
5273 http://guix.example.org/nar/@dots{}-pius-2.1.1: 1cy25x1a4fzq5rk0pmvc8xhwyffnqz95h2bpvqsz2mpvlbccy0gs
5274@end smallexample
5275
5276@noindent
5277In this example, @command{guix challenge} first scans the store to
5278determine the set of locally-built derivations---as opposed to store
5279items that were downloaded from a substitute server---and then queries
5280all the substitute servers. It then reports those store items for which
5281the servers obtained a result different from the local build.
5282
5283@cindex non-determinism, in package builds
5284As an example, @code{guix.example.org} always gets a different answer.
5285Conversely, @code{hydra.gnu.org} agrees with local builds, except in the
5286case of Git. This might indicate that the build process of Git is
5287non-deterministic, meaning that its output varies as a function of
5288various things that Guix does not fully control, in spite of building
5289packages in isolated environments (@pxref{Features}). Most common
5290sources of non-determinism include the addition of timestamps in build
5291results, the inclusion of random numbers, and directory listings sorted
5292by inode number. See @uref{http://reproducible.debian.net/howto/}, for
5293more information.
5294
f97c9175 5295To find out what is wrong with this Git binary, we can do something along
d23c20f1
LC
5296these lines (@pxref{Invoking guix archive}):
5297
5298@example
5299$ wget -q -O - http://hydra.gnu.org/nar/@dots{}-git-2.5.0 \
5300 | guix archive -x /tmp/git
043f4698 5301$ diff -ur --no-dereference /gnu/store/@dots{}-git.2.5.0 /tmp/git
d23c20f1
LC
5302@end example
5303
5304This command shows the difference between the files resulting from the
5305local build, and the files resulting from the build on
5306@code{hydra.gnu.org} (@pxref{Overview, Comparing and Merging Files,,
5307diffutils, Comparing and Merging Files}). The @command{diff} command
5308works great for text files. When binary files differ, a better option
5309is @uref{http://diffoscope.org/, Diffoscope}, a tool that helps
5310visualize differences for all kinds of files.
5311
f97c9175 5312Once you have done that work, you can tell whether the differences are due
d23c20f1
LC
5313to a non-deterministic build process or to a malicious server. We try
5314hard to remove sources of non-determinism in packages to make it easier
f97c9175
AE
5315to verify substitutes, but of course, this is a process that
5316involves not just Guix, but a large part of the free software community.
d23c20f1
LC
5317In the meantime, @command{guix challenge} is one tool to help address
5318the problem.
5319
5320If you are writing packages for Guix, you are encouraged to check
5321whether @code{hydra.gnu.org} and other substitute servers obtain the
5322same build result as you did with:
5323
5324@example
5325$ guix challenge @var{package}
5326@end example
5327
5328@noindent
f97c9175 5329where @var{package} is a package specification such as
d23c20f1
LC
5330@code{guile-2.0} or @code{glibc:debug}.
5331
5332The general syntax is:
5333
5334@example
5335guix challenge @var{options} [@var{packages}@dots{}]
5336@end example
5337
5338The one option that matters is:
5339
5340@table @code
5341
5342@item --substitute-urls=@var{urls}
5343Consider @var{urls} the whitespace-separated list of substitute source
5344URLs to compare to.
5345
5346@end table
5347
5348
32efa254
DT
5349@node Invoking guix container
5350@section Invoking @command{guix container}
5351@cindex container
5352
5353@quotation Note
5354As of version @value{VERSION}, this tool is experimental. The interface
5355is subject to radical change in the future.
5356@end quotation
5357
5358The purpose of @command{guix container} is to manipulate processes
5359running within an isolated environment, commonly known as a
46c36586 5360``container'', typically created by the @command{guix environment}
32efa254
DT
5361(@pxref{Invoking guix environment}) and @command{guix system container}
5362(@pxref{Invoking guix system}) commands.
5363
5364The general syntax is:
5365
5366@example
5367guix container @var{action} @var{options}@dots{}
5368@end example
5369
5370@var{action} specifies the operation to perform with a container, and
5371@var{options} specifies the context-specific arguments for the action.
5372
5373The following actions are available:
5374
5375@table @code
5376@item exec
5377Execute a command within the context of a running container.
5378
5379The syntax is:
5380
5381@example
5382guix container exec @var{pid} @var{program} @var{arguments}@dots{}
5383@end example
5384
5385@var{pid} specifies the process ID of the running container.
f97c9175
AE
5386@var{program} specifies an executable file name within the root file
5387system of the container. @var{arguments} are the additional options that
5388will be passed to @var{program}.
32efa254
DT
5389
5390The following command launches an interactive login shell inside a
5391GuixSD container, started by @command{guix system container}, and whose
5392process ID is 9001:
5393
5394@example
5395guix container exec 9001 /run/current-system/profile/bin/bash --login
5396@end example
5397
5398Note that the @var{pid} cannot be the parent process of a container. It
f97c9175 5399must be PID 1 of the container or one of its child processes.
32efa254
DT
5400
5401@end table
5402
a1ba8475
LC
5403@c *********************************************************************
5404@node GNU Distribution
5405@chapter GNU Distribution
5406
3ca2731c 5407@cindex Guix System Distribution
4705641f 5408@cindex GuixSD
3ca2731c
LC
5409Guix comes with a distribution of the GNU system consisting entirely of
5410free software@footnote{The term ``free'' here refers to the
a1ba8475 5411@url{http://www.gnu.org/philosophy/free-sw.html,freedom provided to
3ca2731c 5412users of that software}.}. The
35ed9306
LC
5413distribution can be installed on its own (@pxref{System Installation}),
5414but it is also possible to install Guix as a package manager on top of
5415an installed GNU/Linux system (@pxref{Installation}). To distinguish
3ca2731c 5416between the two, we refer to the standalone distribution as the Guix
4705641f 5417System Distribution, or GuixSD.
35ed9306
LC
5418
5419The distribution provides core GNU packages such as GNU libc, GCC, and
5420Binutils, as well as many GNU and non-GNU applications. The complete
5421list of available packages can be browsed
093ae1be 5422@url{http://www.gnu.org/software/guix/packages,on-line} or by
d03bb653 5423running @command{guix package} (@pxref{Invoking guix package}):
a1ba8475
LC
5424
5425@example
e49951eb 5426guix package --list-available
a1ba8475
LC
5427@end example
5428
f97c9175 5429Our goal is to provide a practical 100% free software distribution of
401c53c4
LC
5430Linux-based and other variants of GNU, with a focus on the promotion and
5431tight integration of GNU components, and an emphasis on programs and
5432tools that help users exert that freedom.
5433
3ca2731c 5434Packages are currently available on the following platforms:
c320011d
LC
5435
5436@table @code
5437
5438@item x86_64-linux
5439Intel/AMD @code{x86_64} architecture, Linux-Libre kernel;
5440
5441@item i686-linux
5442Intel 32-bit architecture (IA32), Linux-Libre kernel;
5443
aa1e1947 5444@item armhf-linux
aa725117 5445ARMv7-A architecture with hard float, Thumb-2 and NEON,
f97c9175
AE
5446using the EABI hard-float application binary interface (ABI),
5447and Linux-Libre kernel.
aa1e1947 5448
c320011d
LC
5449@item mips64el-linux
5450little-endian 64-bit MIPS processors, specifically the Loongson series,
f97c9175 5451n32 ABI, and Linux-Libre kernel.
c320011d
LC
5452
5453@end table
5454
4705641f 5455GuixSD itself is currently only available on @code{i686} and @code{x86_64}.
3ca2731c 5456
c320011d
LC
5457@noindent
5458For information on porting to other architectures or kernels,
f97c9175 5459@pxref{Porting}.
c320011d 5460
401c53c4 5461@menu
5af6de3e 5462* System Installation:: Installing the whole operating system.
35ed9306 5463* System Configuration:: Configuring the operating system.
91ef73d4 5464* Installing Debugging Files:: Feeding the debugger.
05962f29 5465* Security Updates:: Deploying security fixes quickly.
401c53c4 5466* Package Modules:: Packages from the programmer's viewpoint.
da7cabd4 5467* Packaging Guidelines:: Growing the distribution.
401c53c4 5468* Bootstrapping:: GNU/Linux built from scratch.
8b315a6d 5469* Porting:: Targeting another platform or kernel.
401c53c4
LC
5470@end menu
5471
5472Building this distribution is a cooperative effort, and you are invited
081145cf 5473to join! @xref{Contributing}, for information about how you can help.
401c53c4 5474
5af6de3e
LC
5475@node System Installation
5476@section System Installation
5477
3ca2731c
LC
5478@cindex Guix System Distribution
5479This section explains how to install the Guix System Distribution
5480on a machine. The Guix package manager can
35ed9306
LC
5481also be installed on top of a running GNU/Linux system,
5482@pxref{Installation}.
5af6de3e
LC
5483
5484@ifinfo
5485@c This paragraph is for people reading this from tty2 of the
5486@c installation image.
5487You're reading this documentation with an Info reader. For details on
5488how to use it, hit the @key{RET} key (``return'' or ``enter'') on the
6621cdb6 5489link that follows: @pxref{Help,,, info, Info: An Introduction}. Hit
5af6de3e
LC
5490@kbd{l} afterwards to come back here.
5491@end ifinfo
5492
dedb8d5e
LC
5493@menu
5494* Limitations:: What you can expect.
5495* USB Stick Installation:: Preparing the installation medium.
5496* Preparing for Installation:: Networking, partitioning, etc.
5497* Proceeding with the Installation:: The real thing.
5498* Building the Installation Image:: How this comes to be.
5499@end menu
5500
5501@node Limitations
8aaaae38
LC
5502@subsection Limitations
5503
4705641f 5504As of version @value{VERSION}, the Guix System Distribution (GuixSD) is
3ca2731c 5505not production-ready. It may contain bugs and lack important
8aaaae38
LC
5506features. Thus, if you are looking for a stable production system that
5507respects your freedom as a computer user, a good solution at this point
5508is to consider @url{http://www.gnu.org/distros/free-distros.html, one of
f97c9175 5509the more established GNU/Linux distributions}. We hope you can soon switch
4705641f 5510to the GuixSD without fear, of course. In the meantime, you can
8aaaae38
LC
5511also keep using your distribution and try out the package manager on top
5512of it (@pxref{Installation}).
5513
5514Before you proceed with the installation, be aware of the following
5515noteworthy limitations applicable to version @value{VERSION}:
5516
5517@itemize
5518@item
5519The installation process does not include a graphical user interface and
5520requires familiarity with GNU/Linux (see the following subsections to
5521get a feel of what that means.)
5522
5523@item
093ae1be 5524The system does not yet provide full GNOME and KDE desktops. Xfce and
f97c9175 5525Enlightenment are available, though, if graphical desktop environments
093ae1be 5526are your thing, as well as a number of X11 window managers.
8aaaae38
LC
5527
5528@item
dbcb0ab1 5529Support for the Logical Volume Manager (LVM) is missing.
8aaaae38
LC
5530
5531@item
5532Few system services are currently supported out-of-the-box
5533(@pxref{Services}).
5534
5535@item
dedb8d5e 5536More than 3,000 packages are available, but you may
8aaaae38
LC
5537occasionally find that a useful package is missing.
5538@end itemize
5539
f97c9175
AE
5540You have been warned! But more than a disclaimer, this is an invitation
5541to report issues (and success stories!), and to join us in improving it.
8aaaae38 5542@xref{Contributing}, for more info.
5af6de3e 5543
dedb8d5e 5544@node USB Stick Installation
5af6de3e
LC
5545@subsection USB Stick Installation
5546
5547An installation image for USB sticks can be downloaded from
4705641f 5548@indicateurl{ftp://alpha.gnu.org/gnu/guix/guixsd-usb-install-@value{VERSION}.@var{system}.xz},
5af6de3e
LC
5549where @var{system} is one of:
5550
5551@table @code
5552@item x86_64-linux
5553for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;
5554
5555@item i686-linux
5556for a 32-bit GNU/Linux system on Intel-compatible CPUs.
5557@end table
5558
5559This image contains a single partition with the tools necessary for an
5560installation. It is meant to be copied @emph{as is} to a large-enough
5561USB stick.
5562
5563To copy the image to a USB stick, follow these steps:
5564
5565@enumerate
5566@item
5567Decompress the image using the @command{xz} command:
5568
5569@example
4705641f 5570xz -d guixsd-usb-install-@value{VERSION}.@var{system}.xz
5af6de3e
LC
5571@end example
5572
5573@item
f97c9175
AE
5574Insert a USB stick of 1@tie{}GiB or more into your machine, and determine
5575its device name. Assuming that the USB stick is known as @file{/dev/sdX},
5af6de3e
LC
5576copy the image with:
5577
5578@example
4705641f 5579dd if=guixsd-usb-install-@value{VERSION}.x86_64 of=/dev/sdX
5af6de3e
LC
5580@end example
5581
5582Access to @file{/dev/sdX} usually requires root privileges.
5583@end enumerate
5584
5585Once this is done, you should be able to reboot the system and boot from
5586the USB stick. The latter usually requires you to get in the BIOS' boot
5587menu, where you can choose to boot from the USB stick.
5588
dedb8d5e 5589@node Preparing for Installation
5af6de3e
LC
5590@subsection Preparing for Installation
5591
5592Once you have successfully booted the image on the USB stick, you should
5593end up with a root prompt. Several console TTYs are configured and can
5594be used to run commands as root. TTY2 shows this documentation,
5595browsable using the Info reader commands (@pxref{Help,,, info, Info: An
ae7ffa9e
LC
5596Introduction}). The installation system runs the GPM mouse daemon,
5597which allows you to select text with the left mouse button and to paste
5598it with the middle button.
5af6de3e 5599
dedb8d5e 5600@subsubsection Keyboard Layout
5af6de3e 5601
dedb8d5e
LC
5602@cindex keyboard layout
5603The installation image uses the US qwerty keyboard layout. If you want
5604to change it, you can use the @command{loadkeys} command. For example,
5605the following command selects the Dvorak keyboard layout:
5af6de3e 5606
dedb8d5e
LC
5607@example
5608loadkeys dvorak
5609@end example
5610
5611See the files under @file{/run/current-system/profile/share/keymaps} for
5612a list of available keyboard layouts. Run @command{man loadkeys} for
5613more information.
5614
5615@subsubsection Networking
5616
5617Run the following command see what your network interfaces are called:
235cba85
LC
5618
5619@example
dedb8d5e 5620ifconfig -a
235cba85
LC
5621@end example
5622
95c559c1 5623@c http://cgit.freedesktop.org/systemd/systemd/tree/src/udev/udev-builtin-net_id.c#n20
dedb8d5e
LC
5624Wired interfaces have a name starting with @samp{e}; for example, the
5625interface corresponding to the first on-board Ethernet controller is
5626called @samp{eno1}. Wireless interfaces have a name starting with
5627@samp{w}, like @samp{w1p2s0}.
5628
5629@table @asis
5630@item Wired connection
5631To configure a wired network run the following command, substituting
5632@var{interface} with the name of the wired interface you want to use.
5633
5634@example
5635ifconfig @var{interface} up
5636@end example
5637
5638@item Wireless connection
5639To configure wireless networking, you can create a configuration file
5640for the @command{wpa_supplicant} configuration tool (its location is not
5641important) using one of the available text editors such as
5642@command{zile}:
5643
5644@example
5645zile wpa_supplicant.conf
5646@end example
5647
5648As an example, the following stanza can go to this file and will work
5649for many wireless networks, provided you give the actual SSID and
5650passphrase for the network you are connecting to:
5651
5652@example
5653network=@{
5654 ssid=@var{my-ssid}
5655 key_mgmt=WPA-PSK
5656 psk="the network's secret passphrase"
5657@}
5658@end example
5659
5660Start the wireless service and run it in the background with the
5661following command (substitute @var{interface} with the name of the
5662network interface you want to use):
5663
5664@example
5665wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B
5666@end example
5667
5668Run @command{man wpa_supplication} for more information.
5669@end table
5670
5671At this point, you need to acquire an IP address. On a network where IP
5672addresses are automatically assigned @i{via} DHCP, you can run:
5673
5674@example
5675dhclient @var{interface}
5676@end example
5af6de3e 5677
dedb8d5e
LC
5678Try to ping a server to see if networking is up and running:
5679
5680@example
5681ping -c 3 gnu.org
5682@end example
5af6de3e
LC
5683
5684Setting up network access is almost always a requirement because the
5685image does not contain all the software and tools that may be needed.
5686
dedb8d5e
LC
5687@subsubsection Disk Partitioning
5688
5689Unless this has already been done, the next step is to partition, and
5690then format the target partition(s).
5691
5692The installation image includes several partitioning tools, including
5693Parted (@pxref{Overview,,, parted, GNU Parted User Manual}),
5694@command{fdisk}, and @command{cfdisk}. Run it and set up your disk with
5695the partition layout you want:
5696
5697@example
5698cfdisk
5699@end example
5700
5701Once you are done partitioning the target hard disk drive, you have to
5702create a file system on the relevant partition(s)@footnote{Currently
5703GuixSD pretty much assumes an ext4 file system. In particular, code
5704that reads partition UUIDs and labels only works with ext4. This will
5705be fixed in the future.}.
5af6de3e 5706
7ab44369
LC
5707Preferably, assign partitions a label so that you can easily and
5708reliably refer to them in @code{file-system} declarations (@pxref{File
5709Systems}). This is typically done using the @code{-L} option of
dedb8d5e
LC
5710@command{mkfs.ext4} and related commands. So, assuming the target root
5711partition lives at @file{/dev/sda1}, a file system with the label
5712@code{my-root} can be created with:
7ab44369 5713
dedb8d5e
LC
5714@example
5715mkfs.ext4 -L my-root /dev/sda1
5716@end example
dd816355 5717
316d65be
LC
5718@c FIXME: Uncomment this once GRUB fully supports encrypted roots.
5719@c A typical command sequence may be:
5720@c
5721@c @example
5722@c # fdisk /dev/sdX
5723@c @dots{} Create partitions etc.@dots{}
5724@c # cryptsetup luksFormat /dev/sdX1
5725@c # cryptsetup open --type luks /dev/sdX1 my-partition
5726@c # mkfs.ext4 -L my-root /dev/mapper/my-partition
5727@c @end example
6d6e6281 5728
dedb8d5e
LC
5729In addition to e2fsprogs, the suite of tools to manipulate
5730ext2/ext3/ext4 file systems, the installation image includes
5731Cryptsetup/LUKS for disk encryption.
5af6de3e 5732
dedb8d5e
LC
5733Once that is done, mount the target root partition under @file{/mnt}
5734with a command like (again, assuming @file{/dev/sda1} is the root
5735partition):
83a17b62 5736
dedb8d5e
LC
5737@example
5738mount /dev/sda1 /mnt
5739@end example
83a17b62 5740
dedb8d5e
LC
5741@node Proceeding with the Installation
5742@subsection Proceeding with the Installation
83a17b62 5743
dedb8d5e
LC
5744With the target partitions ready and the target root mounted on
5745@file{/mnt}, we're ready to go. First, run:
5af6de3e 5746
dedb8d5e
LC
5747@example
5748herd start cow-store /mnt
5749@end example
5af6de3e 5750
dedb8d5e
LC
5751This makes @file{/gnu/store} copy-on-write, such that packages added to
5752it during the installation phase are written to the target disk rather
5753than kept in memory.
5af6de3e 5754
dedb8d5e 5755Next, you have to edit a file and
5af6de3e
LC
5756provide the declaration of the operating system to be installed. To
5757that end, the installation system comes with two text editors: GNU nano
5758(@pxref{Top,,, nano, GNU nano Manual}), and GNU Zile, an Emacs clone.
5759It is better to store that file on the target root file system, say, as
5760@file{/mnt/etc/config.scm}.
5761
dedb8d5e
LC
5762@xref{Using the Configuration System}, for an overview of the
5763configuration file. The example configurations discussed in that
5764section are available under @file{/etc/configuration} in the
5765installation image. Thus, to get started with a system configuration
5766providing a graphical display server (a ``desktop'' system), you can run
5767something along these lines:
5768
5769@example
5770# mkdir /mnt/etc
5771# cp /etc/configuration/desktop.scm /mnt/etc/config.scm
5772# zile /mnt/etc/config.scm
5773@end example
5774
5775You should pay attention to what your configuration file contains, and
5776in particular:
5777
5778@itemize
5779@item
5780Make sure the @code{grub-configuration} form refers to the device you
5781want to install GRUB on.
5782
5783@item
5784Be sure that your partition labels match the value of their respective
5785@code{device} fields in your @code{file-system} configuration, assuming
5786your @code{file-system} configuration sets the value of @code{title} to
5787@code{'label}.
5788@end itemize
5af6de3e 5789
dd51caac
LC
5790Once you are done preparing the configuration file, the new system must
5791be initialized (remember that the target root file system is mounted
5792under @file{/mnt}):
5af6de3e
LC
5793
5794@example
5795guix system init /mnt/etc/config.scm /mnt
5796@end example
5797
5798@noindent
dedb8d5e 5799This copies all the necessary files and installs GRUB on
5af6de3e 5800@file{/dev/sdX}, unless you pass the @option{--no-grub} option. For
6621cdb6 5801more information, @pxref{Invoking guix system}. This command may trigger
5af6de3e
LC
5802downloads or builds of missing packages, which can take some time.
5803
1bd4e6db
LC
5804Once that command has completed---and hopefully succeeded!---you can run
5805@command{reboot} and boot into the new system. The @code{root} password
5806in the new system is initially empty; other users' passwords need to be
5807initialized by running the @command{passwd} command as @code{root},
5808unless your configuration specifies otherwise
5809(@pxref{user-account-password, user account passwords}).
5810
5811Join us on @code{#guix} on the Freenode IRC network or on
5af6de3e
LC
5812@file{guix-devel@@gnu.org} to share your experience---good or not so
5813good.
5814
dedb8d5e 5815@node Building the Installation Image
5af6de3e
LC
5816@subsection Building the Installation Image
5817
5818The installation image described above was built using the @command{guix
5819system} command, specifically:
5820
5821@example
8a225c66 5822guix system disk-image --image-size=850MiB gnu/system/install.scm
5af6de3e
LC
5823@end example
5824
5825@xref{Invoking guix system}, for more information. See
5826@file{gnu/system/install.scm} in the source tree for more information
5827about the installation image.
5828
cf4a9129
LC
5829@node System Configuration
5830@section System Configuration
b208a005 5831
cf4a9129 5832@cindex system configuration
3ca2731c 5833The Guix System Distribution supports a consistent whole-system configuration
cf4a9129
LC
5834mechanism. By that we mean that all aspects of the global system
5835configuration---such as the available system services, timezone and
5836locale settings, user accounts---are declared in a single place. Such
5837a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected.
91ef73d4 5838
cf4a9129
LC
5839One of the advantages of putting all the system configuration under the
5840control of Guix is that it supports transactional system upgrades, and
5841makes it possible to roll-back to a previous system instantiation,
5842should something go wrong with the new one (@pxref{Features}). Another
5843one is that it makes it easy to replicate the exact same configuration
5844across different machines, or at different points in time, without
5845having to resort to additional administration tools layered on top of
5846the system's own tools.
5847@c Yes, we're talking of Puppet, Chef, & co. here. ↑
91ef73d4 5848
cf4a9129
LC
5849This section describes this mechanism. First we focus on the system
5850administrator's viewpoint---explaining how the system is configured and
5851instantiated. Then we show how this mechanism can be extended, for
5852instance to support new system services.
91ef73d4 5853
cf4a9129
LC
5854@menu
5855* Using the Configuration System:: Customizing your GNU system.
7313a52e 5856* operating-system Reference:: Detail of operating-system declarations.
cf4a9129 5857* File Systems:: Configuring file system mounts.
510f9d86 5858* Mapped Devices:: Block device extra processing.
cf4a9129 5859* User Accounts:: Specifying user accounts.
598e19dc 5860* Locales:: Language and cultural convention settings.
cf4a9129 5861* Services:: Specifying system services.
0ae8c15a 5862* Setuid Programs:: Programs running with root privileges.
efb5e833 5863* X.509 Certificates:: Authenticating HTTPS servers.
996ed739 5864* Name Service Switch:: Configuring libc's name service switch.
fd1b1fa2 5865* Initial RAM Disk:: Linux-Libre bootstrapping.
88faf933 5866* GRUB Configuration:: Configuring the boot loader.
cf4a9129 5867* Invoking guix system:: Instantiating a system configuration.
97d76250 5868* Running GuixSD in a VM:: How to run GuixSD in a virtual machine.
cf4a9129
LC
5869* Defining Services:: Adding new service definitions.
5870@end menu
91ef73d4 5871
cf4a9129
LC
5872@node Using the Configuration System
5873@subsection Using the Configuration System
64d76fa6 5874
cf4a9129
LC
5875The operating system is configured by providing an
5876@code{operating-system} declaration in a file that can then be passed to
5877the @command{guix system} command (@pxref{Invoking guix system}). A
5878simple setup, with the default system services, the default Linux-Libre
5879kernel, initial RAM disk, and boot loader looks like this:
91ef73d4 5880
cf4a9129
LC
5881@findex operating-system
5882@lisp
dd51caac 5883@include os-config-bare-bones.texi
cf4a9129 5884@end lisp
401c53c4 5885
cf4a9129
LC
5886This example should be self-describing. Some of the fields defined
5887above, such as @code{host-name} and @code{bootloader}, are mandatory.
5888Others, such as @code{packages} and @code{services}, can be omitted, in
5889which case they get a default value.
e7f34eb0 5890
5d94ac51
LC
5891Below we discuss the effect of some of the most important fields
5892(@pxref{operating-system Reference}, for details about all the available
5893fields), and how to @dfn{instantiate} the operating system using
5894@command{guix system}.
5895
5896@unnumberedsubsubsec Globally-Visible Packages
5897
cf4a9129 5898@vindex %base-packages
5d94ac51
LC
5899The @code{packages} field lists packages that will be globally visible
5900on the system, for all user accounts---i.e., in every user's @code{PATH}
5901environment variable---in addition to the per-user profiles
5902(@pxref{Invoking guix package}). The @var{%base-packages} variable
5903provides all the tools one would expect for basic user and administrator
5904tasks---including the GNU Core Utilities, the GNU Networking Utilities,
5905the GNU Zile lightweight text editor, @command{find}, @command{grep},
5906etc. The example above adds tcpdump to those, taken from the @code{(gnu
5907packages admin)} module (@pxref{Package Modules}).
e7f34eb0 5908
f6c9fb1b
LC
5909@findex specification->package
5910Referring to packages by variable name, like @var{tcpdump} above, has
5911the advantage of being unambiguous; it also allows typos and such to be
5912diagnosed right away as ``unbound variables''. The downside is that one
5913needs to know which module defines which package, and to augment the
5914@code{use-package-modules} line accordingly. To avoid that, one can use
5915the @code{specification->package} procedure of the @code{(gnu packages)}
5916module, which returns the best package for a given name or name and
5917version:
5918
5919@lisp
5920(use-modules (gnu packages))
5921
5922(operating-system
5923 ;; ...
5924 (packages (append (map specification->package
5925 '("tcpdump" "htop" "gnupg-2.0"))
5926 %base-packages)))
5927@end lisp
5928
5d94ac51
LC
5929@unnumberedsubsubsec System Services
5930
cf4a9129
LC
5931@vindex %base-services
5932The @code{services} field lists @dfn{system services} to be made
5933available when the system starts (@pxref{Services}).
5934The @code{operating-system} declaration above specifies that, in
5935addition to the basic services, we want the @command{lshd} secure shell
cd6f6c22
LC
5936daemon listening on port 2222 (@pxref{Networking Services,
5937@code{lsh-service}}). Under the hood,
cf4a9129
LC
5938@code{lsh-service} arranges so that @code{lshd} is started with the
5939right command-line options, possibly with supporting configuration files
cd6f6c22
LC
5940generated as needed (@pxref{Defining Services}).
5941
5942@cindex customization, of services
5943@findex modify-services
5944Occasionally, instead of using the base services as is, you will want to
5945customize them. For instance, to change the configuration of
5946@code{guix-daemon} and Mingetty (the console log-in), you may write the
5947following instead of @var{%base-services}:
5948
5949@lisp
5950(modify-services %base-services
5951 (guix-service-type config =>
5952 (guix-configuration
5953 (inherit config)
5954 (use-substitutes? #f)
5955 (extra-options '("--gc-keep-outputs"))))
5956 (mingetty-service-type config =>
5957 (mingetty-configuration
5958 (inherit config)
5959 (motd (plain-file "motd" "Hi there!")))))
5960@end lisp
5961
5962@noindent
5963The effect here is to change the options passed to @command{guix-daemon}
5964when it is started, as well as the ``message of the day'' that appears
5965when logging in at the console. @xref{Service Reference,
5966@code{modify-services}}, for more on that.
a1ba8475 5967
dd51caac 5968The configuration for a typical ``desktop'' usage, with the X11 display
cd6f6c22 5969server, a desktop environment, network management, power management, and
dd51caac
LC
5970more, would look like this:
5971
5972@lisp
5973@include os-config-desktop.texi
5974@end lisp
5975
5976@xref{Desktop Services}, for the exact list of services provided by
efb5e833
LC
5977@var{%desktop-services}. @xref{X.509 Certificates}, for background
5978information about the @code{nss-certs} package that is used here.
dd51caac 5979
5d94ac51
LC
5980Again, @var{%desktop-services} is just a list of service objects. If
5981you want to remove services from there, you can do so using the
5982procedures for list filtering (@pxref{SRFI-1 Filtering and
5983Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the
5984following expression returns a list that contains all the services in
5985@var{%desktop-services} minus the Avahi service:
5986
5987@example
5988(remove (lambda (service)
5989 (eq? (service-kind service) avahi-service-type))
5990 %desktop-services)
5991@end example
5992
5993@unnumberedsubsubsec Instantiating the System
5994
5995Assuming the @code{operating-system} declaration
5996is stored in the @file{my-system-config.scm}
cf4a9129
LC
5997file, the @command{guix system reconfigure my-system-config.scm} command
5998instantiates that configuration, and makes it the default GRUB boot
65797bff
LC
5999entry (@pxref{Invoking guix system}).
6000
6001The normal way to change the system's configuration is by updating this
6002file and re-running @command{guix system reconfigure}. One should never
6003have to touch files in @command{/etc} or to run commands that modify the
6004system state such as @command{useradd} or @command{grub-install}. In
6005fact, you must avoid that since that would not only void your warranty
6006but also prevent you from rolling back to previous versions of your
6007system, should you ever need to.
6008
6009@cindex roll-back, of the operating system
6010Speaking of roll-back, each time you run @command{guix system
6011reconfigure}, a new @dfn{generation} of the system is created---without
6012modifying or deleting previous generations. Old system generations get
6013an entry in the GRUB boot menu, allowing you to boot them in case
6014something went wrong with the latest generation. Reassuring, no? The
6015@command{guix system list-generations} command lists the system
6016generations available on disk.
b81e1947 6017
5d94ac51
LC
6018@unnumberedsubsubsec The Programming Interface
6019
cf4a9129
LC
6020At the Scheme level, the bulk of an @code{operating-system} declaration
6021is instantiated with the following monadic procedure (@pxref{The Store
6022Monad}):
b81e1947 6023
cf4a9129
LC
6024@deffn {Monadic Procedure} operating-system-derivation os
6025Return a derivation that builds @var{os}, an @code{operating-system}
6026object (@pxref{Derivations}).
b81e1947 6027
cf4a9129
LC
6028The output of the derivation is a single directory that refers to all
6029the packages, configuration files, and other supporting files needed to
6030instantiate @var{os}.
6031@end deffn
b81e1947 6032
5d94ac51
LC
6033This procedure is provided by the @code{(gnu system)} module. Along
6034with @code{(gnu services)} (@pxref{Services}), this module contains the
6035guts of GuixSD. Make sure to visit it!
6036
6037
7313a52e
LC
6038@node operating-system Reference
6039@subsection @code{operating-system} Reference
6040
6041This section summarizes all the options available in
6042@code{operating-system} declarations (@pxref{Using the Configuration
6043System}).
6044
6045@deftp {Data Type} operating-system
6046This is the data type representing an operating system configuration.
6047By that, we mean all the global system configuration, not per-user
6048configuration (@pxref{Using the Configuration System}).
6049
6050@table @asis
6051@item @code{kernel} (default: @var{linux-libre})
fbb25e56 6052The package object of the operating system kernel to use@footnote{Currently
7313a52e
LC
6053only the Linux-libre kernel is supported. In the future, it will be
6054possible to use the GNU@tie{}Hurd.}.
6055
ee2a6304
LC
6056@item @code{kernel-arguments} (default: @code{'()})
6057List of strings or gexps representing additional arguments to pass on
6058the kernel's command-line---e.g., @code{("console=ttyS0")}.
6059
7313a52e 6060@item @code{bootloader}
88faf933 6061The system bootloader configuration object. @xref{GRUB Configuration}.
7313a52e
LC
6062
6063@item @code{initrd} (default: @code{base-initrd})
6064A two-argument monadic procedure that returns an initial RAM disk for
6065the Linux kernel. @xref{Initial RAM Disk}.
6066
f34c56be
LC
6067@item @code{firmware} (default: @var{%base-firmware})
6068@cindex firmware
6069List of firmware packages loadable by the operating system kernel.
6070
6071The default includes firmware needed for Atheros-based WiFi devices
6072(Linux-libre module @code{ath9k}.)
6073
7313a52e
LC
6074@item @code{host-name}
6075The host name.
6076
6077@item @code{hosts-file}
6078@cindex hosts file
24e02c28 6079A file-like object (@pxref{G-Expressions, file-like objects}) for use as
7313a52e 6080@file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library
24e02c28 6081Reference Manual}). The default is a file with entries for
7313a52e
LC
6082@code{localhost} and @var{host-name}.
6083
6084@item @code{mapped-devices} (default: @code{'()})
6085A list of mapped devices. @xref{Mapped Devices}.
6086
6087@item @code{file-systems}
6088A list of file systems. @xref{File Systems}.
6089
6090@item @code{swap-devices} (default: @code{'()})
6091@cindex swap devices
6092A list of strings identifying devices to be used for ``swap space''
6093(@pxref{Memory Concepts,,, libc, The GNU C Library Reference Manual}).
6094For example, @code{'("/dev/sda3")}.
6095
bf87f38a 6096@item @code{users} (default: @code{%base-user-accounts})
7313a52e
LC
6097@itemx @code{groups} (default: @var{%base-groups})
6098List of user accounts and groups. @xref{User Accounts}.
6099
6100@item @code{skeletons} (default: @code{(default-skeletons)})
6101A monadic list of pairs of target file name and files. These are the
6102files that will be used as skeletons as new accounts are created.
6103
6104For instance, a valid value may look like this:
6105
6106@example
6107(mlet %store-monad ((bashrc (text-file "bashrc" "\
6108 export PATH=$HOME/.guix-profile/bin")))
6109 (return `((".bashrc" ,bashrc))))
6110@end example
6111
6112@item @code{issue} (default: @var{%default-issue})
6113A string denoting the contents of the @file{/etc/issue} file, which is
6114what displayed when users log in on a text console.
6115
6116@item @code{packages} (default: @var{%base-packages})
6117The set of packages installed in the global profile, which is accessible
6118at @file{/run/current-system/profile}.
6119
6120The default set includes core utilities, but it is good practice to
6121install non-core utilities in user profiles (@pxref{Invoking guix
6122package}).
6123
6124@item @code{timezone}
6125A timezone identifying string---e.g., @code{"Europe/Paris"}.
6126
17c20385
LC
6127You can run the @command{tzselect} command to find out which timezone
6128string corresponds to your region. Choosing an invalid timezone name
6129causes @command{guix system} to fail.
6130
598e19dc
LC
6131@item @code{locale} (default: @code{"en_US.utf8"})
6132The name of the default locale (@pxref{Locale Names,,, libc, The GNU C
6133Library Reference Manual}). @xref{Locales}, for more information.
6134
6135@item @code{locale-definitions} (default: @var{%default-locale-definitions})
6136The list of locale definitions to be compiled and that may be used at
6137run time. @xref{Locales}.
7313a52e 6138
34760ae7
LC
6139@item @code{locale-libcs} (default: @code{(list @var{glibc})})
6140The list of GNU@tie{}libc packages whose locale data and tools are used
6141to build the locale definitions. @xref{Locales}, for compatibility
6142considerations that justify this option.
6143
996ed739
LC
6144@item @code{name-service-switch} (default: @var{%default-nss})
6145Configuration of libc's name service switch (NSS)---a
6146@code{<name-service-switch>} object. @xref{Name Service Switch}, for
6147details.
6148
7313a52e 6149@item @code{services} (default: @var{%base-services})
28d939af 6150A list of service objects denoting system services. @xref{Services}.
7313a52e
LC
6151
6152@item @code{pam-services} (default: @code{(base-pam-services)})
6153@cindex PAM
6154@cindex pluggable authentication modules
6155Linux @dfn{pluggable authentication module} (PAM) services.
6156@c FIXME: Add xref to PAM services section.
6157
6158@item @code{setuid-programs} (default: @var{%setuid-programs})
6159List of string-valued G-expressions denoting setuid programs.
6160@xref{Setuid Programs}.
6161
f5a9ffa0
AK
6162@item @code{sudoers-file} (default: @var{%sudoers-specification})
6163@cindex sudoers file
84765839
LC
6164The contents of the @file{/etc/sudoers} file as a file-like object
6165(@pxref{G-Expressions, @code{local-file} and @code{plain-file}}).
7313a52e
LC
6166
6167This file specifies which users can use the @command{sudo} command, what
6168they are allowed to do, and what privileges they may gain. The default
6169is that only @code{root} and members of the @code{wheel} group may use
6170@code{sudo}.
6171
6172@end table
6173@end deftp
6174
cf4a9129
LC
6175@node File Systems
6176@subsection File Systems
b81e1947 6177
cf4a9129
LC
6178The list of file systems to be mounted is specified in the
6179@code{file-systems} field of the operating system's declaration
6180(@pxref{Using the Configuration System}). Each file system is declared
6181using the @code{file-system} form, like this:
b81e1947
LC
6182
6183@example
cf4a9129
LC
6184(file-system
6185 (mount-point "/home")
6186 (device "/dev/sda3")
6187 (type "ext4"))
b81e1947
LC
6188@end example
6189
cf4a9129
LC
6190As usual, some of the fields are mandatory---those shown in the example
6191above---while others can be omitted. These are described below.
b81e1947 6192
cf4a9129
LC
6193@deftp {Data Type} file-system
6194Objects of this type represent file systems to be mounted. They
6195contain the following members:
5ff3c4b8 6196
cf4a9129
LC
6197@table @asis
6198@item @code{type}
6199This is a string specifying the type of the file system---e.g.,
6200@code{"ext4"}.
5ff3c4b8 6201
cf4a9129
LC
6202@item @code{mount-point}
6203This designates the place where the file system is to be mounted.
b81e1947 6204
cf4a9129
LC
6205@item @code{device}
6206This names the ``source'' of the file system. By default it is the name
6207of a node under @file{/dev}, but its meaning depends on the @code{title}
6208field described below.
401c53c4 6209
cf4a9129
LC
6210@item @code{title} (default: @code{'device})
6211This is a symbol that specifies how the @code{device} field is to be
6212interpreted.
401c53c4 6213
cf4a9129
LC
6214When it is the symbol @code{device}, then the @code{device} field is
6215interpreted as a file name; when it is @code{label}, then @code{device}
6216is interpreted as a partition label name; when it is @code{uuid},
6217@code{device} is interpreted as a partition unique identifier (UUID).
da7cabd4 6218
661a1d79
LC
6219UUIDs may be converted from their string representation (as shown by the
6220@command{tune2fs -l} command) using the @code{uuid} form, like this:
6221
6222@example
6223(file-system
6224 (mount-point "/home")
6225 (type "ext4")
6226 (title 'uuid)
6227 (device (uuid "4dab5feb-d176-45de-b287-9b0a6e4c01cb")))
6228@end example
6229
cf4a9129 6230The @code{label} and @code{uuid} options offer a way to refer to disk
661a1d79
LC
6231partitions without having to hard-code their actual device
6232name@footnote{Note that, while it is tempting to use
6233@file{/dev/disk/by-uuid} and similar device names to achieve the same
6234result, this is not recommended: These special device nodes are created
6235by the udev daemon and may be unavailable at the time the device is
6236mounted.}.
da7cabd4 6237
5f86a66e
LC
6238However, when a file system's source is a mapped device (@pxref{Mapped
6239Devices}), its @code{device} field @emph{must} refer to the mapped
6240device name---e.g., @file{/dev/mapper/root-partition}---and consequently
6241@code{title} must be set to @code{'device}. This is required so that
6242the system knows that mounting the file system depends on having the
6243corresponding device mapping established.
6244
cf4a9129
LC
6245@item @code{flags} (default: @code{'()})
6246This is a list of symbols denoting mount flags. Recognized flags
2c071ce9
LC
6247include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow
6248access to special files), @code{no-suid} (ignore setuid and setgid
6249bits), and @code{no-exec} (disallow program execution.)
da7cabd4 6250
cf4a9129
LC
6251@item @code{options} (default: @code{#f})
6252This is either @code{#f}, or a string denoting mount options.
da7cabd4 6253
be21979d
LC
6254@item @code{mount?} (default: @code{#t})
6255This value indicates whether to automatically mount the file system when
6256the system is brought up. When set to @code{#f}, the file system gets
6257an entry in @file{/etc/fstab} (read by the @command{mount} command) but
6258is not automatically mounted.
6259
cf4a9129
LC
6260@item @code{needed-for-boot?} (default: @code{#f})
6261This Boolean value indicates whether the file system is needed when
6262booting. If that is true, then the file system is mounted when the
6263initial RAM disk (initrd) is loaded. This is always the case, for
6264instance, for the root file system.
da7cabd4 6265
cf4a9129
LC
6266@item @code{check?} (default: @code{#t})
6267This Boolean indicates whether the file system needs to be checked for
6268errors before being mounted.
f9cc8971 6269
4e469051
LC
6270@item @code{create-mount-point?} (default: @code{#f})
6271When true, the mount point is created if it does not exist yet.
6272
e51710d1
LC
6273@item @code{dependencies} (default: @code{'()})
6274This is a list of @code{<file-system>} objects representing file systems
6275that must be mounted before (and unmounted after) this one.
6276
6277As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is
6278a dependency of @file{/sys/fs/cgroup/cpu} and
6279@file{/sys/fs/cgroup/memory}.
6280
cf4a9129
LC
6281@end table
6282@end deftp
da7cabd4 6283
a69576ea
LC
6284The @code{(gnu system file-systems)} exports the following useful
6285variables.
6286
6287@defvr {Scheme Variable} %base-file-systems
6288These are essential file systems that are required on normal systems,
cc0e575a 6289such as @var{%pseudo-terminal-file-system} and @var{%immutable-store} (see
3392ce5d
LC
6290below.) Operating system declarations should always contain at least
6291these.
a69576ea
LC
6292@end defvr
6293
7f239fd3
LC
6294@defvr {Scheme Variable} %pseudo-terminal-file-system
6295This is the file system to be mounted as @file{/dev/pts}. It supports
6296@dfn{pseudo-terminals} created @i{via} @code{openpty} and similar
6297functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference
6298Manual}). Pseudo-terminals are used by terminal emulators such as
6299@command{xterm}.
6300@end defvr
6301
db17ae5c
LC
6302@defvr {Scheme Variable} %shared-memory-file-system
6303This file system is mounted as @file{/dev/shm} and is used to support
6304memory sharing across processes (@pxref{Memory-mapped I/O,
6305@code{shm_open},, libc, The GNU C Library Reference Manual}).
6306@end defvr
6307
3392ce5d
LC
6308@defvr {Scheme Variable} %immutable-store
6309This file system performs a read-only ``bind mount'' of
6310@file{/gnu/store}, making it read-only for all the users including
6311@code{root}. This prevents against accidental modification by software
6312running as @code{root} or by system administrators.
6313
6314The daemon itself is still able to write to the store: it remounts it
6315read-write in its own ``name space.''
6316@end defvr
6317
a69576ea
LC
6318@defvr {Scheme Variable} %binary-format-file-system
6319The @code{binfmt_misc} file system, which allows handling of arbitrary
6320executable file types to be delegated to user space. This requires the
6321@code{binfmt.ko} kernel module to be loaded.
6322@end defvr
6323
6324@defvr {Scheme Variable} %fuse-control-file-system
6325The @code{fusectl} file system, which allows unprivileged users to mount
6326and unmount user-space FUSE file systems. This requires the
6327@code{fuse.ko} kernel module to be loaded.
6328@end defvr
6329
510f9d86
LC
6330@node Mapped Devices
6331@subsection Mapped Devices
6332
6333@cindex device mapping
6334@cindex mapped devices
6335The Linux kernel has a notion of @dfn{device mapping}: a block device,
6336such as a hard disk partition, can be @dfn{mapped} into another device,
6337with additional processing over the data that flows through
6338it@footnote{Note that the GNU@tie{}Hurd makes no difference between the
6339concept of a ``mapped device'' and that of a file system: both boil down
6340to @emph{translating} input/output operations made on a file to
6341operations on its backing store. Thus, the Hurd implements mapped
6342devices, like file systems, using the generic @dfn{translator} mechanism
6343(@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A
6344typical example is encryption device mapping: all writes to the mapped
6345device are encrypted, and all reads are deciphered, transparently.
6346
6347Mapped devices are declared using the @code{mapped-device} form:
6348
6349@example
6350(mapped-device
6351 (source "/dev/sda3")
6352 (target "home")
6353 (type luks-device-mapping))
6354@end example
6355
6356@noindent
6357@cindex disk encryption
6358@cindex LUKS
6359This example specifies a mapping from @file{/dev/sda3} to
6360@file{/dev/mapper/home} using LUKS---the
6361@url{http://code.google.com/p/cryptsetup,Linux Unified Key Setup}, a
6362standard mechanism for disk encryption. The @file{/dev/mapper/home}
6363device can then be used as the @code{device} of a @code{file-system}
6364declaration (@pxref{File Systems}). The @code{mapped-device} form is
6365detailed below.
6366
6367@deftp {Data Type} mapped-device
6368Objects of this type represent device mappings that will be made when
6369the system boots up.
6370
9cb426b8
LC
6371@table @code
6372@item source
510f9d86
LC
6373This string specifies the name of the block device to be mapped, such as
6374@code{"/dev/sda3"}.
6375
9cb426b8 6376@item target
510f9d86
LC
6377This string specifies the name of the mapping to be established. For
6378example, specifying @code{"my-partition"} will lead to the creation of
6379the @code{"/dev/mapper/my-partition"} device.
6380
9cb426b8 6381@item type
510f9d86
LC
6382This must be a @code{mapped-device-kind} object, which specifies how
6383@var{source} is mapped to @var{target}.
6384@end table
6385@end deftp
6386
6387@defvr {Scheme Variable} luks-device-mapping
6388This defines LUKS block device encryption using the @command{cryptsetup}
6389command, from the same-named package. This relies on the
6390@code{dm-crypt} Linux kernel module.
6391@end defvr
6392
cf4a9129
LC
6393@node User Accounts
6394@subsection User Accounts
ee85f3db 6395
9bea87a5
LC
6396User accounts and groups are entirely managed through the
6397@code{operating-system} declaration. They are specified with the
6398@code{user-account} and @code{user-group} forms:
ee85f3db 6399
cf4a9129
LC
6400@example
6401(user-account
6402 (name "alice")
6403 (group "users")
24e752c0
LC
6404 (supplementary-groups '("wheel" ;allow use of sudo, etc.
6405 "audio" ;sound card
6406 "video" ;video devices such as webcams
6407 "cdrom")) ;the good ol' CD-ROM
cf4a9129
LC
6408 (comment "Bob's sister")
6409 (home-directory "/home/alice"))
6410@end example
25083588 6411
9bea87a5
LC
6412When booting or upon completion of @command{guix system reconfigure},
6413the system ensures that only the user accounts and groups specified in
6414the @code{operating-system} declaration exist, and with the specified
6415properties. Thus, account or group creations or modifications made by
6416directly invoking commands such as @command{useradd} are lost upon
6417reconfiguration or reboot. This ensures that the system remains exactly
6418as declared.
6419
cf4a9129
LC
6420@deftp {Data Type} user-account
6421Objects of this type represent user accounts. The following members may
6422be specified:
ee85f3db 6423
cf4a9129
LC
6424@table @asis
6425@item @code{name}
6426The name of the user account.
ee85f3db 6427
cf4a9129
LC
6428@item @code{group}
6429This is the name (a string) or identifier (a number) of the user group
6430this account belongs to.
ee85f3db 6431
cf4a9129
LC
6432@item @code{supplementary-groups} (default: @code{'()})
6433Optionally, this can be defined as a list of group names that this
6434account belongs to.
ee85f3db 6435
cf4a9129
LC
6436@item @code{uid} (default: @code{#f})
6437This is the user ID for this account (a number), or @code{#f}. In the
6438latter case, a number is automatically chosen by the system when the
6439account is created.
ee85f3db 6440
cf4a9129
LC
6441@item @code{comment} (default: @code{""})
6442A comment about the account, such as the account's owner full name.
c8c871d1 6443
cf4a9129
LC
6444@item @code{home-directory}
6445This is the name of the home directory for the account.
ee85f3db 6446
cf4a9129
LC
6447@item @code{shell} (default: Bash)
6448This is a G-expression denoting the file name of a program to be used as
6449the shell (@pxref{G-Expressions}).
ee85f3db 6450
cf4a9129
LC
6451@item @code{system?} (default: @code{#f})
6452This Boolean value indicates whether the account is a ``system''
6453account. System accounts are sometimes treated specially; for instance,
6454graphical login managers do not list them.
ee85f3db 6455
1bd4e6db 6456@anchor{user-account-password}
cf4a9129 6457@item @code{password} (default: @code{#f})
eb59595c
LC
6458You would normally leave this field to @code{#f}, initialize user
6459passwords as @code{root} with the @command{passwd} command, and then let
9bea87a5
LC
6460users change it with @command{passwd}. Passwords set with
6461@command{passwd} are of course preserved across reboot and
6462reconfiguration.
eb59595c
LC
6463
6464If you @emph{do} want to have a preset password for an account, then
6465this field must contain the encrypted password, as a string.
5d1f1177
LC
6466@xref{crypt,,, libc, The GNU C Library Reference Manual}, for more information
6467on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference
eb59595c 6468Manual}, for information on Guile's @code{crypt} procedure.
c8c871d1 6469
cf4a9129
LC
6470@end table
6471@end deftp
ee85f3db 6472
cf4a9129 6473User group declarations are even simpler:
ee85f3db 6474
cf4a9129
LC
6475@example
6476(user-group (name "students"))
6477@end example
ee85f3db 6478
cf4a9129
LC
6479@deftp {Data Type} user-group
6480This type is for, well, user groups. There are just a few fields:
af8a56b8 6481
cf4a9129
LC
6482@table @asis
6483@item @code{name}
6484The group's name.
ee85f3db 6485
cf4a9129
LC
6486@item @code{id} (default: @code{#f})
6487The group identifier (a number). If @code{#f}, a new number is
6488automatically allocated when the group is created.
ee85f3db 6489
c8fa3426
LC
6490@item @code{system?} (default: @code{#f})
6491This Boolean value indicates whether the group is a ``system'' group.
6492System groups have low numerical IDs.
6493
cf4a9129
LC
6494@item @code{password} (default: @code{#f})
6495What, user groups can have a password? Well, apparently yes. Unless
6496@code{#f}, this field specifies the group's password.
ee85f3db 6497
cf4a9129
LC
6498@end table
6499@end deftp
401c53c4 6500
cf4a9129
LC
6501For convenience, a variable lists all the basic user groups one may
6502expect:
401c53c4 6503
cf4a9129
LC
6504@defvr {Scheme Variable} %base-groups
6505This is the list of basic user groups that users and/or packages expect
6506to be present on the system. This includes groups such as ``root'',
6507``wheel'', and ``users'', as well as groups used to control access to
6508specific devices such as ``audio'', ``disk'', and ``cdrom''.
6509@end defvr
401c53c4 6510
bf87f38a
LC
6511@defvr {Scheme Variable} %base-user-accounts
6512This is the list of basic system accounts that programs may expect to
6513find on a GNU/Linux system, such as the ``nobody'' account.
6514
6515Note that the ``root'' account is not included here. It is a
6516special-case and is automatically added whether or not it is specified.
6517@end defvr
6518
598e19dc
LC
6519@node Locales
6520@subsection Locales
6521
6522@cindex locale
6523A @dfn{locale} defines cultural conventions for a particular language
6524and region of the world (@pxref{Locales,,, libc, The GNU C Library
6525Reference Manual}). Each locale has a name that typically has the form
b2636518 6526@code{@var{language}_@var{territory}.@var{codeset}}---e.g.,
598e19dc
LC
6527@code{fr_LU.utf8} designates the locale for the French language, with
6528cultural conventions from Luxembourg, and using the UTF-8 encoding.
6529
6530@cindex locale definition
6531Usually, you will want to specify the default locale for the machine
6532using the @code{locale} field of the @code{operating-system} declaration
6533(@pxref{operating-system Reference, @code{locale}}).
6534
f5582b2c
LC
6535The selected locale is automatically added to the @dfn{locale
6536definitions} known to the system if needed, with its codeset inferred
6537from its name---e.g., @code{bo_CN.utf8} will be assumed to use the
6538@code{UTF-8} codeset. Additional locale definitions can be specified in
6539the @code{locale-definitions} slot of @code{operating-system}---this is
6540useful, for instance, if the codeset could not be inferred from the
6541locale name. The default set of locale definitions includes some widely
6542used locales, but not all the available locales, in order to save space.
6543
6544For instance, to add the North Frisian locale for Germany, the value of
6545that field may be:
598e19dc
LC
6546
6547@example
6548(cons (locale-definition
6549 (name "fy_DE.utf8") (source "fy_DE"))
6550 %default-locale-definitions)
6551@end example
6552
6553Likewise, to save space, one might want @code{locale-definitions} to
6554list only the locales that are actually used, as in:
6555
6556@example
6557(list (locale-definition
6558 (name "ja_JP.eucjp") (source "ja_JP")
6559 (charset "EUC-JP")))
6560@end example
6561
5c3c1427
LC
6562@vindex LOCPATH
6563The compiled locale definitions are available at
46bd6edd
LC
6564@file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc
6565version, which is the default location where the GNU@tie{}libc provided
6566by Guix looks for locale data. This can be overridden using the
6567@code{LOCPATH} environment variable (@pxref{locales-and-locpath,
5c3c1427
LC
6568@code{LOCPATH} and locale packages}).
6569
598e19dc
LC
6570The @code{locale-definition} form is provided by the @code{(gnu system
6571locale)} module. Details are given below.
6572
6573@deftp {Data Type} locale-definition
6574This is the data type of a locale definition.
6575
6576@table @asis
6577
6578@item @code{name}
6579The name of the locale. @xref{Locale Names,,, libc, The GNU C Library
6580Reference Manual}, for more information on locale names.
6581
6582@item @code{source}
6583The name of the source for that locale. This is typically the
6584@code{@var{language}_@var{territory}} part of the locale name.
6585
6586@item @code{charset} (default: @code{"UTF-8"})
6587The ``character set'' or ``code set'' for that locale,
6588@uref{http://www.iana.org/assignments/character-sets, as defined by
6589IANA}.
6590
6591@end table
6592@end deftp
6593
6594@defvr {Scheme Variable} %default-locale-definitions
b2636518
LC
6595An arbitrary list of commonly used UTF-8 locales, used as the default
6596value of the @code{locale-definitions} field of @code{operating-system}
598e19dc 6597declarations.
b2636518
LC
6598
6599@cindex locale name
6600@cindex normalized codeset in locale names
6601These locale definitions use the @dfn{normalized codeset} for the part
6602that follows the dot in the name (@pxref{Using gettextized software,
6603normalized codeset,, libc, The GNU C Library Reference Manual}). So for
6604instance it has @code{uk_UA.utf8} but @emph{not}, say,
6605@code{uk_UA.UTF-8}.
598e19dc 6606@end defvr
401c53c4 6607
34760ae7
LC
6608@subsubsection Locale Data Compatibility Considerations
6609
6610@cindex incompatibility, of locale data
6611@code{operating-system} declarations provide a @code{locale-libcs} field
6612to specify the GNU@tie{}libc packages that are used to compile locale
6613declarations (@pxref{operating-system Reference}). ``Why would I
6614care?'', you may ask. Well, it turns out that the binary format of
6615locale data is occasionally incompatible from one libc version to
6616another.
6617
6618@c See <https://sourceware.org/ml/libc-alpha/2015-09/msg00575.html>
6619@c and <https://lists.gnu.org/archive/html/guix-devel/2015-08/msg00737.html>.
6620For instance, a program linked against libc version 2.21 is unable to
6621read locale data produced with libc 2.22; worse, that program
6622@emph{aborts} instead of simply ignoring the incompatible locale
6623data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip
6624the incompatible locale data, which is already an improvement.}.
6625Similarly, a program linked against libc 2.22 can read most, but not
6626all, the locale data from libc 2.21 (specifically, @code{LC_COLLATE}
6627data is incompatible); thus calls to @code{setlocale} may fail, but
6628programs will not abort.
6629
6630The ``problem'' in GuixSD is that users have a lot of freedom: They can
6631choose whether and when to upgrade software in their profiles, and might
6632be using a libc version different from the one the system administrator
6633used to build the system-wide locale data.
6634
6635Fortunately, unprivileged users can also install their own locale data
6636and define @var{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath,
6637@code{GUIX_LOCPATH} and locale packages}).
6638
6639Still, it is best if the system-wide locale data at
6640@file{/run/current-system/locale} is built for all the libc versions
6641actually in use on the system, so that all the programs can access
6642it---this is especially crucial on a multi-user system. To do that, the
6643administrator can specify several libc packages in the
6644@code{locale-libcs} field of @code{operating-system}:
6645
6646@example
6647(use-package-modules base)
6648
6649(operating-system
6650 ;; @dots{}
6651 (locale-libcs (list glibc-2.21 (canonical-package glibc))))
6652@end example
6653
6654This example would lead to a system containing locale definitions for
6655both libc 2.21 and the current version of libc in
6656@file{/run/current-system/locale}.
6657
6658
cf4a9129
LC
6659@node Services
6660@subsection Services
401c53c4 6661
cf4a9129
LC
6662@cindex system services
6663An important part of preparing an @code{operating-system} declaration is
6664listing @dfn{system services} and their configuration (@pxref{Using the
6665Configuration System}). System services are typically daemons launched
6666when the system boots, or other actions needed at that time---e.g.,
d8b94dbd
LC
6667configuring network access.
6668
dd17bc38
AK
6669Services are managed by the GNU@tie{}Shepherd (@pxref{Introduction,,,
6670shepherd, The GNU Shepherd Manual}). On a running system, the
6671@command{herd} command allows you to list the available services, show
6672their status, start and stop them, or do other specific operations
6673(@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:
d8b94dbd
LC
6674
6675@example
dd17bc38 6676# herd status
d8b94dbd
LC
6677@end example
6678
6679The above command, run as @code{root}, lists the currently defined
dd17bc38 6680services. The @command{herd doc} command shows a synopsis of the given
d8b94dbd
LC
6681service:
6682
6683@example
dd17bc38 6684# herd doc nscd
d8b94dbd
LC
6685Run libc's name service cache daemon (nscd).
6686@end example
6687
6688The @command{start}, @command{stop}, and @command{restart} sub-commands
6689have the effect you would expect. For instance, the commands below stop
6690the nscd service and restart the Xorg display server:
6691
6692@example
dd17bc38 6693# herd stop nscd
d8b94dbd 6694Service nscd has been stopped.
dd17bc38 6695# herd restart xorg-server
d8b94dbd
LC
6696Service xorg-server has been stopped.
6697Service xorg-server has been started.
6698@end example
401c53c4 6699
cf4a9129 6700The following sections document the available services, starting with
d8b94dbd
LC
6701the core services, that may be used in an @code{operating-system}
6702declaration.
401c53c4 6703
cf4a9129
LC
6704@menu
6705* Base Services:: Essential system services.
6706* Networking Services:: Network setup, SSH daemon, etc.
6707* X Window:: Graphical display.
fe1a39d3 6708* Desktop Services:: D-Bus and desktop services.
105369a4 6709* Database Services:: SQL databases.
d8c18af8 6710* Mail Services:: IMAP, POP3, SMTP, and all that.
58724c48 6711* Web Services:: Web servers.
aa4ed923 6712* Various Services:: Other services.
cf4a9129 6713@end menu
401c53c4 6714
cf4a9129
LC
6715@node Base Services
6716@subsubsection Base Services
a1ba8475 6717
cf4a9129
LC
6718The @code{(gnu services base)} module provides definitions for the basic
6719services that one expects from the system. The services exported by
6720this module are listed below.
401c53c4 6721
cf4a9129 6722@defvr {Scheme Variable} %base-services
31771497
LC
6723This variable contains a list of basic services (@pxref{Service Types
6724and Services}, for more information on service objects) one would
cf4a9129
LC
6725expect from the system: a login service (mingetty) on each tty, syslogd,
6726libc's name service cache daemon (nscd), the udev device manager, and
6727more.
401c53c4 6728
cf4a9129
LC
6729This is the default value of the @code{services} field of
6730@code{operating-system} declarations. Usually, when customizing a
6731system, you will want to append services to @var{%base-services}, like
6732this:
401c53c4 6733
cf4a9129 6734@example
fa1e31b8 6735(cons* (avahi-service) (lsh-service) %base-services)
cf4a9129
LC
6736@end example
6737@end defvr
401c53c4 6738
be1c2c54 6739@deffn {Scheme Procedure} host-name-service @var{name}
cf4a9129
LC
6740Return a service that sets the host name to @var{name}.
6741@end deffn
401c53c4 6742
66e4f01c
LC
6743@deffn {Scheme Procedure} mingetty-service @var{config}
6744Return a service to run mingetty according to @var{config}, a
6745@code{<mingetty-configuration>} object, which specifies the tty to run, among
6746other things.
cf4a9129 6747@end deffn
401c53c4 6748
66e4f01c
LC
6749@deftp {Data Type} mingetty-configuration
6750This is the data type representing the configuration of Mingetty, which
6751implements console log-in.
6752
6753@table @asis
6754
6755@item @code{tty}
6756The name of the console this Mingetty runs on---e.g., @code{"tty1"}.
6757
6758@item @code{motd}
6759A file-like object containing the ``message of the day''.
6760
6761@item @code{auto-login} (default: @code{#f})
6762When true, this field must be a string denoting the user name under
f9b9a033 6763which the system automatically logs in. When it is @code{#f}, a
66e4f01c
LC
6764user name and password must be entered to log in.
6765
6766@item @code{login-program} (default: @code{#f})
6767This must be either @code{#f}, in which case the default log-in program
6768is used (@command{login} from the Shadow tool suite), or a gexp denoting
6769the name of the log-in program.
6770
6771@item @code{login-pause?} (default: @code{#f})
6772When set to @code{#t} in conjunction with @var{auto-login}, the user
6773will have to press a key before the log-in shell is launched.
6774
6775@item @code{mingetty} (default: @var{mingetty})
6776The Mingetty package to use.
6777
6778@end table
6779@end deftp
6780
6454b333
LC
6781@cindex name service cache daemon
6782@cindex nscd
be1c2c54 6783@deffn {Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @
4aee6e60 6784 [#:name-services '()]
b893f1ae
LC
6785Return a service that runs libc's name service cache daemon (nscd) with the
6786given @var{config}---an @code{<nscd-configuration>} object. @xref{Name
6787Service Switch}, for an example.
cf4a9129 6788@end deffn
401c53c4 6789
6454b333
LC
6790@defvr {Scheme Variable} %nscd-default-configuration
6791This is the default @code{<nscd-configuration>} value (see below) used
6792by @code{nscd-service}. This uses the caches defined by
6793@var{%nscd-default-caches}; see below.
6794@end defvr
6795
6796@deftp {Data Type} nscd-configuration
6797This is the type representing the name service cache daemon (nscd)
6798configuration.
6799
6800@table @asis
6801
b893f1ae
LC
6802@item @code{name-services} (default: @code{'()})
6803List of packages denoting @dfn{name services} that must be visible to
6804the nscd---e.g., @code{(list @var{nss-mdns})}.
6805
6806@item @code{glibc} (default: @var{glibc})
6807Package object denoting the GNU C Library providing the @command{nscd}
6808command.
6809
6454b333
LC
6810@item @code{log-file} (default: @code{"/var/log/nscd.log"})
6811Name of nscd's log file. This is where debugging output goes when
6812@code{debug-level} is strictly positive.
6813
6814@item @code{debug-level} (default: @code{0})
6815Integer denoting the debugging levels. Higher numbers mean more
6816debugging output is logged.
6817
6818@item @code{caches} (default: @var{%nscd-default-caches})
6819List of @code{<nscd-cache>} objects denoting things to be cached; see
6820below.
6821
6822@end table
6823@end deftp
6824
6825@deftp {Data Type} nscd-cache
6826Data type representing a cache database of nscd and its parameters.
6827
6828@table @asis
6829
6830@item @code{database}
6831This is a symbol representing the name of the database to be cached.
6832Valid values are @code{passwd}, @code{group}, @code{hosts}, and
6833@code{services}, which designate the corresponding NSS database
6834(@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual}).
6835
6836@item @code{positive-time-to-live}
6837@itemx @code{negative-time-to-live} (default: @code{20})
6838A number representing the number of seconds during which a positive or
6839negative lookup result remains in cache.
6840
6841@item @code{check-files?} (default: @code{#t})
6842Whether to check for updates of the files corresponding to
6843@var{database}.
6844
6845For instance, when @var{database} is @code{hosts}, setting this flag
6846instructs nscd to check for updates in @file{/etc/hosts} and to take
6847them into account.
6848
6849@item @code{persistent?} (default: @code{#t})
6850Whether the cache should be stored persistently on disk.
6851
6852@item @code{shared?} (default: @code{#t})
6853Whether the cache should be shared among users.
6854
6855@item @code{max-database-size} (default: 32@tie{}MiB)
6856Maximum size in bytes of the database cache.
6857
6858@c XXX: 'suggested-size' and 'auto-propagate?' seem to be expert
6859@c settings, so leave them out.
6860
6861@end table
6862@end deftp
6863
6864@defvr {Scheme Variable} %nscd-default-caches
6865List of @code{<nscd-cache>} objects used by default by
6866@code{nscd-configuration} (see above.)
6867
6868It enables persistent and aggressive caching of service and host name
6869lookups. The latter provides better host name lookup performance,
6870resilience in the face of unreliable name servers, and also better
6871privacy---often the result of host name lookups is in local cache, so
6872external name servers do not even need to be queried.
6873@end defvr
6874
6875
be1c2c54 6876@deffn {Scheme Procedure} syslog-service [#:config-file #f]
1bb76f75
AK
6877Return a service that runs @code{syslogd}. If configuration file name
6878@var{config-file} is not specified, use some reasonable default
cf4a9129
LC
6879settings.
6880@end deffn
401c53c4 6881
0adfe95a
LC
6882@anchor{guix-configuration-type}
6883@deftp {Data Type} guix-configuration
6884This data type represents the configuration of the Guix build daemon.
6885@xref{Invoking guix-daemon}, for more information.
6886
6887@table @asis
6888@item @code{guix} (default: @var{guix})
6889The Guix package to use.
401c53c4 6890
0adfe95a
LC
6891@item @code{build-group} (default: @code{"guixbuild"})
6892Name of the group for build user accounts.
401c53c4 6893
0adfe95a
LC
6894@item @code{build-accounts} (default: @code{10})
6895Number of build user accounts to create.
401c53c4 6896
0adfe95a
LC
6897@item @code{authorize-key?} (default: @code{#t})
6898Whether to authorize the substitute key for @code{hydra.gnu.org}
6899(@pxref{Substitutes}).
6900
6901@item @code{use-substitutes?} (default: @code{#t})
6902Whether to use substitutes.
6903
b0b9f6e0
LC
6904@item @code{substitute-urls} (default: @var{%default-substitute-urls})
6905The list of URLs where to look for substitutes by default.
6906
0adfe95a
LC
6907@item @code{extra-options} (default: @code{'()})
6908List of extra command-line options for @command{guix-daemon}.
6909
6910@item @code{lsof} (default: @var{lsof})
6911@itemx @code{lsh} (default: @var{lsh})
6912The lsof and lsh packages to use.
6913
6914@end table
6915@end deftp
6916
6917@deffn {Scheme Procedure} guix-service @var{config}
6918Return a service that runs the Guix build daemon according to
6919@var{config}.
cf4a9129 6920@end deffn
a1ba8475 6921
be1c2c54 6922@deffn {Scheme Procedure} udev-service [#:udev udev]
cf4a9129
LC
6923Run @var{udev}, which populates the @file{/dev} directory dynamically.
6924@end deffn
401c53c4 6925
be1c2c54 6926@deffn {Scheme Procedure} console-keymap-service @var{file}
dedb8d5e 6927@cindex keyboard layout
5eca9459
AK
6928Return a service to load console keymap from @var{file} using
6929@command{loadkeys} command.
6930@end deffn
6931
8664cc88
LC
6932@deffn {Scheme Procedure} gpm-service-type [#:gpm @var{gpm}] @
6933 [#:options]
6934Run @var{gpm}, the general-purpose mouse daemon, with the given
6935command-line @var{options}. GPM allows users to use the mouse in the console,
6936notably to select, copy, and paste text. The default value of @var{options}
6937uses the @code{ps2} protocol, which works for both USB and PS/2 mice.
6938
6939This service is not part of @var{%base-services}.
6940@end deffn
6941
1c52181f
LC
6942@anchor{guix-publish-service}
6943@deffn {Scheme Procedure} guix-publish-service [#:guix @var{guix}] @
6944 [#:port 80] [#:host "localhost"]
6945Return a service that runs @command{guix publish} listening on @var{host}
6946and @var{port} (@pxref{Invoking guix publish}).
6947
6948This assumes that @file{/etc/guix} already contains a signing key pair as
6949created by @command{guix archive --generate-key} (@pxref{Invoking guix
6950archive}). If that is not the case, the service will fail to start.
6951@end deffn
6952
a69576ea 6953
cf4a9129
LC
6954@node Networking Services
6955@subsubsection Networking Services
401c53c4 6956
fa1e31b8 6957The @code{(gnu services networking)} module provides services to configure
cf4a9129 6958the network interface.
a1ba8475 6959
a023cca8 6960@cindex DHCP, networking service
be1c2c54 6961@deffn {Scheme Procedure} dhcp-client-service [#:dhcp @var{isc-dhcp}]
a023cca8
LC
6962Return a service that runs @var{dhcp}, a Dynamic Host Configuration
6963Protocol (DHCP) client, on all the non-loopback network interfaces.
6964@end deffn
6965
be1c2c54 6966@deffn {Scheme Procedure} static-networking-service @var{interface} @var{ip} @
cf4a9129
LC
6967 [#:gateway #f] [#:name-services @code{'()}]
6968Return a service that starts @var{interface} with address @var{ip}. If
6969@var{gateway} is true, it must be a string specifying the default network
6970gateway.
6971@end deffn
8b315a6d 6972
b7d0c494 6973@cindex wicd
87f40011 6974@cindex network management
be1c2c54 6975@deffn {Scheme Procedure} wicd-service [#:wicd @var{wicd}]
87f40011
LC
6976Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network
6977management daemon that aims to simplify wired and wireless networking.
6978
6979This service adds the @var{wicd} package to the global profile, providing
6980several commands to interact with the daemon and configure networking:
6981@command{wicd-client}, a graphical user interface, and the @command{wicd-cli}
6982and @command{wicd-curses} user interfaces.
b7d0c494
MW
6983@end deffn
6984
c0a9589d
SB
6985@cindex NetworkManager
6986@deffn {Scheme Procedure} network-manager-service @
6987 [#:network-manager @var{network-manager}]
6988Return a service that runs NetworkManager, a network connection manager
6989that attempting to keep active network connectivity when available.
6990@end deffn
6991
be1c2c54 6992@deffn {Scheme Procedure} ntp-service [#:ntp @var{ntp}] @
63854bcb
LC
6993 [#:name-service @var{%ntp-servers}]
6994Return a service that runs the daemon from @var{ntp}, the
6995@uref{http://www.ntp.org, Network Time Protocol package}. The daemon will
6996keep the system clock synchronized with that of @var{servers}.
6997@end deffn
6998
6999@defvr {Scheme Variable} %ntp-servers
7000List of host names used as the default NTP servers.
7001@end defvr
7002
375c6108
LC
7003@deffn {Scheme Procedure} tor-service [@var{config-file}] [#:tor @var{tor}]
7004Return a service to run the @uref{https://torproject.org, Tor} anonymous
7005networking daemon.
8b315a6d 7006
375c6108 7007The daemon runs as the @code{tor} unprivileged user. It is passed
6331bde7
LC
7008@var{config-file}, a file-like object, with an additional @code{User tor} line
7009and lines for hidden services added via @code{tor-hidden-service}. Run
7010@command{man tor} for information about the configuration file.
7011@end deffn
7012
24a8ef3b 7013@cindex hidden service
6331bde7
LC
7014@deffn {Scheme Procedure} tor-hidden-service @var{name} @var{mapping}
7015Define a new Tor @dfn{hidden service} called @var{name} and implementing
7016@var{mapping}. @var{mapping} is a list of port/host tuples, such as:
7017
7018@example
24a8ef3b
LC
7019 '((22 "127.0.0.1:22")
7020 (80 "127.0.0.1:8080"))
6331bde7
LC
7021@end example
7022
7023In this example, port 22 of the hidden service is mapped to local port 22, and
7024port 80 is mapped to local port 8080.
7025
6629099a
LC
7026This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where
7027the @file{hostname} file contains the @code{.onion} host name for the hidden
6331bde7
LC
7028service.
7029
7030See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor
7031project's documentation} for more information.
cf4a9129 7032@end deffn
8b315a6d 7033
be1c2c54 7034@deffn {Scheme Procedure} bitlbee-service [#:bitlbee bitlbee] @
4627a464
LC
7035 [#:interface "127.0.0.1"] [#:port 6667] @
7036 [#:extra-settings ""]
7037Return a service that runs @url{http://bitlbee.org,BitlBee}, a daemon that
7038acts as a gateway between IRC and chat networks.
7039
7040The daemon will listen to the interface corresponding to the IP address
7041specified in @var{interface}, on @var{port}. @code{127.0.0.1} means that only
7042local clients can connect, whereas @code{0.0.0.0} means that connections can
7043come from any networking interface.
7044
7045In addition, @var{extra-settings} specifies a string to append to the
7046configuration file.
7047@end deffn
7048
f4391bec 7049Furthermore, @code{(gnu services ssh)} provides the following service.
8b315a6d 7050
be1c2c54 7051@deffn {Scheme Procedure} lsh-service [#:host-key "/etc/lsh/host-key"] @
5833bf33 7052 [#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @
cf4a9129
LC
7053 [#:allow-empty-passwords? #f] [#:root-login? #f] @
7054 [#:syslog-output? #t] [#:x11-forwarding? #t] @
7055 [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @
21cc905a 7056 [#:public-key-authentication? #t] [#:initialize? #t]
cf4a9129
LC
7057Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}.
7058@var{host-key} must designate a file containing the host key, and readable
7059only by root.
72e25e35 7060
5833bf33
DP
7061When @var{daemonic?} is true, @command{lshd} will detach from the
7062controlling terminal and log its output to syslogd, unless one sets
7063@var{syslog-output?} to false. Obviously, it also makes lsh-service
7064depend on existence of syslogd service. When @var{pid-file?} is true,
7065@command{lshd} writes its PID to the file called @var{pid-file}.
7066
cf4a9129
LC
7067When @var{initialize?} is true, automatically create the seed and host key
7068upon service activation if they do not exist yet. This may take long and
7069require interaction.
8b315a6d 7070
20dd519c
LC
7071When @var{initialize?} is false, it is up to the user to initialize the
7072randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create
7073a key pair with the private key stored in file @var{host-key} (@pxref{lshd
7074basics,,, lsh, LSH Manual}).
7075
cf4a9129
LC
7076When @var{interfaces} is empty, lshd listens for connections on all the
7077network interfaces; otherwise, @var{interfaces} must be a list of host names
7078or addresses.
9bf3c1a7 7079
20dd519c
LC
7080@var{allow-empty-passwords?} specifies whether to accept log-ins with empty
7081passwords, and @var{root-login?} specifies whether to accept log-ins as
cf4a9129 7082root.
4af2447e 7083
cf4a9129
LC
7084The other options should be self-descriptive.
7085@end deffn
4af2447e 7086
fa0c1d61
LC
7087@defvr {Scheme Variable} %facebook-host-aliases
7088This variable contains a string for use in @file{/etc/hosts}
7089(@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each
7090line contains a entry that maps a known server name of the Facebook
7091on-line service---e.g., @code{www.facebook.com}---to the local
7092host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}.
7093
7094This variable is typically used in the @code{hosts-file} field of an
7313a52e
LC
7095@code{operating-system} declaration (@pxref{operating-system Reference,
7096@file{/etc/hosts}}):
fa0c1d61
LC
7097
7098@example
7099(use-modules (gnu) (guix))
7100
7101(operating-system
7102 (host-name "mymachine")
7103 ;; ...
7104 (hosts-file
7105 ;; Create a /etc/hosts file with aliases for "localhost"
7106 ;; and "mymachine", as well as for Facebook servers.
24e02c28
LC
7107 (plain-file "hosts"
7108 (string-append (local-host-aliases host-name)
7109 %facebook-host-aliases))))
fa0c1d61
LC
7110@end example
7111
7112This mechanism can prevent programs running locally, such as Web
7113browsers, from accessing Facebook.
7114@end defvr
7115
965a7332
LC
7116The @code{(gnu services avahi)} provides the following definition.
7117
be1c2c54 7118@deffn {Scheme Procedure} avahi-service [#:avahi @var{avahi}] @
965a7332
LC
7119 [#:host-name #f] [#:publish? #t] [#:ipv4? #t] @
7120 [#:ipv6? #t] [#:wide-area? #f] @
7121 [#:domains-to-browse '()]
7122Return a service that runs @command{avahi-daemon}, a system-wide
7123mDNS/DNS-SD responder that allows for service discovery and
cc9c1f39
LC
7124"zero-configuration" host name lookups (see @uref{http://avahi.org/}), and
7125extends the name service cache daemon (nscd) so that it can resolve
7126@code{.local} host names using
1065bed9
LC
7127@uref{http://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. Additionally,
7128add the @var{avahi} package to the system profile so that commands such as
7129@command{avahi-browse} are directly usable.
965a7332
LC
7130
7131If @var{host-name} is different from @code{#f}, use that as the host name to
7132publish for this machine; otherwise, use the machine's actual host name.
7133
7134When @var{publish?} is true, publishing of host names and services is allowed;
7135in particular, avahi-daemon will publish the machine's host name and IP
7136address via mDNS on the local network.
7137
7138When @var{wide-area?} is true, DNS-SD over unicast DNS is enabled.
7139
7140Boolean values @var{ipv4?} and @var{ipv6?} determine whether to use IPv4/IPv6
7141sockets.
7142@end deffn
7143
7144
cf4a9129
LC
7145@node X Window
7146@subsubsection X Window
68ad877c 7147
cf4a9129
LC
7148Support for the X Window graphical display system---specifically
7149Xorg---is provided by the @code{(gnu services xorg)} module. Note that
7150there is no @code{xorg-service} procedure. Instead, the X server is
7151started by the @dfn{login manager}, currently SLiM.
4af2447e 7152
be1c2c54 7153@deffn {Scheme Procedure} slim-service [#:allow-empty-passwords? #f] @
0ecc3bf3
LC
7154 [#:auto-login? #f] [#:default-user ""] [#:startx] @
7155 [#:theme @var{%default-slim-theme}] @
4bd43bbe 7156 [#:theme-name @var{%default-slim-theme-name}]
cf4a9129
LC
7157Return a service that spawns the SLiM graphical login manager, which in
7158turn starts the X display server with @var{startx}, a command as returned by
7159@code{xorg-start-command}.
4af2447e 7160
04e4e6ab
LC
7161@cindex X session
7162
7163SLiM automatically looks for session types described by the @file{.desktop}
7164files in @file{/run/current-system/profile/share/xsessions} and allows users
7165to choose a session from the log-in screen using @kbd{F1}. Packages such as
7166@var{xfce}, @var{sawfish}, and @var{ratpoison} provide @file{.desktop} files;
7167adding them to the system-wide set of packages automatically makes them
7168available at the log-in screen.
7169
7170In addition, @file{~/.xsession} files are honored. When available,
7171@file{~/.xsession} must be an executable that starts a window manager
7172and/or other X clients.
7173
cf4a9129
LC
7174When @var{allow-empty-passwords?} is true, allow logins with an empty
7175password. When @var{auto-login?} is true, log in automatically as
7176@var{default-user}.
0ecc3bf3
LC
7177
7178If @var{theme} is @code{#f}, the use the default log-in theme; otherwise
7179@var{theme} must be a gexp denoting the name of a directory containing the
7180theme to use. In that case, @var{theme-name} specifies the name of the
7181theme.
cf4a9129 7182@end deffn
4af2447e 7183
0ecc3bf3
LC
7184@defvr {Scheme Variable} %default-theme
7185@defvrx {Scheme Variable} %default-theme-name
7186The G-Expression denoting the default SLiM theme and its name.
7187@end defvr
7188
be1c2c54 7189@deffn {Scheme Procedure} xorg-start-command [#:guile] @
d1cdd7ba 7190 [#:configuration-file #f] [#:xorg-server @var{xorg-server}]
f703413e 7191Return a derivation that builds a @var{guile} script to start the X server
d1cdd7ba
LC
7192from @var{xorg-server}. @var{configuration-file} is the server configuration
7193file or a derivation that builds it; when omitted, the result of
7194@code{xorg-configuration-file} is used.
7195
7196Usually the X server is started by a login manager.
7197@end deffn
7198
be1c2c54 7199@deffn {Scheme Procedure} xorg-configuration-file @
12422c9d 7200 [#:drivers '()] [#:resolutions '()] [#:extra-config '()]
d1cdd7ba
LC
7201Return a configuration file for the Xorg server containing search paths for
7202all the common drivers.
f703413e
LC
7203
7204@var{drivers} must be either the empty list, in which case Xorg chooses a
7205graphics driver automatically, or a list of driver names that will be tried in
d1cdd7ba 7206this order---e.g., @code{(\"modesetting\" \"vesa\")}.
d2e59637
LC
7207
7208Likewise, when @var{resolutions} is the empty list, Xorg chooses an
7209appropriate screen resolution; otherwise, it must be a list of
7210resolutions---e.g., @code{((1024 768) (640 480))}.
12422c9d
LC
7211
7212Last, @var{extra-config} is a list of strings or objects appended to the
7213@code{text-file*} argument list. It is used to pass extra text to be added
7214verbatim to the configuration file.
f703413e 7215@end deffn
4af2447e 7216
6726282b
LC
7217@deffn {Scheme Procedure} screen-locker-service @var{package} [@var{name}]
7218Add @var{package}, a package for a screen-locker or screen-saver whose
7219command is @var{program}, to the set of setuid programs and add a PAM entry
7220for it. For example:
7221
7222@lisp
7223(screen-locker-service xlockmore "xlock")
7224@end lisp
7225
7226makes the good ol' XlockMore usable.
7227@end deffn
7228
7229
fe1a39d3
LC
7230@node Desktop Services
7231@subsubsection Desktop Services
aa4ed923 7232
fe1a39d3
LC
7233The @code{(gnu services desktop)} module provides services that are
7234usually useful in the context of a ``desktop'' setup---that is, on a
7235machine running a graphical display server, possibly with graphical user
7236interfaces, etc.
aa4ed923 7237
4467be21
LC
7238To simplify things, the module defines a variable containing the set of
7239services that users typically expect on a machine with a graphical
7240environment and networking:
7241
7242@defvr {Scheme Variable} %desktop-services
7243This is a list of services that builds upon @var{%base-services} and
7244adds or adjust services for a typical ``desktop'' setup.
7245
7246In particular, it adds a graphical login manager (@pxref{X Window,
6726282b
LC
7247@code{slim-service}}), screen lockers,
7248a network management tool (@pxref{Networking
4467be21 7249Services, @code{wicd-service}}), energy and color management services,
4650a77e 7250the @code{elogind} login and seat manager, the Polkit privilege service,
cee32ee4
AW
7251the GeoClue location service, an NTP client (@pxref{Networking
7252Services}), the Avahi daemon, and has the name service switch service
7253configured to be able to use @code{nss-mdns} (@pxref{Name Service
7254Switch, mDNS}).
4467be21
LC
7255@end defvr
7256
7257The @var{%desktop-services} variable can be used as the @code{services}
7258field of an @code{operating-system} declaration (@pxref{operating-system
7259Reference, @code{services}}).
7260
0adfe95a
LC
7261The actual service definitions provided by @code{(gnu services dbus)}
7262and @code{(gnu services desktop)} are described below.
4467be21 7263
0adfe95a 7264@deffn {Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]
fe1a39d3
LC
7265Return a service that runs the ``system bus'', using @var{dbus}, with
7266support for @var{services}.
aa4ed923 7267
fe1a39d3
LC
7268@uref{http://dbus.freedesktop.org/, D-Bus} is an inter-process communication
7269facility. Its system bus is used to allow system services to communicate
7270and be notified of system-wide events.
aa4ed923 7271
fe1a39d3
LC
7272@var{services} must be a list of packages that provide an
7273@file{etc/dbus-1/system.d} directory containing additional D-Bus configuration
7274and policy files. For example, to allow avahi-daemon to use the system bus,
7275@var{services} must be equal to @code{(list avahi)}.
aa4ed923
AK
7276@end deffn
7277
0adfe95a 7278@deffn {Scheme Procedure} elogind-service [#:config @var{config}]
4650a77e
AW
7279Return a service that runs the @code{elogind} login and
7280seat management daemon. @uref{https://github.com/andywingo/elogind,
7281Elogind} exposes a D-Bus interface that can be used to know which users
7282are logged in, know what kind of sessions they have open, suspend the
7283system, inhibit system suspend, reboot the system, and other tasks.
7284
7285Elogind handles most system-level power events for a computer, for
7286example suspending the system when a lid is closed, or shutting it down
7287when the power button is pressed.
7288
7289The @var{config} keyword argument specifies the configuration for
7290elogind, and should be the result of a @code{(elogind-configuration
7291(@var{parameter} @var{value})...)} invocation. Available parameters and
7292their default values are:
7293
7294@table @code
7295@item kill-user-processes?
7296@code{#f}
7297@item kill-only-users
7298@code{()}
7299@item kill-exclude-users
7300@code{("root")}
7301@item inhibit-delay-max-seconds
7302@code{5}
7303@item handle-power-key
7304@code{poweroff}
7305@item handle-suspend-key
7306@code{suspend}
7307@item handle-hibernate-key
7308@code{hibernate}
7309@item handle-lid-switch
7310@code{suspend}
7311@item handle-lid-switch-docked
7312@code{ignore}
7313@item power-key-ignore-inhibited?
7314@code{#f}
7315@item suspend-key-ignore-inhibited?
7316@code{#f}
7317@item hibernate-key-ignore-inhibited?
7318@code{#f}
7319@item lid-switch-ignore-inhibited?
7320@code{#t}
7321@item holdoff-timeout-seconds
7322@code{30}
7323@item idle-action
7324@code{ignore}
7325@item idle-action-seconds
7326@code{(* 30 60)}
7327@item runtime-directory-size-percent
7328@code{10}
7329@item runtime-directory-size
7330@code{#f}
7331@item remove-ipc?
7332@code{#t}
7333@item suspend-state
7334@code{("mem" "standby" "freeze")}
7335@item suspend-mode
7336@code{()}
7337@item hibernate-state
7338@code{("disk")}
7339@item hibernate-mode
7340@code{("platform" "shutdown")}
7341@item hybrid-sleep-state
7342@code{("disk")}
7343@item hybrid-sleep-mode
7344@code{("suspend" "platform" "shutdown")}
7345@end table
7346@end deffn
7347
be1c2c54 7348@deffn {Scheme Procedure} polkit-service @
4650a77e 7349 [#:polkit @var{polkit}]
222e3319
LC
7350Return a service that runs the
7351@uref{http://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege
7352management service}, which allows system administrators to grant access to
7353privileged operations in a structured way. By querying the Polkit service, a
7354privileged system component can know when it should grant additional
7355capabilities to ordinary users. For example, an ordinary user can be granted
7356the capability to suspend the system if the user is logged in locally.
4650a77e
AW
7357@end deffn
7358
be1c2c54 7359@deffn {Scheme Procedure} upower-service [#:upower @var{upower}] @
be234128
AW
7360 [#:watts-up-pro? #f] @
7361 [#:poll-batteries? #t] @
7362 [#:ignore-lid? #f] @
7363 [#:use-percentage-for-policy? #f] @
7364 [#:percentage-low 10] @
7365 [#:percentage-critical 3] @
7366 [#:percentage-action 2] @
7367 [#:time-low 1200] @
7368 [#:time-critical 300] @
7369 [#:time-action 120] @
7370 [#:critical-power-action 'hybrid-sleep]
7371Return a service that runs @uref{http://upower.freedesktop.org/,
7372@command{upowerd}}, a system-wide monitor for power consumption and battery
7373levels, with the given configuration settings. It implements the
7374@code{org.freedesktop.UPower} D-Bus interface, and is notably used by
7375GNOME.
7376@end deffn
7377
2b9e0a94
LC
7378@deffn {Scheme Procedure} udisks-service [#:udisks @var{udisks}]
7379Return a service for @uref{http://udisks.freedesktop.org/docs/latest/,
7380UDisks}, a @dfn{disk management} daemon that provides user interfaces with
7381notifications and ways to mount/unmount disks. Programs that talk to UDisks
7382include the @command{udisksctl} command, part of UDisks, and GNOME Disks.
7383@end deffn
7384
be1c2c54 7385@deffn {Scheme Procedure} colord-service [#:colord @var{colord}]
7ce597ff
AW
7386Return a service that runs @command{colord}, a system service with a D-Bus
7387interface to manage the color profiles of input and output devices such as
7388screens and scanners. It is notably used by the GNOME Color Manager graphical
7389tool. See @uref{http://www.freedesktop.org/software/colord/, the colord web
7390site} for more information.
7391@end deffn
7392
cee32ee4
AW
7393@deffn {Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]
7394Return an configuration allowing an application to access GeoClue
7395location data. @var{name} is the Desktop ID of the application, without
7396the @code{.desktop} part. If @var{allowed?} is true, the application
7397will have access to location information by default. The boolean
7398@var{system?} value indicates that an application is a system component
7399or not. Finally @var{users} is a list of UIDs of all users for which
7400this application is allowed location info access. An empty users list
7401means that all users are allowed.
7402@end deffn
7403
7404@defvr {Scheme Variable} %standard-geoclue-applications
7405The standard list of well-known GeoClue application configurations,
7406granting authority to GNOME's date-and-time utility to ask for the
7407current location in order to set the time zone, and allowing the Firefox
7408(IceCat) and Epiphany web browsers to request location information.
7409Firefox and Epiphany both query the user before allowing a web page to
7410know the user's location.
7411@end defvr
7412
be1c2c54 7413@deffn {Scheme Procedure} geoclue-service [#:colord @var{colord}] @
cee32ee4
AW
7414 [#:whitelist '()] @
7415 [#:wifi-geolocation-url "https://location.services.mozilla.com/v1/geolocate?key=geoclue"] @
7416 [#:submit-data? #f]
7417 [#:wifi-submission-url "https://location.services.mozilla.com/v1/submit?key=geoclue"] @
7418 [#:submission-nick "geoclue"] @
7419 [#:applications %standard-geoclue-applications]
7420Return a service that runs the GeoClue location service. This service
7421provides a D-Bus interface to allow applications to request access to a
7422user's physical location, and optionally to add information to online
7423location databases. See
7424@uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue
7425web site} for more information.
7426@end deffn
7427
105369a4
DT
7428@node Database Services
7429@subsubsection Database Services
7430
7431The @code{(gnu services databases)} module provides the following service.
7432
be1c2c54 7433@deffn {Scheme Procedure} postgresql-service [#:postgresql postgresql] @
105369a4
DT
7434 [#:config-file] [#:data-directory ``/var/lib/postgresql/data'']
7435Return a service that runs @var{postgresql}, the PostgreSQL database
7436server.
7437
7438The PostgreSQL daemon loads its runtime configuration from
7439@var{config-file} and stores the database cluster in
7440@var{data-directory}.
7441@end deffn
fe1a39d3 7442
d8c18af8
AW
7443@node Mail Services
7444@subsubsection Mail Services
7445
7446The @code{(gnu services mail)} module provides Guix service definitions
7447for mail services. Currently the only implemented service is Dovecot,
7448an IMAP, POP3, and LMTP server.
7449
7450Guix does not yet have a mail transfer agent (MTA), although for some
7451lightweight purposes the @code{esmtp} relay-only MTA may suffice. Help
7452is needed to properly integrate a full MTA, such as Postfix. Patches
7453welcome!
7454
7455To add an IMAP/POP3 server to a GuixSD system, add a
7456@code{dovecot-service} to the operating system definition:
7457
7458@deffn {Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]
7459Return a service that runs the Dovecot IMAP/POP3/LMTP mail server.
7460@end deffn
7461
7462By default, Dovecot doesn't need much configuration; the default
7463configuration object created by @code{(dovecot-configuration)} will
7464suffice if your mail is delivered to @code{~/Maildir}. A self-signed
7465certificate will be generated for TLS-protected connections, though
7466Dovecot will also listen on cleartext ports by default. There are a
7467number of options though which mail administrators might need to change,
7468and as is the case with other services, Guix allows the system
7469administrator to specify these parameters via a uniform Scheme interface.
7470
7471For example, to specify that mail is located at @code{maildir~/.mail},
7472one would instantiate the Dovecot service like this:
7473
7474@example
7475(dovecot-service #:config
7476 (dovecot-configuration
7477 (mail-location "maildir:~/.mail")))
7478@end example
7479
7480The available configuration parameters follow. Each parameter
7481definition is preceded by its type; for example, @samp{string-list foo}
7482indicates that the @code{foo} parameter should be specified as a list of
7483strings. There is also a way to specify the configuration as a string,
7484if you have an old @code{dovecot.conf} file that you want to port over
7485from some other system; see the end for more details.
7486
7487@c The following documentation was initially generated by
7488@c (generate-documentation) in (gnu services mail). Manually maintained
7489@c documentation is better, so we shouldn't hesitate to edit below as
7490@c needed. However if the change you want to make to this documentation
7491@c can be done in an automated way, it's probably easier to change
7492@c (generate-documentation) than to make it below and have to deal with
7493@c the churn as dovecot updates.
7494
7495Available @code{dovecot-configuration} fields are:
7496
7497@deftypevr {@code{dovecot-configuration} parameter} package dovecot
7498The dovecot package.
7499@end deftypevr
7500
7501@deftypevr {@code{dovecot-configuration} parameter} comma-separated-string-list listen
7502A list of IPs or hosts where to listen in for connections. @samp{*}
7503listens in all IPv4 interfaces, @samp{::} listens in all IPv6
7504interfaces. If you want to specify non-default ports or anything more
7505complex, customize the address and port fields of the
7506@samp{inet-listener} of the specific services you are interested in.
7507@end deftypevr
7508
7509@deftypevr {@code{dovecot-configuration} parameter} protocol-configuration-list protocols
7510List of protocols we want to serve. Available protocols include
7511@samp{imap}, @samp{pop3}, and @samp{lmtp}.
7512
7513Available @code{protocol-configuration} fields are:
7514
7515@deftypevr {@code{protocol-configuration} parameter} string name
7516The name of the protocol.
7517@end deftypevr
7518
7519@deftypevr {@code{protocol-configuration} parameter} string auth-socket-path
7520UNIX socket path to master authentication server to find users.
7521This is used by imap (for shared users) and lda.
7522Defaults to @samp{"/var/run/dovecot/auth-userdb"}.
7523@end deftypevr
7524
7525@deftypevr {@code{protocol-configuration} parameter} space-separated-string-list mail-plugins
7526Space separated list of plugins to load.
7527@end deftypevr
7528
7529@deftypevr {@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections
7530Maximum number of IMAP connections allowed for a user from each IP
7531address. NOTE: The username is compared case-sensitively.
7532Defaults to @samp{10}.
7533@end deftypevr
7534
7535@end deftypevr
7536
7537@deftypevr {@code{dovecot-configuration} parameter} service-configuration-list services
7538List of services to enable. Available services include @samp{imap},
7539@samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and
7540@samp{lmtp}.
7541
7542Available @code{service-configuration} fields are:
7543
7544@deftypevr {@code{service-configuration} parameter} string kind
7545The service kind. Valid values include @code{director},
7546@code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap},
7547@code{pop3}, @code{auth}, @code{auth-worker}, @code{dict},
7548@code{tcpwrap}, @code{quota-warning}, or anything else.
7549@end deftypevr
7550
7551@deftypevr {@code{service-configuration} parameter} listener-configuration-list listeners
7552Listeners for the service. A listener is either an
7553@code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or
7554an @code{inet-listener-configuration}.
7555Defaults to @samp{()}.
7556
7557Available @code{unix-listener-configuration} fields are:
7558
7559@deftypevr {@code{unix-listener-configuration} parameter} file-name path
7560The file name on which to listen.
7561@end deftypevr
7562
7563@deftypevr {@code{unix-listener-configuration} parameter} string mode
7564The access mode for the socket.
7565Defaults to @samp{"0600"}.
7566@end deftypevr
7567
7568@deftypevr {@code{unix-listener-configuration} parameter} string user
f9b9a033 7569The user to own the socket.
d8c18af8
AW
7570Defaults to @samp{""}.
7571@end deftypevr
7572
7573@deftypevr {@code{unix-listener-configuration} parameter} string group
7574The group to own the socket.
7575Defaults to @samp{""}.
7576@end deftypevr
7577
7578
7579Available @code{fifo-listener-configuration} fields are:
7580
7581@deftypevr {@code{fifo-listener-configuration} parameter} file-name path
7582The file name on which to listen.
7583@end deftypevr
7584
7585@deftypevr {@code{fifo-listener-configuration} parameter} string mode
7586The access mode for the socket.
7587Defaults to @samp{"0600"}.
7588@end deftypevr
7589
7590@deftypevr {@code{fifo-listener-configuration} parameter} string user
f9b9a033 7591The user to own the socket.
d8c18af8
AW
7592Defaults to @samp{""}.
7593@end deftypevr
7594
7595@deftypevr {@code{fifo-listener-configuration} parameter} string group
7596The group to own the socket.
7597Defaults to @samp{""}.
7598@end deftypevr
7599
7600
7601Available @code{inet-listener-configuration} fields are:
7602
7603@deftypevr {@code{inet-listener-configuration} parameter} string protocol
7604The protocol to listen for.
7605@end deftypevr
7606
7607@deftypevr {@code{inet-listener-configuration} parameter} string address
7608The address on which to listen, or empty for all addresses.
7609Defaults to @samp{""}.
7610@end deftypevr
7611
7612@deftypevr {@code{inet-listener-configuration} parameter} non-negative-integer port
7613The port on which to listen.
7614@end deftypevr
7615
7616@deftypevr {@code{inet-listener-configuration} parameter} boolean ssl?
7617Whether to use SSL for this service; @samp{yes}, @samp{no}, or
7618@samp{required}.
7619Defaults to @samp{#t}.
7620@end deftypevr
7621
7622@end deftypevr
7623
7624@deftypevr {@code{service-configuration} parameter} non-negative-integer service-count
7625Number of connections to handle before starting a new process.
7626Typically the only useful values are 0 (unlimited) or 1. 1 is more
7627secure, but 0 is faster. <doc/wiki/LoginProcess.txt>.
7628Defaults to @samp{1}.
7629@end deftypevr
7630
7631@deftypevr {@code{service-configuration} parameter} non-negative-integer process-min-avail
7632Number of processes to always keep waiting for more connections.
7633Defaults to @samp{0}.
7634@end deftypevr
7635
7636@deftypevr {@code{service-configuration} parameter} non-negative-integer vsz-limit
7637If you set @samp{service-count 0}, you probably need to grow
7638this.
7639Defaults to @samp{256000000}.
7640@end deftypevr
7641
7642@end deftypevr
7643
7644@deftypevr {@code{dovecot-configuration} parameter} dict-configuration dict
7645Dict configuration, as created by the @code{dict-configuration}
7646constructor.
7647
7648Available @code{dict-configuration} fields are:
7649
7650@deftypevr {@code{dict-configuration} parameter} free-form-fields entries
7651A list of key-value pairs that this dict should hold.
7652Defaults to @samp{()}.
7653@end deftypevr
7654
7655@end deftypevr
7656
7657@deftypevr {@code{dovecot-configuration} parameter} passdb-configuration-list passdbs
7658List of passdb configurations, each one created by the
7659@code{passdb-configuration} constructor.
7660
7661Available @code{passdb-configuration} fields are:
7662
7663@deftypevr {@code{passdb-configuration} parameter} string driver
7664The driver that the passdb should use. Valid values include
7665@samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and
7666@samp{static}.
7667Defaults to @samp{"pam"}.
7668@end deftypevr
7669
7670@deftypevr {@code{passdb-configuration} parameter} free-form-args args
7671A list of key-value args to the passdb driver.
7672Defaults to @samp{()}.
7673@end deftypevr
7674
7675@end deftypevr
7676
7677@deftypevr {@code{dovecot-configuration} parameter} userdb-configuration-list userdbs
7678List of userdb configurations, each one created by the
7679@code{userdb-configuration} constructor.
7680
7681Available @code{userdb-configuration} fields are:
7682
7683@deftypevr {@code{userdb-configuration} parameter} string driver
7684The driver that the userdb should use. Valid values include
7685@samp{passwd} and @samp{static}.
7686Defaults to @samp{"passwd"}.
7687@end deftypevr
7688
7689@deftypevr {@code{userdb-configuration} parameter} free-form-args args
7690A list of key-value args to the userdb driver.
7691Defaults to @samp{()}.
7692@end deftypevr
7693
7694@deftypevr {@code{userdb-configuration} parameter} free-form-args override-fields
7695Override fields from passwd.
7696Defaults to @samp{()}.
7697@end deftypevr
7698
7699@end deftypevr
7700
7701@deftypevr {@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration
7702Plug-in configuration, created by the @code{plugin-configuration}
7703constructor.
7704@end deftypevr
7705
7706@deftypevr {@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces
7707List of namespaces. Each item in the list is created by the
7708@code{namespace-configuration} constructor.
7709
7710Available @code{namespace-configuration} fields are:
7711
7712@deftypevr {@code{namespace-configuration} parameter} string name
7713Name for this namespace.
7714@end deftypevr
7715
7716@deftypevr {@code{namespace-configuration} parameter} string type
7717Namespace type: @samp{private}, @samp{shared} or @samp{public}.
7718Defaults to @samp{"private"}.
7719@end deftypevr
7720
7721@deftypevr {@code{namespace-configuration} parameter} string separator
7722Hierarchy separator to use. You should use the same separator for
7723all namespaces or some clients get confused. @samp{/} is usually a good
7724one. The default however depends on the underlying mail storage
7725format.
7726Defaults to @samp{""}.
7727@end deftypevr
7728
7729@deftypevr {@code{namespace-configuration} parameter} string prefix
7730Prefix required to access this namespace. This needs to be
7731different for all namespaces. For example @samp{Public/}.
7732Defaults to @samp{""}.
7733@end deftypevr
7734
7735@deftypevr {@code{namespace-configuration} parameter} string location
7736Physical location of the mailbox. This is in same format as
7737mail_location, which is also the default for it.
7738Defaults to @samp{""}.
7739@end deftypevr
7740
7741@deftypevr {@code{namespace-configuration} parameter} boolean inbox?
7742There can be only one INBOX, and this setting defines which
7743namespace has it.
7744Defaults to @samp{#f}.
7745@end deftypevr
7746
7747@deftypevr {@code{namespace-configuration} parameter} boolean hidden?
7748If namespace is hidden, it's not advertised to clients via NAMESPACE
7749extension. You'll most likely also want to set @samp{list? #f}. This is mostly
7750useful when converting from another server with different namespaces
7751which you want to deprecate but still keep working. For example you can
7752create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/}
7753and @samp{mail/}.
7754Defaults to @samp{#f}.
7755@end deftypevr
7756
7757@deftypevr {@code{namespace-configuration} parameter} boolean list?
7758Show the mailboxes under this namespace with LIST command. This
7759makes the namespace visible for clients that don't support NAMESPACE
7760extension. The special @code{children} value lists child mailboxes, but
7761hides the namespace prefix.
7762Defaults to @samp{#t}.
7763@end deftypevr
7764
7765@deftypevr {@code{namespace-configuration} parameter} boolean subscriptions?
7766Namespace handles its own subscriptions. If set to @code{#f}, the
7767parent namespace handles them. The empty prefix should always have this
7768as @code{#t}.)
7769Defaults to @samp{#t}.
7770@end deftypevr
7771
7772@deftypevr {@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes
7773List of predefined mailboxes in this namespace.
7774Defaults to @samp{()}.
7775
7776Available @code{mailbox-configuration} fields are:
7777
7778@deftypevr {@code{mailbox-configuration} parameter} string name
7779Name for this mailbox.
7780@end deftypevr
7781
7782@deftypevr {@code{mailbox-configuration} parameter} string auto
7783@samp{create} will automatically create this mailbox.
7784@samp{subscribe} will both create and subscribe to the mailbox.
7785Defaults to @samp{"no"}.
7786@end deftypevr
7787
7788@deftypevr {@code{mailbox-configuration} parameter} space-separated-string-list special-use
7789List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154.
7790Valid values are @code{\All}, @code{\Archive}, @code{\Drafts},
7791@code{\Flagged}, @code{\Junk}, @code{\Sent}, and @code{\Trash}.
7792Defaults to @samp{()}.
7793@end deftypevr
7794
7795@end deftypevr
7796
7797@end deftypevr
7798
7799@deftypevr {@code{dovecot-configuration} parameter} file-name base-dir
7800Base directory where to store runtime data.
7801Defaults to @samp{"/var/run/dovecot/"}.
7802@end deftypevr
7803
7804@deftypevr {@code{dovecot-configuration} parameter} string login-greeting
7805Greeting message for clients.
7806Defaults to @samp{"Dovecot ready."}.
7807@end deftypevr
7808
7809@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks
7810List of trusted network ranges. Connections from these IPs are
7811allowed to override their IP addresses and ports (for logging and for
7812authentication checks). @samp{disable-plaintext-auth} is also ignored
7813for these networks. Typically you'd specify your IMAP proxy servers
7814here.
7815Defaults to @samp{()}.
7816@end deftypevr
7817
7818@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets
7819List of login access check sockets (e.g. tcpwrap).
7820Defaults to @samp{()}.
7821@end deftypevr
7822
7823@deftypevr {@code{dovecot-configuration} parameter} boolean verbose-proctitle?
7824Show more verbose process titles (in ps). Currently shows user name
7825and IP address. Useful for seeing who are actually using the IMAP
7826processes (e.g. shared mailboxes or if same uid is used for multiple
7827accounts).
7828Defaults to @samp{#f}.
7829@end deftypevr
7830
7831@deftypevr {@code{dovecot-configuration} parameter} boolean shutdown-clients?
7832Should all processes be killed when Dovecot master process shuts down.
7833Setting this to @code{#f} means that Dovecot can be upgraded without
7834forcing existing client connections to close (although that could also
7835be a problem if the upgrade is e.g. because of a security fix).
7836Defaults to @samp{#t}.
7837@end deftypevr
7838
7839@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count
7840If non-zero, run mail commands via this many connections to doveadm
7841server, instead of running them directly in the same process.
7842Defaults to @samp{0}.
7843@end deftypevr
7844
7845@deftypevr {@code{dovecot-configuration} parameter} string doveadm-socket-path
7846UNIX socket or host:port used for connecting to doveadm server.
7847Defaults to @samp{"doveadm-server"}.
7848@end deftypevr
7849
7850@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list import-environment
7851List of environment variables that are preserved on Dovecot startup
7852and passed down to all of its child processes. You can also give
7853key=value pairs to always set specific settings.
7854@end deftypevr
7855
7856@deftypevr {@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?
7857Disable LOGIN command and all other plaintext authentications unless
7858SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP
7859matches the local IP (i.e. you're connecting from the same computer),
7860the connection is considered secure and plaintext authentication is
7861allowed. See also ssl=required setting.
7862Defaults to @samp{#t}.
7863@end deftypevr
7864
7865@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size
7866Authentication cache size (e.g. @samp{#e10e6}). 0 means it's disabled.
7867Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set
7868for caching to be used.
7869Defaults to @samp{0}.
7870@end deftypevr
7871
7872@deftypevr {@code{dovecot-configuration} parameter} string auth-cache-ttl
7873Time to live for cached data. After TTL expires the cached record
7874is no longer used, *except* if the main database lookup returns internal
7875failure. We also try to handle password changes automatically: If
7876user's previous authentication was successful, but this one wasn't, the
7877cache isn't used. For now this works only with plaintext
7878authentication.
7879Defaults to @samp{"1 hour"}.
7880@end deftypevr
7881
7882@deftypevr {@code{dovecot-configuration} parameter} string auth-cache-negative-ttl
7883TTL for negative hits (user not found, password mismatch).
78840 disables caching them completely.
7885Defaults to @samp{"1 hour"}.
7886@end deftypevr
7887
7888@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-realms
7889List of realms for SASL authentication mechanisms that need them.
7890You can leave it empty if you don't want to support multiple realms.
7891Many clients simply use the first one listed here, so keep the default
7892realm first.
7893Defaults to @samp{()}.
7894@end deftypevr
7895
7896@deftypevr {@code{dovecot-configuration} parameter} string auth-default-realm
7897Default realm/domain to use if none was specified. This is used for
7898both SASL realms and appending @@domain to username in plaintext
7899logins.
7900Defaults to @samp{""}.
7901@end deftypevr
7902
7903@deftypevr {@code{dovecot-configuration} parameter} string auth-username-chars
7904List of allowed characters in username. If the user-given username
7905contains a character not listed in here, the login automatically fails.
7906This is just an extra check to make sure user can't exploit any
7907potential quote escaping vulnerabilities with SQL/LDAP databases. If
7908you want to allow all characters, set this value to empty.
7909Defaults to @samp{"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@"}.
7910@end deftypevr
7911
7912@deftypevr {@code{dovecot-configuration} parameter} string auth-username-translation
7913Username character translations before it's looked up from
7914databases. The value contains series of from -> to characters. For
7915example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are
7916translated to @samp{@@}.
7917Defaults to @samp{""}.
7918@end deftypevr
7919
7920@deftypevr {@code{dovecot-configuration} parameter} string auth-username-format
7921Username formatting before it's looked up from databases. You can
7922use the standard variables here, e.g. %Lu would lowercase the username,
7923%n would drop away the domain if it was given, or @samp{%n-AT-%d} would
7924change the @samp{@@} into @samp{-AT-}. This translation is done after
7925@samp{auth-username-translation} changes.
7926Defaults to @samp{"%Lu"}.
7927@end deftypevr
7928
7929@deftypevr {@code{dovecot-configuration} parameter} string auth-master-user-separator
7930If you want to allow master users to log in by specifying the master
7931username within the normal username string (i.e. not using SASL
7932mechanism's support for it), you can specify the separator character
7933here. The format is then <username><separator><master username>.
7934UW-IMAP uses @samp{*} as the separator, so that could be a good
7935choice.
7936Defaults to @samp{""}.
7937@end deftypevr
7938
7939@deftypevr {@code{dovecot-configuration} parameter} string auth-anonymous-username
7940Username to use for users logging in with ANONYMOUS SASL
7941mechanism.
7942Defaults to @samp{"anonymous"}.
7943@end deftypevr
7944
7945@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count
7946Maximum number of dovecot-auth worker processes. They're used to
7947execute blocking passdb and userdb queries (e.g. MySQL and PAM).
7948They're automatically created and destroyed as needed.
7949Defaults to @samp{30}.
7950@end deftypevr
7951
7952@deftypevr {@code{dovecot-configuration} parameter} string auth-gssapi-hostname
7953Host name to use in GSSAPI principal names. The default is to use
7954the name returned by gethostname(). Use @samp{$ALL} (with quotes) to
7955allow all keytab entries.
7956Defaults to @samp{""}.
7957@end deftypevr
7958
7959@deftypevr {@code{dovecot-configuration} parameter} string auth-krb5-keytab
7960Kerberos keytab to use for the GSSAPI mechanism. Will use the
7961system default (usually /etc/krb5.keytab) if not specified. You may
7962need to change the auth service to run as root to be able to read this
7963file.
7964Defaults to @samp{""}.
7965@end deftypevr
7966
7967@deftypevr {@code{dovecot-configuration} parameter} boolean auth-use-winbind?
7968Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon
7969and @samp{ntlm-auth} helper.
7970<doc/wiki/Authentication/Mechanisms/Winbind.txt>.
7971Defaults to @samp{#f}.
7972@end deftypevr
7973
7974@deftypevr {@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path
7975Path for Samba's @samp{ntlm-auth} helper binary.
7976Defaults to @samp{"/usr/bin/ntlm_auth"}.
7977@end deftypevr
7978
7979@deftypevr {@code{dovecot-configuration} parameter} string auth-failure-delay
7980Time to delay before replying to failed authentications.
7981Defaults to @samp{"2 secs"}.
7982@end deftypevr
7983
7984@deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?
7985Require a valid SSL client certificate or the authentication
7986fails.
7987Defaults to @samp{#f}.
7988@end deftypevr
7989
7990@deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?
7991Take the username from client's SSL certificate, using
7992@code{X509_NAME_get_text_by_NID()} which returns the subject's DN's
7993CommonName.
7994Defaults to @samp{#f}.
7995@end deftypevr
7996
7997@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms
7998List of wanted authentication mechanisms. Supported mechanisms are:
7999@samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5},
8000@samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi},
8001@samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also
8002@samp{disable-plaintext-auth} setting.
8003@end deftypevr
8004
8005@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-servers
8006List of IPs or hostnames to all director servers, including ourself.
8007Ports can be specified as ip:port. The default port is the same as what
8008director service's @samp{inet-listener} is using.
8009Defaults to @samp{()}.
8010@end deftypevr
8011
8012@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers
8013List of IPs or hostnames to all backend mail servers. Ranges are
8014allowed too, like 10.0.0.10-10.0.0.30.
8015Defaults to @samp{()}.
8016@end deftypevr
8017
8018@deftypevr {@code{dovecot-configuration} parameter} string director-user-expire
8019How long to redirect users to a specific server after it no longer
8020has any connections.
8021Defaults to @samp{"15 min"}.
8022@end deftypevr
8023
8024@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer director-doveadm-port
8025TCP/IP port that accepts doveadm connections (instead of director
8026connections) If you enable this, you'll also need to add
8027@samp{inet-listener} for the port.
8028Defaults to @samp{0}.
8029@end deftypevr
8030
8031@deftypevr {@code{dovecot-configuration} parameter} string director-username-hash
8032How the username is translated before being hashed. Useful values
8033include %Ln if user can log in with or without @@domain, %Ld if mailboxes
8034are shared within domain.
8035Defaults to @samp{"%Lu"}.
8036@end deftypevr
8037
8038@deftypevr {@code{dovecot-configuration} parameter} string log-path
8039Log file to use for error messages. @samp{syslog} logs to syslog,
8040@samp{/dev/stderr} logs to stderr.
8041Defaults to @samp{"syslog"}.
8042@end deftypevr
8043
8044@deftypevr {@code{dovecot-configuration} parameter} string info-log-path
8045Log file to use for informational messages. Defaults to
8046@samp{log-path}.
8047Defaults to @samp{""}.
8048@end deftypevr
8049
8050@deftypevr {@code{dovecot-configuration} parameter} string debug-log-path
8051Log file to use for debug messages. Defaults to
8052@samp{info-log-path}.
8053Defaults to @samp{""}.
8054@end deftypevr
8055
8056@deftypevr {@code{dovecot-configuration} parameter} string syslog-facility
8057Syslog facility to use if you're logging to syslog. Usually if you
8058don't want to use @samp{mail}, you'll use local0..local7. Also other
8059standard facilities are supported.
8060Defaults to @samp{"mail"}.
8061@end deftypevr
8062
8063@deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose?
8064Log unsuccessful authentication attempts and the reasons why they
8065failed.
8066Defaults to @samp{#f}.
8067@end deftypevr
8068
8069@deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose-passwords?
8070In case of password mismatches, log the attempted password. Valid
8071values are no, plain and sha1. sha1 can be useful for detecting brute
8072force password attempts vs. user simply trying the same password over
8073and over again. You can also truncate the value to n chars by appending
8074":n" (e.g. sha1:6).
8075Defaults to @samp{#f}.
8076@end deftypevr
8077
8078@deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug?
8079Even more verbose logging for debugging purposes. Shows for example
8080SQL queries.
8081Defaults to @samp{#f}.
8082@end deftypevr
8083
8084@deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug-passwords?
8085In case of password mismatches, log the passwords and used scheme so
8086the problem can be debugged. Enabling this also enables
8087@samp{auth-debug}.
8088Defaults to @samp{#f}.
8089@end deftypevr
8090
8091@deftypevr {@code{dovecot-configuration} parameter} boolean mail-debug?
8092Enable mail process debugging. This can help you figure out why
8093Dovecot isn't finding your mails.
8094Defaults to @samp{#f}.
8095@end deftypevr
8096
8097@deftypevr {@code{dovecot-configuration} parameter} boolean verbose-ssl?
8098Show protocol level SSL errors.
8099Defaults to @samp{#f}.
8100@end deftypevr
8101
8102@deftypevr {@code{dovecot-configuration} parameter} string log-timestamp
8103Prefix for each line written to log file. % codes are in
8104strftime(3) format.
8105Defaults to @samp{"\"%b %d %H:%M:%S \""}.
8106@end deftypevr
8107
8108@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements
8109List of elements we want to log. The elements which have a
8110non-empty variable value are joined together to form a comma-separated
8111string.
8112@end deftypevr
8113
8114@deftypevr {@code{dovecot-configuration} parameter} string login-log-format
8115Login log format. %s contains @samp{login-log-format-elements}
8116string, %$ contains the data we want to log.
8117Defaults to @samp{"%$: %s"}.
8118@end deftypevr
8119
8120@deftypevr {@code{dovecot-configuration} parameter} string mail-log-prefix
8121Log prefix for mail processes. See doc/wiki/Variables.txt for list
8122of possible variables you can use.
8123Defaults to @samp{"\"%s(%u): \""}.
8124@end deftypevr
8125
8126@deftypevr {@code{dovecot-configuration} parameter} string deliver-log-format
8127Format to use for logging mail deliveries. You can use variables:
8128@table @code
8129@item %$
8130Delivery status message (e.g. @samp{saved to INBOX})
8131@item %m
8132Message-ID
8133@item %s
8134Subject
8135@item %f
8136From address
8137@item %p
8138Physical size
8139@item %w
8140Virtual size.
8141@end table
8142Defaults to @samp{"msgid=%m: %$"}.
8143@end deftypevr
8144
8145@deftypevr {@code{dovecot-configuration} parameter} string mail-location
8146Location for users' mailboxes. The default is empty, which means
8147that Dovecot tries to find the mailboxes automatically. This won't work
8148if the user doesn't yet have any mail, so you should explicitly tell
8149Dovecot the full location.
8150
8151If you're using mbox, giving a path to the INBOX
8152file (e.g. /var/mail/%u) isn't enough. You'll also need to tell Dovecot
8153where the other mailboxes are kept. This is called the "root mail
8154directory", and it must be the first path given in the
8155@samp{mail-location} setting.
8156
8157There are a few special variables you can use, eg.:
8158
8159@table @samp
8160@item %u
8161username
8162@item %n
8163user part in user@@domain, same as %u if there's no domain
8164@item %d
8165domain part in user@@domain, empty if there's no domain
8166@item %h
8167home director
8168@end table
8169
8170See doc/wiki/Variables.txt for full list. Some examples:
8171@table @samp
8172@item maildir:~/Maildir
8173@item mbox:~/mail:INBOX=/var/mail/%u
8174@item mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%
8175@end table
8176Defaults to @samp{""}.
8177@end deftypevr
8178
8179@deftypevr {@code{dovecot-configuration} parameter} string mail-uid
8180System user and group used to access mails. If you use multiple,
8181userdb can override these by returning uid or gid fields. You can use
8182either numbers or names. <doc/wiki/UserIds.txt>.
8183Defaults to @samp{""}.
8184@end deftypevr
8185
8186@deftypevr {@code{dovecot-configuration} parameter} string mail-gid
8187
8188Defaults to @samp{""}.
8189@end deftypevr
8190
8191@deftypevr {@code{dovecot-configuration} parameter} string mail-privileged-group
8192Group to enable temporarily for privileged operations. Currently
8193this is used only with INBOX when either its initial creation or
8194dotlocking fails. Typically this is set to "mail" to give access to
8195/var/mail.
8196Defaults to @samp{""}.
8197@end deftypevr
8198
8199@deftypevr {@code{dovecot-configuration} parameter} string mail-access-groups
8200Grant access to these supplementary groups for mail processes.
8201Typically these are used to set up access to shared mailboxes. Note
8202that it may be dangerous to set these if users can create
8203symlinks (e.g. if "mail" group is set here, ln -s /var/mail ~/mail/var
8204could allow a user to delete others' mailboxes, or ln -s
8205/secret/shared/box ~/mail/mybox would allow reading it).
8206Defaults to @samp{""}.
8207@end deftypevr
8208
8209@deftypevr {@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?
8210Allow full filesystem access to clients. There's no access checks
8211other than what the operating system does for the active UID/GID. It
8212works with both maildir and mboxes, allowing you to prefix mailboxes
8213names with e.g. /path/ or ~user/.
8214Defaults to @samp{#f}.
8215@end deftypevr
8216
8217@deftypevr {@code{dovecot-configuration} parameter} boolean mmap-disable?
8218Don't use mmap() at all. This is required if you store indexes to
8219shared filesystems (NFS or clustered filesystem).
8220Defaults to @samp{#f}.
8221@end deftypevr
8222
8223@deftypevr {@code{dovecot-configuration} parameter} boolean dotlock-use-excl?
8224Rely on @samp{O_EXCL} to work when creating dotlock files. NFS
8225supports @samp{O_EXCL} since version 3, so this should be safe to use
8226nowadays by default.
8227Defaults to @samp{#t}.
8228@end deftypevr
8229
8230@deftypevr {@code{dovecot-configuration} parameter} string mail-fsync
8231When to use fsync() or fdatasync() calls:
8232@table @code
8233@item optimized
8234Whenever necessary to avoid losing important data
8235@item always
8236Useful with e.g. NFS when write()s are delayed
8237@item never
8238Never use it (best performance, but crashes can lose data).
8239@end table
8240Defaults to @samp{"optimized"}.
8241@end deftypevr
8242
8243@deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-storage?
8244Mail storage exists in NFS. Set this to yes to make Dovecot flush
8245NFS caches whenever needed. If you're using only a single mail server
8246this isn't needed.
8247Defaults to @samp{#f}.
8248@end deftypevr
8249
8250@deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-index?
8251Mail index files also exist in NFS. Setting this to yes requires
8252@samp{mmap-disable? #t} and @samp{fsync-disable? #f}.
8253Defaults to @samp{#f}.
8254@end deftypevr
8255
8256@deftypevr {@code{dovecot-configuration} parameter} string lock-method
8257Locking method for index files. Alternatives are fcntl, flock and
8258dotlock. Dotlocking uses some tricks which may create more disk I/O
8259than other locking methods. NFS users: flock doesn't work, remember to
8260change @samp{mmap-disable}.
8261Defaults to @samp{"fcntl"}.
8262@end deftypevr
8263
8264@deftypevr {@code{dovecot-configuration} parameter} file-name mail-temp-dir
8265Directory in which LDA/LMTP temporarily stores incoming mails >128
8266kB.
8267Defaults to @samp{"/tmp"}.
8268@end deftypevr
8269
8270@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid
8271Valid UID range for users. This is mostly to make sure that users can't
8272log in as daemons or other system users. Note that denying root logins is
8273hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid}
8274is set to 0.
8275Defaults to @samp{500}.
8276@end deftypevr
8277
8278@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid
8279
8280Defaults to @samp{0}.
8281@end deftypevr
8282
8283@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid
8284Valid GID range for users. Users having non-valid GID as primary group ID
8285aren't allowed to log in. If user belongs to supplementary groups with
8286non-valid GIDs, those groups are not set.
8287Defaults to @samp{1}.
8288@end deftypevr
8289
8290@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid
8291
8292Defaults to @samp{0}.
8293@end deftypevr
8294
8295@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length
8296Maximum allowed length for mail keyword name. It's only forced when
8297trying to create new keywords.
8298Defaults to @samp{50}.
8299@end deftypevr
8300
8301@deftypevr {@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs
8302List of directories under which chrooting is allowed for mail
8303processes (i.e. /var/mail will allow chrooting to /var/mail/foo/bar
8304too). This setting doesn't affect @samp{login-chroot}
8305@samp{mail-chroot} or auth chroot settings. If this setting is empty,
8306"/./" in home dirs are ignored. WARNING: Never add directories here
8307which local users can modify, that may lead to root exploit. Usually
8308this should be done only if you don't allow shell access for users.
8309<doc/wiki/Chrooting.txt>.
8310Defaults to @samp{()}.
8311@end deftypevr
8312
8313@deftypevr {@code{dovecot-configuration} parameter} string mail-chroot
8314Default chroot directory for mail processes. This can be overridden
8315for specific users in user database by giving /./ in user's home
8316directory (e.g. /home/./user chroots into /home). Note that usually
8317there is no real need to do chrooting, Dovecot doesn't allow users to
8318access files outside their mail directory anyway. If your home
8319directories are prefixed with the chroot directory, append "/." to
8320@samp{mail-chroot}. <doc/wiki/Chrooting.txt>.
8321Defaults to @samp{""}.
8322@end deftypevr
8323
8324@deftypevr {@code{dovecot-configuration} parameter} file-name auth-socket-path
8325UNIX socket path to master authentication server to find users.
8326This is used by imap (for shared users) and lda.
8327Defaults to @samp{"/var/run/dovecot/auth-userdb"}.
8328@end deftypevr
8329
8330@deftypevr {@code{dovecot-configuration} parameter} file-name mail-plugin-dir
8331Directory where to look up mail plugins.
8332Defaults to @samp{"/usr/lib/dovecot"}.
8333@end deftypevr
8334
8335@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins
8336List of plugins to load for all services. Plugins specific to IMAP,
8337LDA, etc. are added to this list in their own .conf files.
8338Defaults to @samp{()}.
8339@end deftypevr
8340
8341@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count
8342The minimum number of mails in a mailbox before updates are done to
8343cache file. This allows optimizing Dovecot's behavior to do less disk
8344writes at the cost of more disk reads.
8345Defaults to @samp{0}.
8346@end deftypevr
8347
8348@deftypevr {@code{dovecot-configuration} parameter} string mailbox-idle-check-interval
8349When IDLE command is running, mailbox is checked once in a while to
8350see if there are any new mails or other changes. This setting defines
8351the minimum time to wait between those checks. Dovecot can also use
8352dnotify, inotify and kqueue to find out immediately when changes
8353occur.
8354Defaults to @samp{"30 secs"}.
8355@end deftypevr
8356
8357@deftypevr {@code{dovecot-configuration} parameter} boolean mail-save-crlf?
8358Save mails with CR+LF instead of plain LF. This makes sending those
8359mails take less CPU, especially with sendfile() syscall with Linux and
8360FreeBSD. But it also creates a bit more disk I/O which may just make it
8361slower. Also note that if other software reads the mboxes/maildirs,
8362they may handle the extra CRs wrong and cause problems.
8363Defaults to @samp{#f}.
8364@end deftypevr
8365
8366@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?
8367By default LIST command returns all entries in maildir beginning
8368with a dot. Enabling this option makes Dovecot return only entries
8369which are directories. This is done by stat()ing each entry, so it
8370causes more disk I/O.
8371 (For systems setting struct @samp{dirent->d_type} this check is free
8372and it's done always regardless of this setting).
8373Defaults to @samp{#f}.
8374@end deftypevr
8375
8376@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?
8377When copying a message, do it with hard links whenever possible.
8378This makes the performance much better, and it's unlikely to have any
8379side effects.
8380Defaults to @samp{#t}.
8381@end deftypevr
8382
8383@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?
8384Assume Dovecot is the only MUA accessing Maildir: Scan cur/
8385directory only when its mtime changes unexpectedly or when we can't find
8386the mail otherwise.
8387Defaults to @samp{#f}.
8388@end deftypevr
8389
8390@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks
8391Which locking methods to use for locking mbox. There are four
8392available:
8393
8394@table @code
8395@item dotlock
8396Create <mailbox>.lock file. This is the oldest and most NFS-safe
8397solution. If you want to use /var/mail/ like directory, the users will
8398need write access to that directory.
8399@item dotlock-try
8400Same as dotlock, but if it fails because of permissions or because there
8401isn't enough disk space, just skip it.
8402@item fcntl
8403Use this if possible. Works with NFS too if lockd is used.
8404@item flock
8405May not exist in all systems. Doesn't work with NFS.
8406@item lockf
8407May not exist in all systems. Doesn't work with NFS.
8408@end table
8409
8410You can use multiple locking methods; if you do the order they're declared
8411in is important to avoid deadlocks if other MTAs/MUAs are using multiple
8412locking methods as well. Some operating systems don't allow using some of
8413them simultaneously.
8414@end deftypevr
8415
8416@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks
8417
8418@end deftypevr
8419
8420@deftypevr {@code{dovecot-configuration} parameter} string mbox-lock-timeout
8421Maximum time to wait for lock (all of them) before aborting.
8422Defaults to @samp{"5 mins"}.
8423@end deftypevr
8424
8425@deftypevr {@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout
8426If dotlock exists but the mailbox isn't modified in any way,
8427override the lock file after this much time.
8428Defaults to @samp{"2 mins"}.
8429@end deftypevr
8430
8431@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?
8432When mbox changes unexpectedly we have to fully read it to find out
8433what changed. If the mbox is large this can take a long time. Since
8434the change is usually just a newly appended mail, it'd be faster to
8435simply read the new mails. If this setting is enabled, Dovecot does
8436this but still safely fallbacks to re-reading the whole mbox file
8437whenever something in mbox isn't how it's expected to be. The only real
8438downside to this setting is that if some other MUA changes message
8439flags, Dovecot doesn't notice it immediately. Note that a full sync is
8440done with SELECT, EXAMINE, EXPUNGE and CHECK commands.
8441Defaults to @samp{#t}.
8442@end deftypevr
8443
8444@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?
8445Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT,
8446EXAMINE, EXPUNGE or CHECK commands. If this is set,
8447@samp{mbox-dirty-syncs} is ignored.
8448Defaults to @samp{#f}.
8449@end deftypevr
8450
8451@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?
8452Delay writing mbox headers until doing a full write sync (EXPUNGE
8453and CHECK commands and when closing the mailbox). This is especially
8454useful for POP3 where clients often delete all mails. The downside is
8455that our changes aren't immediately visible to other MUAs.
8456Defaults to @samp{#t}.
8457@end deftypevr
8458
8459@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size
8460If mbox size is smaller than this (e.g. 100k), don't write index
8461files. If an index file already exists it's still read, just not
8462updated.
8463Defaults to @samp{0}.
8464@end deftypevr
8465
8466@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size
8467Maximum dbox file size until it's rotated.
8468Defaults to @samp{2000000}.
8469@end deftypevr
8470
8471@deftypevr {@code{dovecot-configuration} parameter} string mdbox-rotate-interval
8472Maximum dbox file age until it's rotated. Typically in days. Day
8473begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check
8474disabled.
8475Defaults to @samp{"1d"}.
8476@end deftypevr
8477
8478@deftypevr {@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?
8479When creating new mdbox files, immediately preallocate their size to
8480@samp{mdbox-rotate-size}. This setting currently works only in Linux
8481with some filesystems (ext4, xfs).
8482Defaults to @samp{#f}.
8483@end deftypevr
8484
8485@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-dir
8486sdbox and mdbox support saving mail attachments to external files,
8487which also allows single instance storage for them. Other backends
8488don't support this for now.
8489
8490WARNING: This feature hasn't been tested much yet. Use at your own risk.
8491
8492Directory root where to store mail attachments. Disabled, if empty.
8493Defaults to @samp{""}.
8494@end deftypevr
8495
8496@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size
8497Attachments smaller than this aren't saved externally. It's also
8498possible to write a plugin to disable saving specific attachments
8499externally.
8500Defaults to @samp{128000}.
8501@end deftypevr
8502
8503@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-fs
8504Filesystem backend to use for saving attachments:
8505@table @code
8506@item posix
8507No SiS done by Dovecot (but this might help FS's own deduplication)
8508@item sis posix
8509SiS with immediate byte-by-byte comparison during saving
8510@item sis-queue posix
8511SiS with delayed comparison and deduplication.
8512@end table
8513Defaults to @samp{"sis posix"}.
8514@end deftypevr
8515
8516@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-hash
8517Hash format to use in attachment filenames. You can add any text and
8518variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}},
8519@code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be
8520truncated, e.g. @code{%@{sha256:80@}} returns only first 80 bits.
8521Defaults to @samp{"%@{sha1@}"}.
8522@end deftypevr
8523
8524@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-process-limit
8525
8526Defaults to @samp{100}.
8527@end deftypevr
8528
8529@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-client-limit
8530
8531Defaults to @samp{1000}.
8532@end deftypevr
8533
8534@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit
8535Default VSZ (virtual memory size) limit for service processes.
8536This is mainly intended to catch and kill processes that leak memory
8537before they eat up everything.
8538Defaults to @samp{256000000}.
8539@end deftypevr
8540
8541@deftypevr {@code{dovecot-configuration} parameter} string default-login-user
8542Login user is internally used by login processes. This is the most
8543untrusted user in Dovecot system. It shouldn't have access to anything
8544at all.
8545Defaults to @samp{"dovenull"}.
8546@end deftypevr
8547
8548@deftypevr {@code{dovecot-configuration} parameter} string default-internal-user
8549Internal user is used by unprivileged processes. It should be
8550separate from login user, so that login processes can't disturb other
8551processes.
8552Defaults to @samp{"dovecot"}.
8553@end deftypevr
8554
8555@deftypevr {@code{dovecot-configuration} parameter} string ssl?
8556SSL/TLS support: yes, no, required. <doc/wiki/SSL.txt>.
8557Defaults to @samp{"required"}.
8558@end deftypevr
8559
8560@deftypevr {@code{dovecot-configuration} parameter} string ssl-cert
8561PEM encoded X.509 SSL/TLS certificate (public key).
8562Defaults to @samp{"</etc/dovecot/default.pem"}.
8563@end deftypevr
8564
8565@deftypevr {@code{dovecot-configuration} parameter} string ssl-key
8566PEM encoded SSL/TLS private key. The key is opened before
8567dropping root privileges, so keep the key file unreadable by anyone but
8568root.
8569Defaults to @samp{"</etc/dovecot/private/default.pem"}.
8570@end deftypevr
8571
8572@deftypevr {@code{dovecot-configuration} parameter} string ssl-key-password
8573If key file is password protected, give the password here.
8574Alternatively give it when starting dovecot with -p parameter. Since
8575this file is often world-readable, you may want to place this setting
8576instead to a different.
8577Defaults to @samp{""}.
8578@end deftypevr
8579
8580@deftypevr {@code{dovecot-configuration} parameter} string ssl-ca
8581PEM encoded trusted certificate authority. Set this only if you
8582intend to use @samp{ssl-verify-client-cert? #t}. The file should
8583contain the CA certificate(s) followed by the matching
8584CRL(s). (e.g. @samp{ssl-ca </etc/ssl/certs/ca.pem}).
8585Defaults to @samp{""}.
8586@end deftypevr
8587
8588@deftypevr {@code{dovecot-configuration} parameter} boolean ssl-require-crl?
8589Require that CRL check succeeds for client certificates.
8590Defaults to @samp{#t}.
8591@end deftypevr
8592
8593@deftypevr {@code{dovecot-configuration} parameter} boolean ssl-verify-client-cert?
8594Request client to send a certificate. If you also want to require
8595it, set @samp{auth-ssl-require-client-cert? #t} in auth section.
8596Defaults to @samp{#f}.
8597@end deftypevr
8598
8599@deftypevr {@code{dovecot-configuration} parameter} string ssl-cert-username-field
8600Which field from certificate to use for username. commonName and
8601x500UniqueIdentifier are the usual choices. You'll also need to set
8602@samp{auth-ssl-username-from-cert? #t}.
8603Defaults to @samp{"commonName"}.
8604@end deftypevr
8605
8606@deftypevr {@code{dovecot-configuration} parameter} hours ssl-parameters-regenerate
8607How often to regenerate the SSL parameters file. Generation is
8608quite CPU intensive operation. The value is in hours, 0 disables
8609regeneration entirely.
8610Defaults to @samp{168}.
8611@end deftypevr
8612
8613@deftypevr {@code{dovecot-configuration} parameter} string ssl-protocols
8614SSL protocols to use.
8615Defaults to @samp{"!SSLv2"}.
8616@end deftypevr
8617
8618@deftypevr {@code{dovecot-configuration} parameter} string ssl-cipher-list
8619SSL ciphers to use.
8620Defaults to @samp{"ALL:!LOW:!SSLv2:!EXP:!aNULL"}.
8621@end deftypevr
8622
8623@deftypevr {@code{dovecot-configuration} parameter} string ssl-crypto-device
8624SSL crypto device to use, for valid values run "openssl engine".
8625Defaults to @samp{""}.
8626@end deftypevr
8627
8628@deftypevr {@code{dovecot-configuration} parameter} string postmaster-address
8629Address to use when sending rejection mails.
8630Default is postmaster@@<your domain>. %d expands to recipient domain.
8631Defaults to @samp{""}.
8632@end deftypevr
8633
8634@deftypevr {@code{dovecot-configuration} parameter} string hostname
8635Hostname to use in various parts of sent mails (e.g. in Message-Id)
8636and in LMTP replies. Default is the system's real hostname@@domain.
8637Defaults to @samp{""}.
8638@end deftypevr
8639
8640@deftypevr {@code{dovecot-configuration} parameter} boolean quota-full-tempfail?
8641If user is over quota, return with temporary failure instead of
8642bouncing the mail.
8643Defaults to @samp{#f}.
8644@end deftypevr
8645
8646@deftypevr {@code{dovecot-configuration} parameter} file-name sendmail-path
8647Binary to use for sending mails.
8648Defaults to @samp{"/usr/sbin/sendmail"}.
8649@end deftypevr
8650
8651@deftypevr {@code{dovecot-configuration} parameter} string submission-host
8652If non-empty, send mails via this SMTP host[:port] instead of
8653sendmail.
8654Defaults to @samp{""}.
8655@end deftypevr
8656
8657@deftypevr {@code{dovecot-configuration} parameter} string rejection-subject
8658Subject: header to use for rejection mails. You can use the same
8659variables as for @samp{rejection-reason} below.
8660Defaults to @samp{"Rejected: %s"}.
8661@end deftypevr
8662
8663@deftypevr {@code{dovecot-configuration} parameter} string rejection-reason
8664Human readable error message for rejection mails. You can use
8665variables:
8666
8667@table @code
8668@item %n
8669CRLF
8670@item %r
8671reason
8672@item %s
8673original subject
8674@item %t
8675recipient
8676@end table
8677Defaults to @samp{"Your message to <%t> was automatically rejected:%n%r"}.
8678@end deftypevr
8679
8680@deftypevr {@code{dovecot-configuration} parameter} string recipient-delimiter
8681Delimiter character between local-part and detail in email
8682address.
8683Defaults to @samp{"+"}.
8684@end deftypevr
8685
8686@deftypevr {@code{dovecot-configuration} parameter} string lda-original-recipient-header
8687Header where the original recipient address (SMTP's RCPT TO:
8688address) is taken from if not available elsewhere. With dovecot-lda -a
8689parameter overrides this. A commonly used header for this is
8690X-Original-To.
8691Defaults to @samp{""}.
8692@end deftypevr
8693
8694@deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?
8695Should saving a mail to a nonexistent mailbox automatically create
8696it?.
8697Defaults to @samp{#f}.
8698@end deftypevr
8699
8700@deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?
8701Should automatically created mailboxes be also automatically
8702subscribed?.
8703Defaults to @samp{#f}.
8704@end deftypevr
8705
8706@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length
8707Maximum IMAP command line length. Some clients generate very long
8708command lines with huge mailboxes, so you may need to raise this if you
8709get "Too long argument" or "IMAP command line too large" errors
8710often.
8711Defaults to @samp{64000}.
8712@end deftypevr
8713
8714@deftypevr {@code{dovecot-configuration} parameter} string imap-logout-format
8715IMAP logout format string:
8716@table @code
8717@item %i
8718total number of bytes read from client
8719@item %o
8720total number of bytes sent to client.
8721@end table
8722Defaults to @samp{"in=%i out=%o"}.
8723@end deftypevr
8724
8725@deftypevr {@code{dovecot-configuration} parameter} string imap-capability
8726Override the IMAP CAPABILITY response. If the value begins with '+',
8727add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
8728Defaults to @samp{""}.
8729@end deftypevr
8730
8731@deftypevr {@code{dovecot-configuration} parameter} string imap-idle-notify-interval
8732How long to wait between "OK Still here" notifications when client
8733is IDLEing.
8734Defaults to @samp{"2 mins"}.
8735@end deftypevr
8736
8737@deftypevr {@code{dovecot-configuration} parameter} string imap-id-send
8738ID field names and values to send to clients. Using * as the value
8739makes Dovecot use the default value. The following fields have default
8740values currently: name, version, os, os-version, support-url,
8741support-email.
8742Defaults to @samp{""}.
8743@end deftypevr
8744
8745@deftypevr {@code{dovecot-configuration} parameter} string imap-id-log
8746ID fields sent by client to log. * means everything.
8747Defaults to @samp{""}.
8748@end deftypevr
8749
8750@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds
8751Workarounds for various client bugs:
8752
8753@table @code
8754@item delay-newmail
8755Send EXISTS/RECENT new mail notifications only when replying to NOOP and
8756CHECK commands. Some clients ignore them otherwise, for example OSX
8757Mail (<v2.1). Outlook Express breaks more badly though, without this it
8758may show user "Message no longer in server" errors. Note that OE6
8759still breaks even with this workaround if synchronization is set to
8760"Headers Only".
8761
8762@item tb-extra-mailbox-sep
8763Thunderbird gets somehow confused with LAYOUT=fs (mbox and dbox) and
8764adds extra @samp{/} suffixes to mailbox names. This option causes Dovecot to
8765ignore the extra @samp{/} instead of treating it as invalid mailbox name.
8766
8767@item tb-lsub-flags
8768Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
8769This makes Thunderbird realize they aren't selectable and show them
8770greyed out, instead of only later giving "not selectable" popup error.
8771@end table
8772Defaults to @samp{()}.
8773@end deftypevr
8774
8775@deftypevr {@code{dovecot-configuration} parameter} string imap-urlauth-host
8776Host allowed in URLAUTH URLs sent by client. "*" allows all.
8777Defaults to @samp{""}.
8778@end deftypevr
8779
8780
8781Whew! Lots of configuration options. The nice thing about it though is
8782that GuixSD has a complete interface to Dovecot's configuration
8783language. This allows not only a nice way to declare configurations,
8784but also offers reflective capabilities as well: users can write code to
8785inspect and transform configurations from within Scheme.
8786
8787However, it could be that you just want to get a @code{dovecot.conf} up
8788and running. In that case, you can pass an
8789@code{opaque-dovecot-configuration} as the @code{#:config} paramter to
8790@code{dovecot-service}. As its name indicates, an opaque configuration
8791does not have easy reflective capabilities.
8792
8793Available @code{opaque-dovecot-configuration} fields are:
8794
8795@deftypevr {@code{opaque-dovecot-configuration} parameter} package dovecot
8796The dovecot package.
8797@end deftypevr
8798
8799@deftypevr {@code{opaque-dovecot-configuration} parameter} string string
8800The contents of the @code{dovecot.conf}, as a string.
8801@end deftypevr
8802
8803For example, if your @code{dovecot.conf} is just the empty string, you
8804could instantiate a dovecot service like this:
8805
8806@example
8807(dovecot-service #:config
8808 (opaque-dovecot-configuration
8809 (string "")))
8810@end example
8811
58724c48
DT
8812@node Web Services
8813@subsubsection Web Services
8814
8815The @code{(gnu services web)} module provides the following service:
8816
be1c2c54 8817@deffn {Scheme Procedure} nginx-service [#:nginx nginx] @
58724c48
DT
8818 [#:log-directory ``/var/log/nginx''] @
8819 [#:run-directory ``/var/run/nginx''] @
8820 [#:config-file]
8821
8822Return a service that runs @var{nginx}, the nginx web server.
8823
8824The nginx daemon loads its runtime configuration from @var{config-file}.
8825Log files are written to @var{log-directory} and temporary runtime data
8826files are written to @var{run-directory}. For proper operation, these
8827arguments should match what is in @var{config-file} to ensure that the
8828directories are created when the service is activated.
8829
8830@end deffn
8831
fe1a39d3
LC
8832@node Various Services
8833@subsubsection Various Services
8834
8835The @code{(gnu services lirc)} module provides the following service.
8836
be1c2c54 8837@deffn {Scheme Procedure} lirc-service [#:lirc lirc] @
fe1a39d3
LC
8838 [#:device #f] [#:driver #f] [#:config-file #f] @
8839 [#:extra-options '()]
8840Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that
8841decodes infrared signals from remote controls.
8842
8843Optionally, @var{device}, @var{driver} and @var{config-file}
8844(configuration file name) may be specified. See @command{lircd} manual
8845for details.
8846
8847Finally, @var{extra-options} is a list of additional command-line options
8848passed to @command{lircd}.
8849@end deffn
8850
8851
0ae8c15a
LC
8852@node Setuid Programs
8853@subsection Setuid Programs
8854
8855@cindex setuid programs
8856Some programs need to run with ``root'' privileges, even when they are
8857launched by unprivileged users. A notorious example is the
4d40227c
LC
8858@command{passwd} program, which users can run to change their
8859password, and which needs to access the @file{/etc/passwd} and
0ae8c15a
LC
8860@file{/etc/shadow} files---something normally restricted to root, for
8861obvious security reasons. To address that, these executables are
8862@dfn{setuid-root}, meaning that they always run with root privileges
8863(@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual},
f7e4ae7f 8864for more info about the setuid mechanism.)
0ae8c15a
LC
8865
8866The store itself @emph{cannot} contain setuid programs: that would be a
8867security issue since any user on the system can write derivations that
8868populate the store (@pxref{The Store}). Thus, a different mechanism is
8869used: instead of changing the setuid bit directly on files that are in
8870the store, we let the system administrator @emph{declare} which programs
8871should be setuid root.
8872
8873The @code{setuid-programs} field of an @code{operating-system}
8874declaration contains a list of G-expressions denoting the names of
8875programs to be setuid-root (@pxref{Using the Configuration System}).
8876For instance, the @command{passwd} program, which is part of the Shadow
8877package, can be designated by this G-expression (@pxref{G-Expressions}):
8878
8879@example
8880#~(string-append #$shadow "/bin/passwd")
8881@end example
8882
8883A default set of setuid programs is defined by the
8884@code{%setuid-programs} variable of the @code{(gnu system)} module.
8885
8886@defvr {Scheme Variable} %setuid-programs
8887A list of G-expressions denoting common programs that are setuid-root.
8888
8889The list includes commands such as @command{passwd}, @command{ping},
8890@command{su}, and @command{sudo}.
8891@end defvr
8892
8893Under the hood, the actual setuid programs are created in the
8894@file{/run/setuid-programs} directory at system activation time. The
8895files in this directory refer to the ``real'' binaries, which are in the
8896store.
8897
efb5e833
LC
8898@node X.509 Certificates
8899@subsection X.509 Certificates
8900
8901@cindex HTTPS, certificates
8902@cindex X.509 certificates
8903@cindex TLS
8904Web servers available over HTTPS (that is, HTTP over the transport-layer
8905security mechanism, TLS) send client programs an @dfn{X.509 certificate}
8906that the client can then use to @emph{authenticate} the server. To do
8907that, clients verify that the server's certificate is signed by a
8908so-called @dfn{certificate authority} (CA). But to verify the CA's
8909signature, clients must have first acquired the CA's certificate.
8910
8911Web browsers such as GNU@tie{}IceCat include their own set of CA
8912certificates, such that they are able to verify CA signatures
8913out-of-the-box.
8914
8915However, most other programs that can talk HTTPS---@command{wget},
8916@command{git}, @command{w3m}, etc.---need to be told where CA
8917certificates can be found.
8918
8919@cindex @code{nss-certs}
8920In GuixSD, this is done by adding a package that provides certificates
8921to the @code{packages} field of the @code{operating-system} declaration
8922(@pxref{operating-system Reference}). GuixSD includes one such package,
8923@code{nss-certs}, which is a set of CA certificates provided as part of
8924Mozilla's Network Security Services.
8925
8926Note that it is @emph{not} part of @var{%base-packages}, so you need to
8927explicitly add it. The @file{/etc/ssl/certs} directory, which is where
8928most applications and libraries look for certificates by default, points
8929to the certificates installed globally.
8930
8931Unprivileged users can also install their own certificate package in
8932their profile. A number of environment variables need to be defined so
8933that applications and libraries know where to find them. Namely, the
8934OpenSSL library honors the @code{SSL_CERT_DIR} and @code{SSL_CERT_FILE}
8935variables. Some applications add their own environment variables; for
8936instance, the Git version control system honors the certificate bundle
8937pointed to by the @code{GIT_SSL_CAINFO} environment variable.
8938
8939
996ed739
LC
8940@node Name Service Switch
8941@subsection Name Service Switch
8942
8943@cindex name service switch
8944@cindex NSS
8945The @code{(gnu system nss)} module provides bindings to the
8946configuration file of libc's @dfn{name service switch} or @dfn{NSS}
8947(@pxref{NSS Configuration File,,, libc, The GNU C Library Reference
8948Manual}). In a nutshell, the NSS is a mechanism that allows libc to be
8949extended with new ``name'' lookup methods for system databases, which
8950includes host names, service names, user accounts, and more (@pxref{Name
8951Service Switch, System Databases and Name Service Switch,, libc, The GNU
8952C Library Reference Manual}).
8953
8954The NSS configuration specifies, for each system database, which lookup
8955method is to be used, and how the various methods are chained
8956together---for instance, under which circumstances NSS should try the
8957next method in the list. The NSS configuration is given in the
8958@code{name-service-switch} field of @code{operating-system} declarations
8959(@pxref{operating-system Reference, @code{name-service-switch}}).
8960
4c9050c6
LC
8961@cindex nss-mdns
8962@cindex .local, host name lookup
996ed739 8963As an example, the declaration below configures the NSS to use the
4c9050c6
LC
8964@uref{http://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns}
8965back-end}, which supports host name lookups over multicast DNS (mDNS)
8966for host names ending in @code{.local}:
996ed739
LC
8967
8968@example
8969(name-service-switch
8970 (hosts (list %files ;first, check /etc/hosts
8971
8972 ;; If the above did not succeed, try
8973 ;; with 'mdns_minimal'.
8974 (name-service
8975 (name "mdns_minimal")
8976
8977 ;; 'mdns_minimal' is authoritative for
8978 ;; '.local'. When it returns "not found",
8979 ;; no need to try the next methods.
8980 (reaction (lookup-specification
8981 (not-found => return))))
8982
8983 ;; Then fall back to DNS.
8984 (name-service
8985 (name "dns"))
8986
8987 ;; Finally, try with the "full" 'mdns'.
8988 (name-service
8989 (name "mdns")))))
8990@end example
8991
15137a29
LC
8992Don't worry: the @code{%mdns-host-lookup-nss} variable (see below)
8993contains this configuration, so you won't have to type it if all you
8994want is to have @code{.local} host lookup working.
8995
4c9050c6
LC
8996Note that, in this case, in addition to setting the
8997@code{name-service-switch} of the @code{operating-system} declaration,
cc9c1f39
LC
8998you also need to use @code{avahi-service} (@pxref{Networking Services,
8999@code{avahi-service}}), or @var{%desktop-services}, which includes it
9000(@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible
9001to the name service cache daemon (@pxref{Base Services,
9002@code{nscd-service}}).
15137a29
LC
9003
9004For convenience, the following variables provide typical NSS
9005configurations.
9006
9007@defvr {Scheme Variable} %default-nss
9008This is the default name service switch configuration, a
9009@code{name-service-switch} object.
9010@end defvr
9011
9012@defvr {Scheme Variable} %mdns-host-lookup-nss
9013This is the name service switch configuration with support for host name
9014lookup over multicast DNS (mDNS) for host names ending in @code{.local}.
9015@end defvr
4c9050c6 9016
996ed739
LC
9017The reference for name service switch configuration is given below. It
9018is a direct mapping of the C library's configuration file format, so
9019please refer to the C library manual for more information (@pxref{NSS
9020Configuration File,,, libc, The GNU C Library Reference Manual}).
9021Compared to libc's NSS configuration file format, it has the advantage
9022not only of adding this warm parenthetic feel that we like, but also
9023static checks: you'll know about syntax errors and typos as soon as you
9024run @command{guix system}.
9025
996ed739
LC
9026@deftp {Data Type} name-service-switch
9027
9028This is the data type representation the configuration of libc's name
9029service switch (NSS). Each field below represents one of the supported
9030system databases.
9031
9032@table @code
9033@item aliases
9034@itemx ethers
9035@itemx group
9036@itemx gshadow
9037@itemx hosts
9038@itemx initgroups
9039@itemx netgroup
9040@itemx networks
9041@itemx password
9042@itemx public-key
9043@itemx rpc
9044@itemx services
9045@itemx shadow
9046The system databases handled by the NSS. Each of these fields must be a
9047list of @code{<name-service>} objects (see below.)
9048@end table
9049@end deftp
9050
9051@deftp {Data Type} name-service
9052
9053This is the data type representing an actual name service and the
9054associated lookup action.
9055
9056@table @code
9057@item name
9058A string denoting the name service (@pxref{Services in the NSS
9059configuration,,, libc, The GNU C Library Reference Manual}).
9060
4aee6e60
LC
9061Note that name services listed here must be visible to nscd. This is
9062achieved by passing the @code{#:name-services} argument to
9063@code{nscd-service} the list of packages providing the needed name
9064services (@pxref{Base Services, @code{nscd-service}}).
9065
996ed739
LC
9066@item reaction
9067An action specified using the @code{lookup-specification} macro
9068(@pxref{Actions in the NSS configuration,,, libc, The GNU C Library
9069Reference Manual}). For example:
9070
9071@example
9072(lookup-specification (unavailable => continue)
9073 (success => return))
9074@end example
9075@end table
9076@end deftp
0ae8c15a 9077
fd1b1fa2
LC
9078@node Initial RAM Disk
9079@subsection Initial RAM Disk
9080
9081@cindex initial RAM disk (initrd)
9082@cindex initrd (initial RAM disk)
9083For bootstrapping purposes, the Linux-Libre kernel is passed an
9084@dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary
9085root file system, as well as an initialization script. The latter is
9086responsible for mounting the real root file system, and for loading any
9087kernel modules that may be needed to achieve that.
9088
9089The @code{initrd} field of an @code{operating-system} declaration allows
9090you to specify which initrd you would like to use. The @code{(gnu
9091system linux-initrd)} module provides two ways to build an initrd: the
9092high-level @code{base-initrd} procedure, and the low-level
9093@code{expression->initrd} procedure.
9094
9095The @code{base-initrd} procedure is intended to cover most common uses.
9096For example, if you want to add a bunch of kernel modules to be loaded
9097at boot time, you can define the @code{initrd} field of the operating
9098system declaration like this:
9099
9100@example
52ac153e 9101(initrd (lambda (file-systems . rest)
027981d6
LC
9102 ;; Create a standard initrd that has modules "foo.ko"
9103 ;; and "bar.ko", as well as their dependencies, in
9104 ;; addition to the modules available by default.
52ac153e 9105 (apply base-initrd file-systems
027981d6 9106 #:extra-modules '("foo" "bar")
52ac153e 9107 rest)))
fd1b1fa2
LC
9108@end example
9109
52ac153e
LC
9110The @code{base-initrd} procedure also handles common use cases that
9111involves using the system as a QEMU guest, or as a ``live'' system whose
9112root file system is volatile.
fd1b1fa2 9113
e90cf6c1
LC
9114The initial RAM disk produced by @code{base-initrd} honors several
9115options passed on the Linux kernel command line (that is, arguments
9116passed @i{via} GRUB's @code{linux} command, or with QEMU's
9117@code{-append} option), notably:
9118
9119@table @code
9120@item --load=@var{boot}
9121Tell the initial RAM disk to load @var{boot}, a file containing a Scheme
9122program, once it has mounted the root file system.
9123
9124GuixSD uses this option to yield control to a boot program that runs the
dd17bc38 9125service activation programs and then spawns the GNU@tie{}Shepherd, the
e90cf6c1
LC
9126initialization system.
9127
9128@item --root=@var{root}
9129Mount @var{root} as the root file system. @var{root} can be a device
9130device name like @code{/dev/sda1}, a partition label, or a partition
9131UUID.
9132
9133@item --system=@var{system}
9134Have @file{/run/booted-system} and @file{/run/current-system} point to
9135@var{system}.
9136
9137@item modprobe.blacklist=@var{modules}@dots{}
9138@cindex module, black-listing
9139@cindex black list, of kernel modules
9140Instruct the initial RAM disk as well as the @command{modprobe} command
9141(from the kmod package) to refuse to load @var{modules}. @var{modules}
9142must be a comma-separated list of module names---e.g.,
9143@code{usbkbd,9pnet}.
9144
9145@item --repl
9146Start a read-eval-print loop (REPL) from the initial RAM disk before it
9147tries to load kernel modules and to mount the root file system. Our
9148marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will
9149love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference
9150Manual}, for more information on Guile's REPL.
9151
9152@end table
9153
9154Now that you know all the features that initial RAM disks produced by
9155@code{base-initrd} provide, here is how to use it and customize it
9156further.
9157
fd1b1fa2 9158@deffn {Monadic Procedure} base-initrd @var{file-systems} @
9059b97d 9159 [#:qemu-networking? #f] [#:virtio? #t] [#:volatile-root? #f] @
52ac153e 9160 [#:extra-modules '()] [#:mapped-devices '()]
fd1b1fa2
LC
9161Return a monadic derivation that builds a generic initrd. @var{file-systems} is
9162a list of file-systems to be mounted by the initrd, possibly in addition to
9163the root file system specified on the kernel command line via @code{--root}.
52ac153e
LC
9164@var{mapped-devices} is a list of device mappings to realize before
9165@var{file-systems} are mounted (@pxref{Mapped Devices}).
fd1b1fa2
LC
9166
9167When @var{qemu-networking?} is true, set up networking with the standard QEMU
9168parameters. When @var{virtio?} is true, load additional modules so the initrd can
9169be used as a QEMU guest with para-virtualized I/O drivers.
9170
9171When @var{volatile-root?} is true, the root file system is writable but any changes
9172to it are lost.
9173
9174The initrd is automatically populated with all the kernel modules necessary
9175for @var{file-systems} and for the given options. However, additional kernel
9176modules can be listed in @var{extra-modules}. They will be added to the initrd, and
9177loaded at boot time in the order in which they appear.
9178@end deffn
9179
9180Needless to say, the initrds we produce and use embed a
9181statically-linked Guile, and the initialization program is a Guile
9182program. That gives a lot of flexibility. The
9183@code{expression->initrd} procedure builds such an initrd, given the
9184program to run in that initrd.
9185
9186@deffn {Monadic Procedure} expression->initrd @var{exp} @
9187 [#:guile %guile-static-stripped] [#:name "guile-initrd"] @
42d10464 9188 [#:modules '()]
fd1b1fa2
LC
9189Return a derivation that builds a Linux initrd (a gzipped cpio archive)
9190containing @var{guile} and that evaluates @var{exp}, a G-expression,
df650fa8
LC
9191upon booting. All the derivations referenced by @var{exp} are
9192automatically copied to the initrd.
fd1b1fa2 9193
42d10464
LC
9194@var{modules} is a list of Guile module names to be embedded in the
9195initrd.
fd1b1fa2
LC
9196@end deffn
9197
88faf933
LC
9198@node GRUB Configuration
9199@subsection GRUB Configuration
9200
9201@cindex GRUB
9202@cindex boot loader
9203
9204The operating system uses GNU@tie{}GRUB as its boot loader
9205(@pxref{Overview, overview of GRUB,, grub, GNU GRUB Manual}). It is
9206configured using @code{grub-configuration} declarations. This data type
9207is exported by the @code{(gnu system grub)} module, and described below.
9208
9209@deftp {Data Type} grub-configuration
9210The type of a GRUB configuration declaration.
9211
9212@table @asis
9213
9214@item @code{device}
9215This is a string denoting the boot device. It must be a device name
9216understood by the @command{grub-install} command, such as
9217@code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub,
9218GNU GRUB Manual}).
9219
9220@item @code{menu-entries} (default: @code{()})
9221A possibly empty list of @code{menu-entry} objects (see below), denoting
9222entries to appear in the GRUB boot menu, in addition to the current
9223system entry and the entry pointing to previous system generations.
9224
9225@item @code{default-entry} (default: @code{0})
9226The index of the default boot menu entry. Index 0 is for the current
9227system's entry.
9228
9229@item @code{timeout} (default: @code{5})
9230The number of seconds to wait for keyboard input before booting. Set to
92310 to boot immediately, and to -1 to wait indefinitely.
9232
9233@item @code{theme} (default: @var{%default-theme})
9234The @code{grub-theme} object describing the theme to use.
9235@end table
9236
9237@end deftp
9238
9239Should you want to list additional boot menu entries @i{via} the
9240@code{menu-entries} field above, you will need to create them with the
9241@code{menu-entry} form:
9242
9243@deftp {Data Type} menu-entry
9244The type of an entry in the GRUB boot menu.
9245
9246@table @asis
9247
9248@item @code{label}
35ed9306 9249The label to show in the menu---e.g., @code{"GNU"}.
88faf933
LC
9250
9251@item @code{linux}
9252The Linux kernel to boot.
9253
9254@item @code{linux-arguments} (default: @code{()})
9255The list of extra Linux kernel command-line arguments---e.g.,
9256@code{("console=ttyS0")}.
9257
9258@item @code{initrd}
9259A G-Expression or string denoting the file name of the initial RAM disk
9260to use (@pxref{G-Expressions}).
9261
9262@end table
9263@end deftp
9264
9265@c FIXME: Write documentation once it's stable.
9266Themes are created using the @code{grub-theme} form, which is not
9267documented yet.
9268
9269@defvr {Scheme Variable} %default-theme
9270This is the default GRUB theme used by the operating system, with a
9271fancy background image displaying the GNU and Guix logos.
9272@end defvr
9273
9274
cf4a9129
LC
9275@node Invoking guix system
9276@subsection Invoking @code{guix system}
0918e64a 9277
cf4a9129
LC
9278Once you have written an operating system declaration, as seen in the
9279previous section, it can be @dfn{instantiated} using the @command{guix
9280system} command. The synopsis is:
4af2447e 9281
cf4a9129
LC
9282@example
9283guix system @var{options}@dots{} @var{action} @var{file}
9284@end example
4af2447e 9285
cf4a9129
LC
9286@var{file} must be the name of a file containing an
9287@code{operating-system} declaration. @var{action} specifies how the
9288operating system is instantiate. Currently the following values are
9289supported:
4af2447e 9290
cf4a9129
LC
9291@table @code
9292@item reconfigure
9293Build the operating system described in @var{file}, activate it, and
9294switch to it@footnote{This action is usable only on systems already
65797bff 9295running GuixSD.}.
4af2447e 9296
cf4a9129
LC
9297This effects all the configuration specified in @var{file}: user
9298accounts, system services, global package list, setuid programs, etc.
240b57f0
LC
9299The command starts system services specified in @var{file} that are not
9300currently running; if a service is currently running, it does not
9301attempt to upgrade it since it would not be possible without stopping it
9302first.
4af2447e 9303
cf4a9129
LC
9304It also adds a GRUB menu entry for the new OS configuration, and moves
9305entries for older configurations to a submenu---unless
9306@option{--no-grub} is passed.
4af2447e 9307
240b57f0 9308@quotation Note
bf2479c7
LC
9309@c The paragraph below refers to the problem discussed at
9310@c <http://lists.gnu.org/archive/html/guix-devel/2014-08/msg00057.html>.
9311It is highly recommended to run @command{guix pull} once before you run
9312@command{guix system reconfigure} for the first time (@pxref{Invoking
9313guix pull}). Failing to do that you would see an older version of Guix
9314once @command{reconfigure} has completed.
240b57f0 9315@end quotation
bf2479c7 9316
cf4a9129
LC
9317@item build
9318Build the operating system's derivation, which includes all the
9319configuration files and programs needed to boot and run the system.
9320This action does not actually install anything.
113daf62 9321
cf4a9129
LC
9322@item init
9323Populate the given directory with all the files necessary to run the
9324operating system specified in @var{file}. This is useful for first-time
4705641f 9325installations of GuixSD. For instance:
113daf62
LC
9326
9327@example
cf4a9129 9328guix system init my-os-config.scm /mnt
113daf62
LC
9329@end example
9330
cf4a9129
LC
9331copies to @file{/mnt} all the store items required by the configuration
9332specified in @file{my-os-config.scm}. This includes configuration
9333files, packages, and so on. It also creates other essential files
9334needed for the system to operate correctly---e.g., the @file{/etc},
9335@file{/var}, and @file{/run} directories, and the @file{/bin/sh} file.
113daf62 9336
cf4a9129
LC
9337This command also installs GRUB on the device specified in
9338@file{my-os-config}, unless the @option{--no-grub} option was passed.
113daf62 9339
cf4a9129
LC
9340@item vm
9341@cindex virtual machine
0276f697 9342@cindex VM
f535dcbe 9343@anchor{guix system vm}
cf4a9129
LC
9344Build a virtual machine that contain the operating system declared in
9345@var{file}, and return a script to run that virtual machine (VM).
810568b3 9346Arguments given to the script are passed as is to QEMU.
113daf62 9347
cf4a9129 9348The VM shares its store with the host system.
113daf62 9349
0276f697
LC
9350Additional file systems can be shared between the host and the VM using
9351the @code{--share} and @code{--expose} command-line options: the former
9352specifies a directory to be shared with write access, while the latter
9353provides read-only access to the shared directory.
9354
9355The example below creates a VM in which the user's home directory is
9356accessible read-only, and where the @file{/exchange} directory is a
9357read-write mapping of the host's @file{$HOME/tmp}:
9358
9359@example
9360guix system vm my-config.scm \
9361 --expose=$HOME --share=$HOME/tmp=/exchange
9362@end example
9363
6aa260af
LC
9364On GNU/Linux, the default is to boot directly to the kernel; this has
9365the advantage of requiring only a very tiny root disk image since the
9366host's store can then be mounted.
9367
9368The @code{--full-boot} option forces a complete boot sequence, starting
9369with the bootloader. This requires more disk space since a root image
9370containing at least the kernel, initrd, and bootloader data files must
9371be created. The @code{--image-size} option can be used to specify the
9372image's size.
ab11f0be 9373
cf4a9129
LC
9374@item vm-image
9375@itemx disk-image
9376Return a virtual machine or disk image of the operating system declared
9377in @var{file} that stands alone. Use the @option{--image-size} option
9378to specify the size of the image.
113daf62 9379
cf4a9129 9380When using @code{vm-image}, the returned image is in qcow2 format, which
97d76250
LF
9381the QEMU emulator can efficiently use. @xref{Running GuixSD in a VM},
9382for more information on how to run the image in a virtual machine.
113daf62 9383
cf4a9129
LC
9384When using @code{disk-image}, a raw disk image is produced; it can be
9385copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is
9386the device corresponding to a USB stick, one can copy the image on it
9387using the following command:
113daf62 9388
cf4a9129
LC
9389@example
9390# dd if=$(guix system disk-image my-os.scm) of=/dev/sdc
9391@end example
113daf62 9392
1c8a81b1
DT
9393@item container
9394Return a script to run the operating system declared in @var{file}
9395within a container. Containers are a set of lightweight isolation
9396mechanisms provided by the kernel Linux-libre. Containers are
9397substantially less resource-demanding than full virtual machines since
9398the kernel, shared objects, and other resources can be shared with the
9399host system; this also means they provide thinner isolation.
9400
9401Currently, the script must be run as root in order to support more than
9402a single user and group. The container shares its store with the host
9403system.
9404
9405As with the @code{vm} action (@pxref{guix system vm}), additional file
9406systems to be shared between the host and container can be specified
9407using the @option{--share} and @option{--expose} options:
9408
9409@example
9410guix system container my-config.scm \
9411 --expose=$HOME --share=$HOME/tmp=/exchange
9412@end example
9413
0f252e26 9414@quotation Note
cfd35b4e 9415This option requires Linux-libre 3.19 or newer.
0f252e26
DT
9416@end quotation
9417
cf4a9129 9418@end table
113daf62 9419
ccd7158d
LC
9420@var{options} can contain any of the common build options (@pxref{Common
9421Build Options}). In addition, @var{options} can contain one of the
9422following:
113daf62 9423
cf4a9129
LC
9424@table @option
9425@item --system=@var{system}
9426@itemx -s @var{system}
9427Attempt to build for @var{system} instead of the host's system type.
9428This works as per @command{guix build} (@pxref{Invoking guix build}).
113daf62 9429
f3f427c2
LC
9430@item --derivation
9431@itemx -d
9432Return the derivation file name of the given operating system without
9433building anything.
9434
cf4a9129
LC
9435@item --image-size=@var{size}
9436For the @code{vm-image} and @code{disk-image} actions, create an image
9437of the given @var{size}. @var{size} may be a number of bytes, or it may
4a44d7bb
LC
9438include a unit as a suffix (@pxref{Block size, size specifications,,
9439coreutils, GNU Coreutils}).
db030303
LC
9440
9441@item --on-error=@var{strategy}
9442Apply @var{strategy} when an error occurs when reading @var{file}.
9443@var{strategy} may be one of the following:
9444
9445@table @code
9446@item nothing-special
9447Report the error concisely and exit. This is the default strategy.
9448
9449@item backtrace
9450Likewise, but also display a backtrace.
9451
9452@item debug
9453Report the error and enter Guile's debugger. From there, you can run
9454commands such as @code{,bt} to get a backtrace, @code{,locals} to
9455display local variable values, and more generally inspect the program's
9456state. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for
9457a list of available debugging commands.
9458@end table
113daf62 9459@end table
113daf62 9460
cf4a9129
LC
9461Note that all the actions above, except @code{build} and @code{init},
9462rely on KVM support in the Linux-Libre kernel. Specifically, the
9463machine should have hardware virtualization support, the corresponding
9464KVM kernel module should be loaded, and the @file{/dev/kvm} device node
9465must exist and be readable and writable by the user and by the daemon's
9466build users.
8451a568 9467
65797bff
LC
9468Once you have built, configured, re-configured, and re-re-configured
9469your GuixSD installation, you may find it useful to list the operating
9470system generations available on disk---and that you can choose from the
9471GRUB boot menu:
9472
9473@table @code
9474
9475@item list-generations
9476List a summary of each generation of the operating system available on
9477disk, in a human-readable way. This is similar to the
9478@option{--list-generations} option of @command{guix package}
9479(@pxref{Invoking guix package}).
9480
9481Optionally, one can specify a pattern, with the same syntax that is used
9482in @command{guix package --list-generations}, to restrict the list of
9483generations displayed. For instance, the following command displays
9484generations up to 10-day old:
9485
9486@example
9487$ guix system list-generations 10d
9488@end example
9489
9490@end table
9491
d6c3267a
LC
9492The @command{guix system} command has even more to offer! The following
9493sub-commands allow you to visualize how your system services relate to
9494each other:
9495
9496@anchor{system-extension-graph}
9497@table @code
9498
9499@item extension-graph
9500Emit in Dot/Graphviz format to standard output the @dfn{service
9501extension graph} of the operating system defined in @var{file}
9502(@pxref{Service Composition}, for more information on service
9503extensions.)
9504
9505The command:
9506
9507@example
9508$ guix system extension-graph @var{file} | dot -Tpdf > services.pdf
9509@end example
9510
9511produces a PDF file showing the extension relations among services.
9512
710fa231
AK
9513@anchor{system-shepherd-graph}
9514@item shepherd-graph
6f305ea5 9515Emit in Dot/Graphviz format to standard output the @dfn{dependency
dd17bc38
AK
9516graph} of shepherd services of the operating system defined in
9517@var{file}. @xref{Shepherd Services}, for more information and for an
9518example graph.
6f305ea5 9519
d6c3267a
LC
9520@end table
9521
97d76250
LF
9522@node Running GuixSD in a VM
9523@subsection Running GuixSD in a virtual machine
9524
9525One way to run GuixSD in a virtual machine (VM) is to build a GuixSD
9526virtual machine image using @command{guix system vm-image}
9527(@pxref{Invoking guix system}). The returned image is in qcow2 format,
9528which the @uref{http://qemu.org/, QEMU emulator} can efficiently use.
9529
9530To run the image in QEMU, copy it out of the store (@pxref{The Store})
9531and give yourself permission to write to the copy. When invoking QEMU,
9532you must choose a system emulator that is suitable for your hardware
9533platform. Here is a minimal QEMU invocation that will boot the result
9534of @command{guix system vm-image} on x86_64 hardware:
9535
9536@example
9537$ qemu-system-x86_64 \
9538 -net user -net nic,model=virtio \
9539 -enable-kvm -m 256 /tmp/qemu-image
9540@end example
9541
9542Here is what each of these options means:
9543
9544@table @code
9545@item qemu-system-x86_64
9546This specifies the hardware platform to emulate. This should match the
9547host.
9548
9549@item -net user
9550Enable the unprivileged user-mode network stack. The guest OS can
9551access the host but not vice versa. This is the simplest way to get the
9552guest OS online. If you don't choose a network stack, the boot will
9553fail.
9554
9555@item -net nic,model=virtio
9556You must create a network interface of a given model. If you don't
9557create a NIC, the boot will fail. Assuming your hardware platform is
9558x86_64, you can get a list of available NIC models by running
9559@command{qemu-system-x86_64 -net nic,model=help}.
9560
9561@item -enable-kvm
9562If your system has hardware virtualization extensions, enabling the
9563Linux kernel's virtual machine support (KVM) will make things run
9564faster.
9565
9566@item -m 256
9567RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB,
9568which may be insufficent for some operations.
9569
9570@item /tmp/qemu-image
9571The file name of the qcow2 image.
9572@end table
d6c3267a 9573
cf4a9129
LC
9574@node Defining Services
9575@subsection Defining Services
8451a568 9576
eb524192 9577The previous sections show the available services and how one can combine
0adfe95a
LC
9578them in an @code{operating-system} declaration. But how do we define
9579them in the first place? And what is a service anyway?
8451a568 9580
0adfe95a
LC
9581@menu
9582* Service Composition:: The model for composing services.
9583* Service Types and Services:: Types and services.
9584* Service Reference:: API reference.
dd17bc38 9585* Shepherd Services:: A particular type of service.
0adfe95a
LC
9586@end menu
9587
9588@node Service Composition
9589@subsubsection Service Composition
9590
9591@cindex services
9592@cindex daemons
9593Here we define a @dfn{service} as, broadly, something that extends the
9594operating system's functionality. Often a service is a process---a
9595@dfn{daemon}---started when the system boots: a secure shell server, a
9596Web server, the Guix build daemon, etc. Sometimes a service is a daemon
9597whose execution can be triggered by another daemon---e.g., an FTP server
9598started by @command{inetd} or a D-Bus service activated by
9599@command{dbus-daemon}. Occasionally, a service does not map to a
9600daemon. For instance, the ``account'' service collects user accounts
9601and makes sure they exist when the system runs; the ``udev'' service
9602collects device management rules and makes them available to the eudev
9603daemon; the @file{/etc} service populates the system's @file{/etc}
9604directory.
9605
d6c3267a 9606@cindex service extensions
0adfe95a 9607GuixSD services are connected by @dfn{extensions}. For instance, the
dd17bc38
AK
9608secure shell service @emph{extends} the Shepherd---GuixSD's
9609initialization system, running as PID@tie{}1---by giving it the command
9610lines to start and stop the secure shell daemon (@pxref{Networking
9611Services, @code{lsh-service}}); the UPower service extends the D-Bus
9612service by passing it its @file{.service} specification, and extends the
9613udev service by passing it device management rules (@pxref{Desktop
9614Services, @code{upower-service}}); the Guix daemon service extends the
9615Shepherd by passing it the command lines to start and stop the daemon,
9616and extends the account service by passing it a list of required build
9617user accounts (@pxref{Base Services}).
0adfe95a
LC
9618
9619All in all, services and their ``extends'' relations form a directed
9620acyclic graph (DAG). If we represent services as boxes and extensions
9621as arrows, a typical system might provide something like this:
9622
9623@image{images/service-graph,,5in,Typical service extension graph.}
9624
d62e201c
LC
9625@cindex system service
9626At the bottom, we see the @dfn{system service}, which produces the
9627directory containing everything to run and boot the system, as returned
9628by the @command{guix system build} command. @xref{Service Reference},
9629to learn about the other service types shown here.
d6c3267a
LC
9630@xref{system-extension-graph, the @command{guix system extension-graph}
9631command}, for information on how to generate this representation for a
9632particular operating system definition.
0adfe95a
LC
9633
9634@cindex service types
9635Technically, developers can define @dfn{service types} to express these
9636relations. There can be any number of services of a given type on the
9637system---for instance, a system running two instances of the GNU secure
9638shell server (lsh) has two instances of @var{lsh-service-type}, with
9639different parameters.
9640
9641The following section describes the programming interface for service
9642types and services.
9643
9644@node Service Types and Services
9645@subsubsection Service Types and Services
9646
9647A @dfn{service type} is a node in the DAG described above. Let us start
9648with a simple example, the service type for the Guix build daemon
9649(@pxref{Invoking guix-daemon}):
9650
9651@example
9652(define guix-service-type
9653 (service-type
9654 (name 'guix)
9655 (extensions
d4053c71 9656 (list (service-extension shepherd-root-service-type guix-shepherd-service)
0adfe95a
LC
9657 (service-extension account-service-type guix-accounts)
9658 (service-extension activation-service-type guix-activation)))))
9659@end example
8451a568 9660
cf4a9129 9661@noindent
0adfe95a
LC
9662It defines a two things:
9663
9664@enumerate
9665@item
9666A name, whose sole purpose is to make inspection and debugging easier.
9667
9668@item
9669A list of @dfn{service extensions}, where each extension designates the
9670target service type and a procedure that, given the service's
9671parameters, returns a list of object to extend the service of that type.
9672
9673Every service type has at least one service extension. The only
9674exception is the @dfn{boot service type}, which is the ultimate service.
9675@end enumerate
9676
9677In this example, @var{guix-service-type} extends three services:
9678
9679@table @var
d4053c71
AK
9680@item shepherd-root-service-type
9681The @var{guix-shepherd-service} procedure defines how the Shepherd
9682service is extended. Namely, it returns a @code{<shepherd-service>}
9683object that defines how @command{guix-daemon} is started and stopped
9684(@pxref{Shepherd Services}).
0adfe95a
LC
9685
9686@item account-service-type
9687This extension for this service is computed by @var{guix-accounts},
9688which returns a list of @code{user-group} and @code{user-account}
9689objects representing the build user accounts (@pxref{Invoking
9690guix-daemon}).
9691
9692@item activation-service-type
9693Here @var{guix-activation} is a procedure that returns a gexp, which is
9694a code snippet to run at ``activation time''---e.g., when the service is
9695booted.
9696@end table
9697
9698A service of this type is instantiated like this:
9699
9700@example
9701(service guix-service-type
9702 (guix-configuration
9703 (build-accounts 5)
9704 (use-substitutes? #f)))
9705@end example
9706
9707The second argument to the @code{service} form is a value representing
9708the parameters of this specific service instance.
9709@xref{guix-configuration-type, @code{guix-configuration}}, for
9710information about the @code{guix-configuration} data type.
9711
9712@var{guix-service-type} is quite simple because it extends other
9713services but is not extensible itself.
9714
9715@c @subsubsubsection Extensible Service Types
9716
9717The service type for an @emph{extensible} service looks like this:
9718
9719@example
9720(define udev-service-type
9721 (service-type (name 'udev)
9722 (extensions
d4053c71
AK
9723 (list (service-extension shepherd-root-service-type
9724 udev-shepherd-service)))
0adfe95a
LC
9725
9726 (compose concatenate) ;concatenate the list of rules
9727 (extend (lambda (config rules)
9728 (match config
9729 (($ <udev-configuration> udev initial-rules)
9730 (udev-configuration
9731 (udev udev) ;the udev package to use
9732 (rules (append initial-rules rules)))))))))
9733@end example
9734
9735This is the service type for the
9736@uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device
9737management daemon}. Compared to the previous example, in addition to an
d4053c71 9738extension of @var{shepherd-root-service-type}, we see two new fields:
0adfe95a
LC
9739
9740@table @code
9741@item compose
9742This is the procedure to @dfn{compose} the list of extensions to
9743services of this type.
9744
9745Services can extend the udev service by passing it lists of rules; we
9746compose those extensions simply by concatenating them.
9747
9748@item extend
9749This procedure defines how the service's value is @dfn{extended} with
9750the composition of the extensions.
9751
9752Udev extensions are composed into a list of rules, but the udev service
9753value is itself a @code{<udev-configuration>} record. So here, we
9754extend that record by appending the list of rules is contains to the
9755list of contributed rules.
9756@end table
9757
9758There can be only one instance of an extensible service type such as
9759@var{udev-service-type}. If there were more, the
9760@code{service-extension} specifications would be ambiguous.
9761
9762Still here? The next section provides a reference of the programming
9763interface for services.
9764
9765@node Service Reference
9766@subsubsection Service Reference
9767
9768We have seen an overview of service types (@pxref{Service Types and
9769Services}). This section provides a reference on how to manipulate
9770services and service types. This interface is provided by the
9771@code{(gnu services)} module.
9772
9773@deffn {Scheme Procedure} service @var{type} @var{value}
9774Return a new service of @var{type}, a @code{<service-type>} object (see
9775below.) @var{value} can be any object; it represents the parameters of
9776this particular service instance.
9777@end deffn
9778
9779@deffn {Scheme Procedure} service? @var{obj}
9780Return true if @var{obj} is a service.
9781@end deffn
8451a568 9782
0adfe95a
LC
9783@deffn {Scheme Procedure} service-kind @var{service}
9784Return the type of @var{service}---i.e., a @code{<service-type>} object.
9785@end deffn
9786
9787@deffn {Scheme Procedure} service-parameters @var{service}
9788Return the value associated with @var{service}. It represents its
9789parameters.
9790@end deffn
9791
9792Here is an example of how a service is created and manipulated:
9793
9794@example
9795(define s
9796 (service nginx-service-type
9797 (nginx-configuration
9798 (nginx nginx)
9799 (log-directory log-directory)
9800 (run-directory run-directory)
9801 (file config-file))))
9802
9803(service? s)
9804@result{} #t
9805
9806(eq? (service-kind s) nginx-service-type)
9807@result{} #t
9808@end example
9809
cd6f6c22
LC
9810The @code{modify-services} form provides a handy way to change the
9811parameters of some of the services of a list such as
9812@var{%base-services} (@pxref{Base Services, @code{%base-services}}). Of
9813course, you could always use standard list combinators such as
9814@code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,,
9815guile, GNU Guile Reference Manual}); @code{modify-services} simply
9816provides a more concise form for this common pattern.
9817
9818@deffn {Scheme Syntax} modify-services @var{services} @
9819 (@var{type} @var{variable} => @var{body}) @dots{}
9820
9821Modify the services listed in @var{services} according to the given
9822clauses. Each clause has the form:
9823
9824@example
9825(@var{type} @var{variable} => @var{body})
9826@end example
9827
9828where @var{type} is a service type, such as @var{guix-service-type}, and
9829@var{variable} is an identifier that is bound within @var{body} to the
9830value of the service of that @var{type}. @xref{Using the Configuration
9831System}, for an example.
9832
9833This is a shorthand for:
9834
9835@example
9836(map (lambda (service) @dots{}) @var{services})
9837@end example
9838@end deffn
9839
9840Next comes the programming interface for service types. This is
9841something you want to know when writing new service definitions, but not
9842necessarily when simply looking for ways to customize your
9843@code{operating-system} declaration.
9844
0adfe95a
LC
9845@deftp {Data Type} service-type
9846@cindex service type
9847This is the representation of a @dfn{service type} (@pxref{Service Types
9848and Services}).
9849
9850@table @asis
9851@item @code{name}
9852This is a symbol, used only to simplify inspection and debugging.
9853
9854@item @code{extensions}
9855A non-empty list of @code{<service-extension>} objects (see below.)
9856
9857@item @code{compose} (default: @code{#f})
9858If this is @code{#f}, then the service type denotes services that cannot
9859be extended---i.e., services that do not receive ``values'' from other
9860services.
9861
9862Otherwise, it must be a one-argument procedure. The procedure is called
9863by @code{fold-services} and is passed a list of values collected from
9864extensions. It must return a value that is a valid parameter value for
9865the service instance.
9866
9867@item @code{extend} (default: @code{#f})
9868If this is @code{#f}, services of this type cannot be extended.
9869
9870Otherwise, it must be a two-argument procedure: @code{fold-services}
9871calls it, passing it the service's initial value as the first argument
9872and the result of applying @code{compose} to the extension values as the
9873second argument.
9874@end table
9875
9876@xref{Service Types and Services}, for examples.
9877@end deftp
9878
9879@deffn {Scheme Procedure} service-extension @var{target-type} @
9880 @var{compute}
9881Return a new extension for services of type @var{target-type}.
9882@var{compute} must be a one-argument procedure: @code{fold-services}
9883calls it, passing it the value associated with the service that provides
9884the extension; it must return a valid value for the target service.
9885@end deffn
9886
9887@deffn {Scheme Procedure} service-extension? @var{obj}
9888Return true if @var{obj} is a service extension.
9889@end deffn
9890
9891At the core of the service abstraction lies the @code{fold-services}
9892procedure, which is responsible for ``compiling'' a list of services
d62e201c
LC
9893down to a single directory that contains everything needed to boot and
9894run the system---the directory shown by the @command{guix system build}
9895command (@pxref{Invoking guix system}). In essence, it propagates
9896service extensions down the service graph, updating each node parameters
9897on the way, until it reaches the root node.
0adfe95a
LC
9898
9899@deffn {Scheme Procedure} fold-services @var{services} @
d62e201c 9900 [#:target-type @var{system-service-type}]
0adfe95a
LC
9901Fold @var{services} by propagating their extensions down to the root of
9902type @var{target-type}; return the root service adjusted accordingly.
9903@end deffn
9904
9905Lastly, the @code{(gnu services)} module also defines several essential
9906service types, some of which are listed below.
9907
d62e201c
LC
9908@defvr {Scheme Variable} system-service-type
9909This is the root of the service graph. It produces the system directory
9910as returned by the @command{guix system build} command.
9911@end defvr
9912
0adfe95a 9913@defvr {Scheme Variable} boot-service-type
d62e201c
LC
9914The type of the ``boot service'', which produces the @dfn{boot script}.
9915The boot script is what the initial RAM disk runs when booting.
0adfe95a
LC
9916@end defvr
9917
9918@defvr {Scheme Variable} etc-service-type
9919The type of the @file{/etc} service. This service can be extended by
9920passing it name/file tuples such as:
9921
9922@example
9923(list `("issue" ,(plain-file "issue" "Welcome!\n")))
9924@end example
9925
9926In this example, the effect would be to add an @file{/etc/issue} file
9927pointing to the given file.
9928@end defvr
9929
9930@defvr {Scheme Variable} setuid-program-service-type
9931Type for the ``setuid-program service''. This service collects lists of
9932executable file names, passed as gexps, and adds them to the set of
9933setuid-root programs on the system (@pxref{Setuid Programs}).
9934@end defvr
9935
af4c3fd5
LC
9936@defvr {Scheme Variable} profile-service-type
9937Type of the service that populates the @dfn{system profile}---i.e., the
9938programs under @file{/run/current-system/profile}. Other services can
9939extend it by passing it lists of packages to add to the system profile.
9940@end defvr
9941
0adfe95a 9942
dd17bc38
AK
9943@node Shepherd Services
9944@subsubsection Shepherd Services
0adfe95a
LC
9945
9946@cindex PID 1
9947@cindex init system
0190c1c0
AK
9948The @code{(gnu services shepherd)} provides a way to define services
9949managed by the GNU@tie{}Shepherd, which is GuixSD initialization
9950system---the first process that is started when the system boots,
9951aka. PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd
9952Manual}).
6f305ea5 9953
dd17bc38
AK
9954Services in the Shepherd can depend on each other. For instance, the
9955SSH daemon may need to be started after the syslog daemon has been
9956started, which in turn can only happen once all the file systems have
9957been mounted. The simple operating system defined earlier (@pxref{Using
9958the Configuration System}) results in a service graph like this:
6f305ea5 9959
710fa231 9960@image{images/shepherd-graph,,5in,Typical shepherd service graph.}
6f305ea5
LC
9961
9962You can actually generate such a graph for any operating system
710fa231
AK
9963definition using the @command{guix system shepherd-graph} command
9964(@pxref{system-shepherd-graph, @command{guix system shepherd-graph}}).
6f305ea5 9965
d4053c71
AK
9966The @var{%shepherd-root-service} is a service object representing
9967PID@tie{}1, of type @var{shepherd-root-service-type}; it can be extended
9968by passing it lists of @code{<shepherd-service>} objects.
0adfe95a 9969
d4053c71 9970@deftp {Data Type} shepherd-service
dd17bc38 9971The data type representing a service managed by the Shepherd.
0adfe95a
LC
9972
9973@table @asis
9974@item @code{provision}
9975This is a list of symbols denoting what the service provides.
9976
dd17bc38
AK
9977These are the names that may be passed to @command{herd start},
9978@command{herd status}, and similar commands (@pxref{Invoking herd,,,
9979shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the
9980@code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details.
0adfe95a
LC
9981
9982@item @code{requirements} (default: @code{'()})
dd17bc38 9983List of symbols denoting the Shepherd services this one depends on.
0adfe95a
LC
9984
9985@item @code{respawn?} (default: @code{#t})
9986Whether to restart the service when it stops, for instance when the
9987underlying process dies.
9988
9989@item @code{start}
9990@itemx @code{stop} (default: @code{#~(const #f)})
dd17bc38
AK
9991The @code{start} and @code{stop} fields refer to the Shepherd's
9992facilities to start and stop processes (@pxref{Service De- and
9993Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as
9994G-expressions that get expanded in the Shepherd configuration file
9995(@pxref{G-Expressions}).
0adfe95a
LC
9996
9997@item @code{documentation}
9998A documentation string, as shown when running:
9999
10000@example
dd17bc38 10001herd doc @var{service-name}
0adfe95a
LC
10002@end example
10003
10004where @var{service-name} is one of the symbols in @var{provision}
dd17bc38 10005(@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}).
fae685b9
LC
10006
10007@item @code{modules} (default: @var{%default-modules})
10008This is the list of modules that must be in scope when @code{start} and
10009@code{stop} are evaluated.
10010
10011@item @code{imported-modules} (default: @var{%default-imported-modules})
10012This is the list of modules to import in the execution environment of
dd17bc38 10013the Shepherd.
fae685b9 10014
0adfe95a
LC
10015@end table
10016@end deftp
10017
d4053c71 10018@defvr {Scheme Variable} shepherd-root-service-type
dd17bc38 10019The service type for the Shepherd ``root service''---i.e., PID@tie{}1.
0adfe95a
LC
10020
10021This is the service type that extensions target when they want to create
dd17bc38 10022shepherd services (@pxref{Service Types and Services}, for an example).
d4053c71 10023Each extension must pass a list of @code{<shepherd-service>}.
0adfe95a
LC
10024@end defvr
10025
d4053c71 10026@defvr {Scheme Variable} %shepherd-root-service
0adfe95a
LC
10027This service represents PID@tie{}1.
10028@end defvr
8451a568 10029
8451a568 10030
cf4a9129
LC
10031@node Installing Debugging Files
10032@section Installing Debugging Files
8451a568 10033
cf4a9129
LC
10034@cindex debugging files
10035Program binaries, as produced by the GCC compilers for instance, are
10036typically written in the ELF format, with a section containing
10037@dfn{debugging information}. Debugging information is what allows the
10038debugger, GDB, to map binary code to source code; it is required to
10039debug a compiled program in good conditions.
8451a568 10040
cf4a9129
LC
10041The problem with debugging information is that is takes up a fair amount
10042of disk space. For example, debugging information for the GNU C Library
10043weighs in at more than 60 MiB. Thus, as a user, keeping all the
10044debugging info of all the installed programs is usually not an option.
10045Yet, space savings should not come at the cost of an impediment to
10046debugging---especially in the GNU system, which should make it easier
10047for users to exert their computing freedom (@pxref{GNU Distribution}).
8451a568 10048
cf4a9129
LC
10049Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a
10050mechanism that allows users to get the best of both worlds: debugging
10051information can be stripped from the binaries and stored in separate
10052files. GDB is then able to load debugging information from those files,
10053when they are available (@pxref{Separate Debug Files,,, gdb, Debugging
10054with GDB}).
8451a568 10055
cf4a9129
LC
10056The GNU distribution takes advantage of this by storing debugging
10057information in the @code{lib/debug} sub-directory of a separate package
10058output unimaginatively called @code{debug} (@pxref{Packages with
10059Multiple Outputs}). Users can choose to install the @code{debug} output
10060of a package when they need it. For instance, the following command
10061installs the debugging information for the GNU C Library and for GNU
10062Guile:
8451a568
LC
10063
10064@example
cf4a9129 10065guix package -i glibc:debug guile:debug
8451a568
LC
10066@end example
10067
cf4a9129
LC
10068GDB must then be told to look for debug files in the user's profile, by
10069setting the @code{debug-file-directory} variable (consider setting it
10070from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with
10071GDB}):
8451a568 10072
cf4a9129
LC
10073@example
10074(gdb) set debug-file-directory ~/.guix-profile/lib/debug
10075@end example
8451a568 10076
cf4a9129
LC
10077From there on, GDB will pick up debugging information from the
10078@code{.debug} files under @file{~/.guix-profile/lib/debug}.
8451a568 10079
cf4a9129
LC
10080In addition, you will most likely want GDB to be able to show the source
10081code being debugged. To do that, you will have to unpack the source
10082code of the package of interest (obtained with @code{guix build
10083--source}, @pxref{Invoking guix build}), and to point GDB to that source
10084directory using the @code{directory} command (@pxref{Source Path,
10085@code{directory},, gdb, Debugging with GDB}).
8451a568 10086
cf4a9129
LC
10087@c XXX: keep me up-to-date
10088The @code{debug} output mechanism in Guix is implemented by the
10089@code{gnu-build-system} (@pxref{Build Systems}). Currently, it is
10090opt-in---debugging information is available only for those packages
10091whose definition explicitly declares a @code{debug} output. This may be
10092changed to opt-out in the future, if our build farm servers can handle
10093the load. To check whether a package has a @code{debug} output, use
10094@command{guix package --list-available} (@pxref{Invoking guix package}).
8451a568 10095
8451a568 10096
05962f29
LC
10097@node Security Updates
10098@section Security Updates
10099
843858b8
LC
10100@quotation Note
10101As of version @value{VERSION}, the feature described in this section is
10102experimental.
10103@end quotation
05962f29
LC
10104
10105@cindex security updates
10106Occasionally, important security vulnerabilities are discovered in core
10107software packages and must be patched. Guix follows a functional
10108package management discipline (@pxref{Introduction}), which implies
10109that, when a package is changed, @emph{every package that depends on it}
10110must be rebuilt. This can significantly slow down the deployment of
10111fixes in core packages such as libc or Bash, since basically the whole
10112distribution would need to be rebuilt. Using pre-built binaries helps
10113(@pxref{Substitutes}), but deployment may still take more time than
10114desired.
10115
10116@cindex grafts
10117To address that, Guix implements @dfn{grafts}, a mechanism that allows
10118for fast deployment of critical updates without the costs associated
10119with a whole-distribution rebuild. The idea is to rebuild only the
10120package that needs to be patched, and then to ``graft'' it onto packages
10121explicitly installed by the user and that were previously referring to
10122the original package. The cost of grafting is typically very low, and
10123order of magnitudes lower than a full rebuild of the dependency chain.
10124
10125@cindex replacements of packages, for grafts
10126For instance, suppose a security update needs to be applied to Bash.
10127Guix developers will provide a package definition for the ``fixed''
10128Bash, say @var{bash-fixed}, in the usual way (@pxref{Defining
10129Packages}). Then, the original package definition is augmented with a
10130@code{replacement} field pointing to the package containing the bug fix:
10131
10132@example
10133(define bash
10134 (package
10135 (name "bash")
10136 ;; @dots{}
10137 (replacement bash-fixed)))
10138@end example
10139
10140From there on, any package depending directly or indirectly on Bash that
10141is installed will automatically be ``rewritten'' to refer to
10142@var{bash-fixed} instead of @var{bash}. This grafting process takes
10143time proportional to the size of the package, but expect less than a
10144minute for an ``average'' package on a recent machine.
10145
10146Currently, the graft and the package it replaces (@var{bash-fixed} and
10147@var{bash} in the example above) must have the exact same @code{name}
10148and @code{version} fields. This restriction mostly comes from the fact
10149that grafting works by patching files, including binary files, directly.
10150Other restrictions may apply: for instance, when adding a graft to a
10151package providing a shared library, the original shared library and its
10152replacement must have the same @code{SONAME} and be binary-compatible.
10153
10154
cf4a9129
LC
10155@node Package Modules
10156@section Package Modules
8451a568 10157
cf4a9129
LC
10158From a programming viewpoint, the package definitions of the
10159GNU distribution are provided by Guile modules in the @code{(gnu packages
10160@dots{})} name space@footnote{Note that packages under the @code{(gnu
10161packages @dots{})} module name space are not necessarily ``GNU
10162packages''. This module naming scheme follows the usual Guile module
10163naming convention: @code{gnu} means that these modules are distributed
10164as part of the GNU system, and @code{packages} identifies modules that
10165define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile
10166Reference Manual}). For instance, the @code{(gnu packages emacs)}
10167module exports a variable named @code{emacs}, which is bound to a
10168@code{<package>} object (@pxref{Defining Packages}).
113daf62 10169
300868ba 10170The @code{(gnu packages @dots{})} module name space is
cf4a9129
LC
10171automatically scanned for packages by the command-line tools. For
10172instance, when running @code{guix package -i emacs}, all the @code{(gnu
10173packages @dots{})} modules are scanned until one that exports a package
10174object whose name is @code{emacs} is found. This package search
10175facility is implemented in the @code{(gnu packages)} module.
113daf62 10176
300868ba 10177@cindex customization, of packages
8689901f 10178@cindex package module search path
cf4a9129 10179Users can store package definitions in modules with different
60142854 10180names---e.g., @code{(my-packages emacs)}@footnote{Note that the file
c95ded7e
LC
10181name and module name must match. For instance, the @code{(my-packages
10182emacs)} module must be stored in a @file{my-packages/emacs.scm} file
10183relative to the load path specified with @option{--load-path} or
10184@code{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,,
10185guile, GNU Guile Reference Manual}, for details.}. These package definitions
300868ba
LC
10186will not be visible by default. Thus, users can invoke commands such as
10187@command{guix package} and @command{guix build} have to be used with the
c95ded7e
LC
10188@code{-e} option so that they know where to find the package. Better
10189yet, they can use the
300868ba 10190@code{-L} option of these commands to make those modules visible
8689901f
LC
10191(@pxref{Invoking guix build, @code{--load-path}}), or define the
10192@code{GUIX_PACKAGE_PATH} environment variable. This environment
10193variable makes it easy to extend or customize the distribution and is
10194honored by all the user interfaces.
10195
10196@defvr {Environment Variable} GUIX_PACKAGE_PATH
10197This is a colon-separated list of directories to search for package
10198modules. Directories listed in this variable take precedence over the
10199distribution's own modules.
10200@end defvr
ef5dd60a 10201
cf4a9129
LC
10202The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}:
10203each package is built based solely on other packages in the
10204distribution. The root of this dependency graph is a small set of
10205@dfn{bootstrap binaries}, provided by the @code{(gnu packages
10206bootstrap)} module. For more information on bootstrapping,
081145cf 10207@pxref{Bootstrapping}.
ef5dd60a 10208
cf4a9129
LC
10209@node Packaging Guidelines
10210@section Packaging Guidelines
ef5dd60a 10211
cf4a9129
LC
10212The GNU distribution is nascent and may well lack some of your favorite
10213packages. This section describes how you can help make the distribution
10214grow. @xref{Contributing}, for additional information on how you can
10215help.
ef5dd60a 10216
cf4a9129
LC
10217Free software packages are usually distributed in the form of
10218@dfn{source code tarballs}---typically @file{tar.gz} files that contain
10219all the source files. Adding a package to the distribution means
10220essentially two things: adding a @dfn{recipe} that describes how to
10221build the package, including a list of other packages required to build
f97c9175 10222it, and adding @dfn{package metadata} along with that recipe, such as a
cf4a9129 10223description and licensing information.
ef5dd60a 10224
cf4a9129
LC
10225In Guix all this information is embodied in @dfn{package definitions}.
10226Package definitions provide a high-level view of the package. They are
10227written using the syntax of the Scheme programming language; in fact,
10228for each package we define a variable bound to the package definition,
10229and export that variable from a module (@pxref{Package Modules}).
10230However, in-depth Scheme knowledge is @emph{not} a prerequisite for
10231creating packages. For more information on package definitions,
081145cf 10232@pxref{Defining Packages}.
ef5dd60a 10233
cf4a9129
LC
10234Once a package definition is in place, stored in a file in the Guix
10235source tree, it can be tested using the @command{guix build} command
10236(@pxref{Invoking guix build}). For example, assuming the new package is
c71979f4
LC
10237called @code{gnew}, you may run this command from the Guix build tree
10238(@pxref{Running Guix Before It Is Installed}):
ef5dd60a
LC
10239
10240@example
cf4a9129 10241./pre-inst-env guix build gnew --keep-failed
ef5dd60a 10242@end example
ef5dd60a 10243
cf4a9129
LC
10244Using @code{--keep-failed} makes it easier to debug build failures since
10245it provides access to the failed build tree. Another useful
10246command-line option when debugging is @code{--log-file}, to access the
10247build log.
ef5dd60a 10248
cf4a9129
LC
10249If the package is unknown to the @command{guix} command, it may be that
10250the source file contains a syntax error, or lacks a @code{define-public}
10251clause to export the package variable. To figure it out, you may load
10252the module from Guile to get more information about the actual error:
ef5dd60a 10253
cf4a9129
LC
10254@example
10255./pre-inst-env guile -c '(use-modules (gnu packages gnew))'
10256@end example
ef5dd60a 10257
cf4a9129
LC
10258Once your package builds correctly, please send us a patch
10259(@pxref{Contributing}). Well, if you need help, we will be happy to
10260help you too. Once the patch is committed in the Guix repository, the
10261new package automatically gets built on the supported platforms by
2b1cee21 10262@url{http://hydra.gnu.org/jobset/gnu/master, our continuous integration
cf4a9129 10263system}.
ef5dd60a 10264
cf4a9129
LC
10265@cindex substituter
10266Users can obtain the new package definition simply by running
10267@command{guix pull} (@pxref{Invoking guix pull}). When
10268@code{hydra.gnu.org} is done building the package, installing the
10269package automatically downloads binaries from there
10270(@pxref{Substitutes}). The only place where human intervention is
10271needed is to review and apply the patch.
ef5dd60a 10272
ef5dd60a 10273
cf4a9129 10274@menu
ec0339cd
LC
10275* Software Freedom:: What may go into the distribution.
10276* Package Naming:: What's in a name?
10277* Version Numbers:: When the name is not enough.
cbd02397 10278* Synopses and Descriptions:: Helping users find the right package.
ec0339cd
LC
10279* Python Modules:: Taming the snake.
10280* Perl Modules:: Little pearls.
10281* Fonts:: Fond of fonts.
cf4a9129 10282@end menu
ef5dd60a 10283
cf4a9129
LC
10284@node Software Freedom
10285@subsection Software Freedom
ef5dd60a 10286
cf4a9129 10287@c Adapted from http://www.gnu.org/philosophy/philosophy.html.
c11a6eb1 10288
cf4a9129
LC
10289The GNU operating system has been developed so that users can have
10290freedom in their computing. GNU is @dfn{free software}, meaning that
10291users have the @url{http://www.gnu.org/philosophy/free-sw.html,four
10292essential freedoms}: to run the program, to study and change the program
10293in source code form, to redistribute exact copies, and to distribute
10294modified versions. Packages found in the GNU distribution provide only
10295software that conveys these four freedoms.
c11a6eb1 10296
cf4a9129
LC
10297In addition, the GNU distribution follow the
10298@url{http://www.gnu.org/distros/free-system-distribution-guidelines.html,free
10299software distribution guidelines}. Among other things, these guidelines
10300reject non-free firmware, recommendations of non-free software, and
10301discuss ways to deal with trademarks and patents.
ef5dd60a 10302
cf4a9129
LC
10303Some packages contain a small and optional subset that violates the
10304above guidelines, for instance because this subset is itself non-free
10305code. When that happens, the offending items are removed with
10306appropriate patches or code snippets in the package definition's
10307@code{origin} form (@pxref{Defining Packages}). That way, @code{guix
10308build --source} returns the ``freed'' source rather than the unmodified
10309upstream source.
ef5dd60a 10310
ef5dd60a 10311
cf4a9129
LC
10312@node Package Naming
10313@subsection Package Naming
ef5dd60a 10314
cf4a9129
LC
10315A package has actually two names associated with it:
10316First, there is the name of the @emph{Scheme variable}, the one following
10317@code{define-public}. By this name, the package can be made known in the
10318Scheme code, for instance as input to another package. Second, there is
10319the string in the @code{name} field of a package definition. This name
10320is used by package management commands such as
10321@command{guix package} and @command{guix build}.
ef5dd60a 10322
cf4a9129
LC
10323Both are usually the same and correspond to the lowercase conversion of
10324the project name chosen upstream, with underscores replaced with
10325hyphens. For instance, GNUnet is available as @code{gnunet}, and
10326SDL_net as @code{sdl-net}.
927097ef 10327
cf4a9129 10328We do not add @code{lib} prefixes for library packages, unless these are
081145cf 10329already part of the official project name. But @pxref{Python
cf4a9129
LC
10330Modules} and @ref{Perl Modules} for special rules concerning modules for
10331the Python and Perl languages.
927097ef 10332
1b366ee4 10333Font package names are handled differently, @pxref{Fonts}.
7fec52b7 10334
ef5dd60a 10335
cf4a9129
LC
10336@node Version Numbers
10337@subsection Version Numbers
ef5dd60a 10338
cf4a9129
LC
10339We usually package only the latest version of a given free software
10340project. But sometimes, for instance for incompatible library versions,
10341two (or more) versions of the same package are needed. These require
10342different Scheme variable names. We use the name as defined
10343in @ref{Package Naming}
10344for the most recent version; previous versions use the same name, suffixed
10345by @code{-} and the smallest prefix of the version number that may
10346distinguish the two versions.
ef5dd60a 10347
cf4a9129
LC
10348The name inside the package definition is the same for all versions of a
10349package and does not contain any version number.
ef5dd60a 10350
cf4a9129 10351For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:
ef5dd60a 10352
cf4a9129
LC
10353@example
10354(define-public gtk+
10355 (package
17d8e33f
ML
10356 (name "gtk+")
10357 (version "3.9.12")
10358 ...))
cf4a9129
LC
10359(define-public gtk+-2
10360 (package
17d8e33f
ML
10361 (name "gtk+")
10362 (version "2.24.20")
10363 ...))
cf4a9129
LC
10364@end example
10365If we also wanted GTK+ 3.8.2, this would be packaged as
10366@example
10367(define-public gtk+-3.8
10368 (package
17d8e33f
ML
10369 (name "gtk+")
10370 (version "3.8.2")
10371 ...))
cf4a9129 10372@end example
ef5dd60a 10373
880d647d
LC
10374@c See <https://lists.gnu.org/archive/html/guix-devel/2016-01/msg00425.html>,
10375@c for a discussion of what follows.
10376@cindex version number, for VCS snapshots
10377Occasionally, we package snapshots of upstream's version control system
10378(VCS) instead of formal releases. This should remain exceptional,
10379because it is up to upstream developers to clarify what the stable
10380release is. Yet, it is sometimes necessary. So, what should we put in
10381the @code{version} field?
10382
10383Clearly, we need to make the commit identifier of the VCS snapshot
10384visible in the version string, but we also need to make sure that the
10385version string is monotonically increasing so that @command{guix package
10386--upgrade} can determine which version is newer. Since commit
10387identifiers, notably with Git, are not monotonically increasing, we add
10388a revision number that we increase each time we upgrade to a newer
10389snapshot. The resulting version string looks like this:
10390
10391@example
103922.0.11-3.cabba9e
10393 ^ ^ ^
10394 | | `-- upstream commit ID
10395 | |
10396 | `--- Guix package revision
10397 |
10398latest upstream version
10399@end example
10400
10401It is a good idea to strip commit identifiers in the @code{version}
10402field to, say, 7 digits. It avoids an aesthetic annoyance (assuming
10403aesthetics have a role to play here) as well as problems related to OS
10404limits such as the maximum shebang length (127 bytes for the Linux
10405kernel.) It is best to use the full commit identifiers in
10406@code{origin}s, though, to avoid ambiguities.
10407
cbd02397
LC
10408@node Synopses and Descriptions
10409@subsection Synopses and Descriptions
10410
10411As we have seen before, each package in GNU@tie{}Guix includes a
10412synopsis and a description (@pxref{Defining Packages}). Synopses and
10413descriptions are important: They are what @command{guix package
10414--search} searches, and a crucial piece of information to help users
10415determine whether a given package suits their needs. Consequently,
10416packagers should pay attention to what goes into them.
10417
10418Synopses must start with a capital letter and must not end with a
10419period. They must not start with ``a'' or ``the'', which usually does
10420not bring anything; for instance, prefer ``File-frobbing tool'' over ``A
10421tool that frobs files''. The synopsis should say what the package
10422is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is
10423used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines
10424matching a pattern''.
10425
10426Keep in mind that the synopsis must be meaningful for a very wide
10427audience. For example, ``Manipulate alignments in the SAM format''
10428might make sense for a seasoned bioinformatics researcher, but might be
10429fairly unhelpful or even misleading to a non-specialized audience. It
10430is a good idea to come up with a synopsis that gives an idea of the
10431application domain of the package. In this example, this might give
10432something like ``Manipulate nucleotide sequence alignments'', which
10433hopefully gives the user a better idea of whether this is what they are
10434looking for.
10435
10436@cindex Texinfo markup, in package descriptions
10437Descriptions should take between five and ten lines. Use full
10438sentences, and avoid using acronyms without first introducing them.
10439Descriptions can include Texinfo markup, which is useful to introduce
10440ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or
ba7d6c76
ML
10441hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you
10442should be careful when using some characters for example @samp{@@} and
10443curly braces which are the basic special characters in Texinfo
10444(@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces
10445such as @command{guix package --show} take care of rendering it
10446appropriately.
cbd02397
LC
10447
10448Synopses and descriptions are translated by volunteers
10449@uref{http://translationproject.org/domain/guix-packages.html, at the
10450Translation Project} so that as many users as possible can read them in
10451their native language. User interfaces search them and display them in
10452the language specified by the current locale.
10453
10454Translation is a lot of work so, as a packager, please pay even more
10455attention to your synopses and descriptions as every change may entail
ba7d6c76 10456additional work for translators. In order to help them, it is possible
36743e71 10457to make recommendations or instructions visible to them by inserting
ba7d6c76
ML
10458special comments like this (@pxref{xgettext Invocation,,, gettext, GNU
10459Gettext}):
10460
10461@example
10462;; TRANSLATORS: "X11 resize-and-rotate" should not be translated.
10463(description "ARandR is designed to provide a simple visual front end
10464for the X11 resize-and-rotate (RandR) extension. @dots{}")
10465@end example
cbd02397 10466
ef5dd60a 10467
cf4a9129
LC
10468@node Python Modules
10469@subsection Python Modules
ef5dd60a 10470
cf4a9129
LC
10471We currently package Python 2 and Python 3, under the Scheme variable names
10472@code{python-2} and @code{python} as explained in @ref{Version Numbers}.
10473To avoid confusion and naming clashes with other programming languages, it
10474seems desirable that the name of a package for a Python module contains
10475the word @code{python}.
ef5dd60a 10476
cf4a9129
LC
10477Some modules are compatible with only one version of Python, others with both.
10478If the package Foo compiles only with Python 3, we name it
10479@code{python-foo}; if it compiles only with Python 2, we name it
10480@code{python2-foo}. If it is compatible with both versions, we create two
10481packages with the corresponding names.
ef5dd60a 10482
cf4a9129
LC
10483If a project already contains the word @code{python}, we drop this;
10484for instance, the module python-dateutil is packaged under the names
10485@code{python-dateutil} and @code{python2-dateutil}.
113daf62 10486
523e4896 10487
cf4a9129
LC
10488@node Perl Modules
10489@subsection Perl Modules
523e4896 10490
cf4a9129
LC
10491Perl programs standing for themselves are named as any other package,
10492using the lowercase upstream name.
10493For Perl packages containing a single class, we use the lowercase class name,
10494replace all occurrences of @code{::} by dashes and prepend the prefix
10495@code{perl-}.
10496So the class @code{XML::Parser} becomes @code{perl-xml-parser}.
10497Modules containing several classes keep their lowercase upstream name and
10498are also prepended by @code{perl-}. Such modules tend to have the word
10499@code{perl} somewhere in their name, which gets dropped in favor of the
10500prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}.
523e4896 10501
523e4896 10502
7fec52b7
AE
10503@node Fonts
10504@subsection Fonts
10505
10506For fonts that are in general not installed by a user for typesetting
10507purposes, or that are distributed as part of a larger software package,
10508we rely on the general packaging rules for software; for instance, this
10509applies to the fonts delivered as part of the X.Org system or fonts that
10510are part of TeX Live.
10511
10512To make it easier for a user to search for fonts, names for other packages
10513containing only fonts are constructed as follows, independently of the
10514upstream package name.
10515
10516The name of a package containing only one font family starts with
10517@code{font-}; it is followed by the foundry name and a dash @code{-}
10518if the foundry is known, and the font family name, in which spaces are
10519replaced by dashes (and as usual, all upper case letters are transformed
10520to lower case).
10521For example, the Gentium font family by SIL is packaged under the name
10522@code{font-sil-gentium}.
10523
10524For a package containing several font families, the name of the collection
10525is used in the place of the font family name.
10526For instance, the Liberation fonts consist of three families,
10527Liberation Sans, Liberation Serif and Liberation Mono.
10528These could be packaged separately under the names
10529@code{font-liberation-sans} and so on; but as they are distributed together
10530under a common name, we prefer to package them together as
10531@code{font-liberation}.
10532
10533In the case where several formats of the same font family or font collection
10534are packaged separately, a short form of the format, prepended by a dash,
10535is added to the package name. We use @code{-ttf} for TrueType fonts,
1b366ee4 10536@code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1
7fec52b7
AE
10537fonts.
10538
10539
b25937e3 10540
cf4a9129
LC
10541@node Bootstrapping
10542@section Bootstrapping
b25937e3 10543
cf4a9129 10544@c Adapted from the ELS 2013 paper.
b25937e3 10545
cf4a9129 10546@cindex bootstrapping
7889394e 10547
cf4a9129
LC
10548Bootstrapping in our context refers to how the distribution gets built
10549``from nothing''. Remember that the build environment of a derivation
10550contains nothing but its declared inputs (@pxref{Introduction}). So
10551there's an obvious chicken-and-egg problem: how does the first package
10552get built? How does the first compiler get compiled? Note that this is
10553a question of interest only to the curious hacker, not to the regular
10554user, so you can shamelessly skip this section if you consider yourself
10555a ``regular user''.
72b9d60d 10556
cf4a9129
LC
10557@cindex bootstrap binaries
10558The GNU system is primarily made of C code, with libc at its core. The
10559GNU build system itself assumes the availability of a Bourne shell and
10560command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and
10561`grep'. Furthermore, build programs---programs that run
10562@code{./configure}, @code{make}, etc.---are written in Guile Scheme
10563(@pxref{Derivations}). Consequently, to be able to build anything at
10564all, from scratch, Guix relies on pre-built binaries of Guile, GCC,
10565Binutils, libc, and the other packages mentioned above---the
10566@dfn{bootstrap binaries}.
72b9d60d 10567
cf4a9129
LC
10568These bootstrap binaries are ``taken for granted'', though we can also
10569re-create them if needed (more on that later).
72b9d60d 10570
cf4a9129 10571@unnumberedsubsec Preparing to Use the Bootstrap Binaries
c79d54fe 10572
cf4a9129
LC
10573@c As of Emacs 24.3, Info-mode displays the image, but since it's a
10574@c large image, it's hard to scroll. Oh well.
10575@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}
523e4896 10576
cf4a9129
LC
10577The figure above shows the very beginning of the dependency graph of the
10578distribution, corresponding to the package definitions of the @code{(gnu
d33fa0c7
LC
10579packages bootstrap)} module. A similar figure can be generated with
10580@command{guix graph} (@pxref{Invoking guix graph}), along the lines of:
10581
10582@example
10583guix graph -t derivation \
10584 -e '(@@@@ (gnu packages bootstrap) %bootstrap-gcc)' \
10585 | dot -Tps > t.ps
10586@end example
10587
10588At this level of detail, things are
cf4a9129
LC
10589slightly complex. First, Guile itself consists of an ELF executable,
10590along with many source and compiled Scheme files that are dynamically
10591loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz}
10592tarball shown in this graph. This tarball is part of Guix's ``source''
10593distribution, and gets inserted into the store with @code{add-to-store}
10594(@pxref{The Store}).
2e7b5cea 10595
cf4a9129
LC
10596But how do we write a derivation that unpacks this tarball and adds it
10597to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv}
10598derivation---the first one that gets built---uses @code{bash} as its
10599builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls
10600@code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar},
10601@file{xz}, and @file{mkdir} are statically-linked binaries, also part of
10602the Guix source distribution, whose sole purpose is to allow the Guile
10603tarball to be unpacked.
fb729425 10604
cf4a9129
LC
10605Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning
10606Guile that can be used to run subsequent build programs. Its first task
10607is to download tarballs containing the other pre-built binaries---this
10608is what the @code{.tar.xz.drv} derivations do. Guix modules such as
10609@code{ftp-client.scm} are used for this purpose. The
10610@code{module-import.drv} derivations import those modules in a directory
10611in the store, using the original layout. The
10612@code{module-import-compiled.drv} derivations compile those modules, and
10613write them in an output directory with the right layout. This
10614corresponds to the @code{#:modules} argument of
10615@code{build-expression->derivation} (@pxref{Derivations}).
fb729425 10616
cf4a9129
LC
10617Finally, the various tarballs are unpacked by the
10618derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv},
10619etc., at which point we have a working C tool chain.
fb729425 10620
fb729425 10621
cf4a9129 10622@unnumberedsubsec Building the Build Tools
523e4896 10623
cf4a9129
LC
10624Bootstrapping is complete when we have a full tool chain that does not
10625depend on the pre-built bootstrap tools discussed above. This
10626no-dependency requirement is verified by checking whether the files of
10627the final tool chain contain references to the @file{/gnu/store}
10628directories of the bootstrap inputs. The process that leads to this
10629``final'' tool chain is described by the package definitions found in
1f6f57df 10630the @code{(gnu packages commencement)} module.
df2ce343 10631
d33fa0c7
LC
10632The @command{guix graph} command allows us to ``zoom out'' compared to
10633the graph above, by looking at the level of package objects instead of
10634individual derivations---remember that a package may translate to
10635several derivations, typically one derivation to download its source,
10636one to build the Guile modules it needs, and one to actually build the
10637package from source. The command:
10638
10639@example
10640guix graph -t bag \
10641 -e '(@@@@ (gnu packages commencement)
10642 glibc-final-with-bootstrap-bash)' | dot -Tps > t.ps
10643@end example
10644
10645@noindent
10646produces the dependency graph leading to the ``final'' C
10647library@footnote{You may notice the @code{glibc-intermediate} label,
10648suggesting that it is not @emph{quite} final, but as a good
10649approximation, we will consider it final.}, depicted below.
10650
10651@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}
10652
cf4a9129
LC
10653@c See <http://lists.gnu.org/archive/html/gnu-system-discuss/2012-10/msg00000.html>.
10654The first tool that gets built with the bootstrap binaries is
d33fa0c7
LC
10655GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite
10656for all the following packages. From there Findutils and Diffutils get
10657built.
523e4896 10658
cf4a9129
LC
10659Then come the first-stage Binutils and GCC, built as pseudo cross
10660tools---i.e., with @code{--target} equal to @code{--host}. They are
10661used to build libc. Thanks to this cross-build trick, this libc is
10662guaranteed not to hold any reference to the initial tool chain.
4af2447e 10663
d33fa0c7
LC
10664From there the final Binutils and GCC (not shown above) are built.
10665GCC uses @code{ld}
cf4a9129
LC
10666from the final Binutils, and links programs against the just-built libc.
10667This tool chain is used to build the other packages used by Guix and by
10668the GNU Build System: Guile, Bash, Coreutils, etc.
4af2447e 10669
cf4a9129
LC
10670And voilà! At this point we have the complete set of build tools that
10671the GNU Build System expects. These are in the @code{%final-inputs}
dd164244
MW
10672variable of the @code{(gnu packages commencement)} module, and are
10673implicitly used by any package that uses @code{gnu-build-system}
1f6f57df 10674(@pxref{Build Systems, @code{gnu-build-system}}).
4af2447e 10675
4af2447e 10676
cf4a9129 10677@unnumberedsubsec Building the Bootstrap Binaries
4af2447e 10678
cf4a9129
LC
10679Because the final tool chain does not depend on the bootstrap binaries,
10680those rarely need to be updated. Nevertheless, it is useful to have an
10681automated way to produce them, should an update occur, and this is what
10682the @code{(gnu packages make-bootstrap)} module provides.
4af2447e 10683
cf4a9129
LC
10684The following command builds the tarballs containing the bootstrap
10685binaries (Guile, Binutils, GCC, libc, and a tarball containing a mixture
10686of Coreutils and other basic command-line tools):
4b2615e1 10687
cf4a9129
LC
10688@example
10689guix build bootstrap-tarballs
10690@end example
10691
10692The generated tarballs are those that should be referred to in the
10693@code{(gnu packages bootstrap)} module mentioned at the beginning of
10694this section.
10695
10696Still here? Then perhaps by now you've started to wonder: when do we
10697reach a fixed point? That is an interesting question! The answer is
10698unknown, but if you would like to investigate further (and have
10699significant computational and storage resources to do so), then let us
10700know.
10701
10702@node Porting
10703@section Porting to a New Platform
10704
10705As discussed above, the GNU distribution is self-contained, and
10706self-containment is achieved by relying on pre-built ``bootstrap
10707binaries'' (@pxref{Bootstrapping}). These binaries are specific to an
10708operating system kernel, CPU architecture, and application binary
10709interface (ABI). Thus, to port the distribution to a platform that is
10710not yet supported, one must build those bootstrap binaries, and update
10711the @code{(gnu packages bootstrap)} module to use them on that platform.
10712
10713Fortunately, Guix can @emph{cross compile} those bootstrap binaries.
10714When everything goes well, and assuming the GNU tool chain supports the
10715target platform, this can be as simple as running a command like this
10716one:
10717
10718@example
10719guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs
10720@end example
10721
1c0c417d
LC
10722For this to work, the @code{glibc-dynamic-linker} procedure in
10723@code{(gnu packages bootstrap)} must be augmented to return the right
10724file name for libc's dynamic linker on that platform; likewise,
10725@code{system->linux-architecture} in @code{(gnu packages linux)} must be
10726taught about the new platform.
10727
cf4a9129 10728Once these are built, the @code{(gnu packages bootstrap)} module needs
1c0c417d
LC
10729to be updated to refer to these binaries on the target platform. That
10730is, the hashes and URLs of the bootstrap tarballs for the new platform
10731must be added alongside those of the currently supported platforms. The
10732bootstrap Guile tarball is treated specially: it is expected to be
10733available locally, and @file{gnu-system.am} has rules do download it for
10734the supported architectures; a rule for the new platform must be added
10735as well.
cf4a9129
LC
10736
10737In practice, there may be some complications. First, it may be that the
10738extended GNU triplet that specifies an ABI (like the @code{eabi} suffix
10739above) is not recognized by all the GNU tools. Typically, glibc
10740recognizes some of these, whereas GCC uses an extra @code{--with-abi}
10741configure flag (see @code{gcc.scm} for examples of how to handle this).
10742Second, some of the required packages could fail to build for that
10743platform. Lastly, the generated binaries could be broken for some
10744reason.
4af2447e 10745
9bf3c1a7 10746@c *********************************************************************
8c01b9d0 10747@include contributing.texi
c78bd12b 10748
568717fd
LC
10749@c *********************************************************************
10750@node Acknowledgments
10751@chapter Acknowledgments
10752
136787cb
LC
10753Guix is based on the @uref{http://nixos.org/nix/, Nix package manager},
10754which was designed and
4c7ac9aa
LC
10755implemented by Eelco Dolstra, with contributions from other people (see
10756the @file{nix/AUTHORS} file in Guix.) Nix pioneered functional package
568717fd
LC
10757management, and promoted unprecedented features, such as transactional
10758package upgrades and rollbacks, per-user profiles, and referentially
10759transparent build processes. Without this work, Guix would not exist.
10760
10761The Nix-based software distributions, Nixpkgs and NixOS, have also been
10762an inspiration for Guix.
10763
4c7ac9aa
LC
10764GNU@tie{}Guix itself is a collective work with contributions from a
10765number of people. See the @file{AUTHORS} file in Guix for more
10766information on these fine people. The @file{THANKS} file lists people
10767who have helped by reporting bugs, taking care of the infrastructure,
10768providing artwork and themes, making suggestions, and more---thank you!
10769
10770
568717fd
LC
10771@c *********************************************************************
10772@node GNU Free Documentation License
10773@appendix GNU Free Documentation License
10774
10775@include fdl-1.3.texi
10776
10777@c *********************************************************************
10778@node Concept Index
10779@unnumbered Concept Index
10780@printindex cp
10781
a85b83d2
LC
10782@node Programming Index
10783@unnumbered Programming Index
10784@syncodeindex tp fn
10785@syncodeindex vr fn
568717fd
LC
10786@printindex fn
10787
10788@bye
10789
10790@c Local Variables:
10791@c ispell-local-dictionary: "american";
10792@c End: