doc: Add subsections to 'Invoking guix build'.
[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@*
af8a56b8 14Copyright @copyright{} 2013, 2014 Andreas Enge@*
87eafdbd 15Copyright @copyright{} 2013 Nikita Karetnikov@*
8c01b9d0
ML
16Copyright @copyright{} 2015 Mathieu Lirzin@*
17Copyright @copyright{} 2014 Pierre-Antoine Rault@*
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
NK
249always produces the same result when passed a given set of inputs. It
250cannot alter the system's environment 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
LC
258system, in a special directory called @dfn{the store} (@pxref{The
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
264This approach is the foundation of Guix's salient features: support for
4bfc4ea3 265transactional 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
330If that command fails because you don't have the required public key,
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
225dafde
LC
549environment. Also @ref{Substitutes}, for information on how to allow
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
628the @code{/proc} directory; it only shows the container's processes
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
7a57c96a 648within the chroot is always @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
677@file{/etc/guix/machines.scm}; anytime a build is requested, for
678instance via @code{guix build}, the daemon attempts to offload it to one
679of the machines that satisfies the derivation's constraints, in
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
LC
717@deftp {Data Type} build-machine
718This data type represents build machines the daemon may offload builds
719to. The important fields are:
49e6291a
LC
720
721@table @code
722
723@item name
724The remote machine's host name.
725
726@item system
c678a4ee 727The remote machine's system type---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
LC
740@item port
741Port number of the machine's SSH server (default: 22).
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
LC
776
777There's one last thing to do once @file{machines.scm} is in place. As
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
0e2d0213
LC
1025Packages installed @i{via} Guix will not use the host system's locale
1026data. 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
1037110@tie{}MiB. Alternately, the @code{glibc-utf8-locales} is smaller but
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
1046@code{GUIX_LOCPATH} is honored only by Guix's libc, and not by the libc
1047provided by foreign distros. Thus, using @code{GUIX_LOCPATH} allows you
f9b9a033 1048to make sure the foreign distro's programs 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
0e2d0213
LC
1065load fonts and perform X11-client-side rendering. Guix's
1066@code{fontconfig} package looks for fonts in @file{$HOME/.guix-profile}
1067by default. Thus, to allow graphical applications installed with Guix
1068to display fonts, you will have to install fonts with Guix as well.
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
1097are placed, so you don't need to perform any configuration. If, for
1098some reason, you want to avoid auto-loading Emacs packages installed
1099with Guix, you can do it by running Emacs with @code{--no-site-file}
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
LC
1109remove software packages, without having to know about their build
1110procedure or dependencies. Guix also goes beyond this obvious set of
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
MW
1151The @command{guix package} command is the central tool to manage
1152packages (@pxref{Invoking guix package}). It operates on those 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
LC
1168
1169All those packages in the package store may be @emph{garbage-collected}.
1170Guix can determine which packages are still referenced by the 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
1200package, without having to manually install the package's dependencies
1201in their profile (@pxref{Invoking guix environment}).
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
1292also been explicitly installed independently.
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
1330in the root of their project's source tree that can be used to test
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
NK
1400installed packages, the profile is made to point to the @dfn{zeroth
1401generation}, which contains no files apart from its own meta-data.
d9307267 1402
82fe08ed
LC
1403Installing, removing, or upgrading packages from a generation that has
1404been rolled back to overwrites previous future generations. Thus, the
1405history of a profile's generations is always linear.
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
LC
1467@item --verbose
1468Produce verbose output. In particular, emit the environment's build log
1469on the standard error port.
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
e49951eb 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
299112d3
LC
1487@var{regexp}. Print all the meta-data of matching packages in
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
1613a range must be lesser than its end.
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
1bb9900a
LC
1639Note that deleting generations prevents roll-back to them.
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
LC
1645processes, it supports all the common build options (@pxref{Common Build
1646Options}).
70ee5642 1647
c4202d60
LC
1648@node Substitutes
1649@section Substitutes
1650
1651@cindex substitutes
1652@cindex pre-built binaries
1653Guix supports transparent source/binary deployment, which means that it
1654can either build things locally, or download pre-built items from a
1655server. We call these pre-built items @dfn{substitutes}---they are
1656substitutes for local build results. In many cases, downloading a
1657substitute is much faster than building things locally.
1658
1659Substitutes can be anything resulting from a derivation build
1660(@pxref{Derivations}). Of course, in the common case, they are
1661pre-built package binaries, but source tarballs, for instance, which
1662also result from derivation builds, can be available as substitutes.
1663
1664The @code{hydra.gnu.org} server is a front-end to a build farm that
1665builds packages from the GNU distribution continuously for some
32950fc8
AK
1666architectures, and makes them available as substitutes (@pxref{Emacs
1667Hydra}, for information on how to query the continuous integration
1668server). This is the
f8a8e0fe
LC
1669default source of substitutes; it can be overridden by passing the
1670@option{--substitute-urls} option either to @command{guix-daemon}
1671(@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}})
1672or to client tools such as @command{guix package}
1673(@pxref{client-substitute-urls,, client @option{--substitute-urls}
1674option}).
c4202d60
LC
1675
1676@cindex security
1677@cindex digital signatures
1678To allow Guix to download substitutes from @code{hydra.gnu.org}, you
1679must add its public key to the access control list (ACL) of archive
1680imports, using the @command{guix archive} command (@pxref{Invoking guix
1681archive}). Doing so implies that you trust @code{hydra.gnu.org} to not
1682be compromised and to serve genuine substitutes.
1683
1684This public key is installed along with Guix, in
1685@code{@var{prefix}/share/guix/hydra.gnu.org.pub}, where @var{prefix} is
1686the installation prefix of Guix. If you installed Guix from source,
1687make sure you checked the GPG signature of
1688@file{guix-@value{VERSION}.tar.gz}, which contains this public key file.
1689Then, you can run something like this:
1690
1691@example
1692# guix archive --authorize < hydra.gnu.org.pub
1693@end example
1694
1695Once this is in place, the output of a command like @code{guix build}
1696should change from something like:
1697
1698@example
1699$ guix build emacs --dry-run
1700The following derivations would be built:
1701 /gnu/store/yr7bnx8xwcayd6j95r2clmkdl1qh688w-emacs-24.3.drv
1702 /gnu/store/x8qsh1hlhgjx6cwsjyvybnfv2i37z23w-dbus-1.6.4.tar.gz.drv
1703 /gnu/store/1ixwp12fl950d15h2cj11c73733jay0z-alsa-lib-1.0.27.1.tar.bz2.drv
1704 /gnu/store/nlma1pw0p603fpfiqy7kn4zm105r5dmw-util-linux-2.21.drv
1705@dots{}
1706@end example
1707
1708@noindent
1709to something like:
1710
1711@example
1712$ guix build emacs --dry-run
1713The following files would be downloaded:
1714 /gnu/store/pk3n22lbq6ydamyymqkkz7i69wiwjiwi-emacs-24.3
1715 /gnu/store/2ygn4ncnhrpr61rssa6z0d9x22si0va3-libjpeg-8d
1716 /gnu/store/71yz6lgx4dazma9dwn2mcjxaah9w77jq-cairo-1.12.16
1717 /gnu/store/7zdhgp0n1518lvfn8mb96sxqfmvqrl7v-libxrender-0.9.7
1718@dots{}
1719@end example
1720
1721@noindent
1722This indicates that substitutes from @code{hydra.gnu.org} are usable and
1723will be downloaded, when possible, for future builds.
1724
1725Guix ignores substitutes that are not signed, or that are not signed by
ef27aa9c 1726one of the keys listed in the ACL. It also detects and raises an error
c4202d60
LC
1727when attempting to use a substitute that has been tampered with.
1728
e0c941fe
LC
1729@vindex http_proxy
1730Substitutes are downloaded over HTTP. The @code{http_proxy} environment
1731variable can be set in the environment of @command{guix-daemon} and is
1732honored for downloads of substitutes. Note that the value of
1733@code{http_proxy} in the environment where @command{guix build},
1734@command{guix package}, and other client commands are run has
1735@emph{absolutely no effect}.
1736
c4202d60
LC
1737The substitute mechanism can be disabled globally by running
1738@code{guix-daemon} with @code{--no-substitutes} (@pxref{Invoking
1739guix-daemon}). It can also be disabled temporarily by passing the
1740@code{--no-substitutes} option to @command{guix package}, @command{guix
1741build}, and other command-line tools.
1742
1743
1744Today, each individual's control over their own computing is at the
1745mercy of institutions, corporations, and groups with enough power and
1746determination to subvert the computing infrastructure and exploit its
1747weaknesses. While using @code{hydra.gnu.org} substitutes can be
1748convenient, we encourage users to also build on their own, or even run
1749their own build farm, such that @code{hydra.gnu.org} is less of an
8ce229fc
LC
1750interesting target. One way to help is by publishing the software you
1751build using @command{guix publish} so that others have one more choice
1752of server to download substitutes from (@pxref{Invoking guix publish}).
c4202d60
LC
1753
1754Guix has the foundations to maximize build reproducibility
1755(@pxref{Features}). In most cases, independent builds of a given
1756package or derivation should yield bit-identical results. Thus, through
1757a diverse set of independent package builds, we can strengthen the
d23c20f1
LC
1758integrity of our systems. The @command{guix challenge} command aims to
1759help users assess substitute servers, and to assist developers in
1760finding out about non-deterministic package builds (@pxref{Invoking guix
a8d65643
LC
1761challenge}). Similarly, the @option{--check} option of @command{guix
1762build} allows users to check whether previously-installed substitutes
1763are genuine by rebuilding them locally (@pxref{build-check,
1764@command{guix build --check}}).
c4202d60
LC
1765
1766In the future, we want Guix to have support to publish and retrieve
1767binaries to/from other users, in a peer-to-peer fashion. If you would
1768like to discuss this project, join us on @email{guix-devel@@gnu.org}.
1769
1770
6e721c4d
LC
1771@node Packages with Multiple Outputs
1772@section Packages with Multiple Outputs
1773
1774@cindex multiple-output packages
1775@cindex package outputs
1776
1777Often, packages defined in Guix have a single @dfn{output}---i.e., the
1778source package leads exactly one directory in the store. When running
1779@command{guix package -i glibc}, one installs the default output of the
1780GNU libc package; the default output is called @code{out}, but its name
1781can be omitted as shown in this command. In this particular case, the
1782default output of @code{glibc} contains all the C header files, shared
1783libraries, static libraries, Info documentation, and other supporting
1784files.
1785
1786Sometimes it is more appropriate to separate the various types of files
1787produced from a single source package into separate outputs. For
1788instance, the GLib C library (used by GTK+ and related packages)
1789installs more than 20 MiB of reference documentation as HTML pages.
1790To save space for users who do not need it, the documentation goes to a
1791separate output, called @code{doc}. To install the main GLib output,
1792which contains everything but the documentation, one would run:
1793
1794@example
1795guix package -i glib
1796@end example
1797
1798The command to install its documentation is:
1799
1800@example
1801guix package -i glib:doc
1802@end example
1803
1804Some packages install programs with different ``dependency footprints''.
1805For instance, the WordNet package install both command-line tools and
1806graphical user interfaces (GUIs). The former depend solely on the C
1807library, whereas the latter depend on Tcl/Tk and the underlying X
1808libraries. In this case, we leave the command-line tools in the default
1809output, whereas the GUIs are in a separate output. This allows users
fcc58db6
LC
1810who do not need the GUIs to save space. The @command{guix size} command
1811can help find out about such situations (@pxref{Invoking guix size}).
88856916 1812@command{guix graph} can also be helpful (@pxref{Invoking guix graph}).
6e721c4d
LC
1813
1814There are several such multiple-output packages in the GNU distribution.
91ef73d4
LC
1815Other conventional output names include @code{lib} for libraries and
1816possibly header files, @code{bin} for stand-alone programs, and
1817@code{debug} for debugging information (@pxref{Installing Debugging
1818Files}). The outputs of a packages are listed in the third column of
1819the output of @command{guix package --list-available} (@pxref{Invoking
1820guix package}).
6e721c4d 1821
eeaf4427 1822
e49951eb
MW
1823@node Invoking guix gc
1824@section Invoking @command{guix gc}
fe8ff028
LC
1825
1826@cindex garbage collector
1827Packages that are installed but not used may be @dfn{garbage-collected}.
e49951eb 1828The @command{guix gc} command allows users to explicitly run the garbage
c22eb992
LC
1829collector to reclaim space from the @file{/gnu/store} directory. It is
1830the @emph{only} way to remove files from @file{/gnu/store}---removing
1831files or directories manually may break it beyond repair!
fe8ff028
LC
1832
1833The garbage collector has a set of known @dfn{roots}: any file under
834129e0 1834@file{/gnu/store} reachable from a root is considered @dfn{live} and
fe8ff028
LC
1835cannot be deleted; any other file is considered @dfn{dead} and may be
1836deleted. The set of garbage collector roots includes default user
e49951eb
MW
1837profiles, and may be augmented with @command{guix build --root}, for
1838example (@pxref{Invoking guix build}).
fe8ff028 1839
1bb9900a
LC
1840Prior to running @code{guix gc --collect-garbage} to make space, it is
1841often useful to remove old generations from user profiles; that way, old
1842package builds referenced by those generations can be reclaimed. This
1843is achieved by running @code{guix package --delete-generations}
1844(@pxref{Invoking guix package}).
1845
e49951eb 1846The @command{guix gc} command has three modes of operation: it can be
fe8ff028 1847used to garbage-collect any dead files (the default), to delete specific
7770aafc
LC
1848files (the @code{--delete} option), to print garbage-collector
1849information, or for more advanced queries. The garbage collection
1850options are as follows:
fe8ff028
LC
1851
1852@table @code
1853@item --collect-garbage[=@var{min}]
1854@itemx -C [@var{min}]
834129e0 1855Collect garbage---i.e., unreachable @file{/gnu/store} files and
fe8ff028
LC
1856sub-directories. This is the default operation when no option is
1857specified.
1858
1859When @var{min} is given, stop once @var{min} bytes have been collected.
1860@var{min} may be a number of bytes, or it may include a unit as a
4a44d7bb
LC
1861suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes
1862(@pxref{Block size, size specifications,, coreutils, GNU Coreutils}).
fe8ff028
LC
1863
1864When @var{min} is omitted, collect all the garbage.
1865
1866@item --delete
1867@itemx -d
1868Attempt to delete all the store files and directories specified as
1869arguments. This fails if some of the files are not in the store, or if
1870they are still live.
1871
30d9aa54
LC
1872@item --list-failures
1873List store items corresponding to cached build failures.
1874
1875This prints nothing unless the daemon was started with
1876@option{--cache-failures} (@pxref{Invoking guix-daemon,
1877@option{--cache-failures}}).
1878
1879@item --clear-failures
1880Remove the specified store items from the failed-build cache.
1881
1882Again, this option only makes sense when the daemon is started with
1883@option{--cache-failures}. Otherwise, it does nothing.
1884
fe8ff028
LC
1885@item --list-dead
1886Show the list of dead files and directories still present in the
1887store---i.e., files and directories no longer reachable from any root.
1888
1889@item --list-live
1890Show the list of live store files and directories.
ba8b732d
LC
1891
1892@end table
1893
1894In addition, the references among existing store files can be queried:
1895
1896@table @code
1897
1898@item --references
1899@itemx --referrers
1900List the references (respectively, the referrers) of store files given
1901as arguments.
1902
8e59fdd5
LC
1903@item --requisites
1904@itemx -R
fcc58db6 1905@cindex closure
8e59fdd5
LC
1906List the requisites of the store files passed as arguments. Requisites
1907include the store files themselves, their references, and the references
1908of these, recursively. In other words, the returned list is the
1909@dfn{transitive closure} of the store files.
1910
fcc58db6 1911@xref{Invoking guix size}, for a tool to profile the size of an
88856916
LC
1912element's closure. @xref{Invoking guix graph}, for a tool to visualize
1913the graph of references.
fcc58db6 1914
fe8ff028
LC
1915@end table
1916
7770aafc
LC
1917Lastly, the following options allow you to check the integrity of the
1918store and to control disk usage.
1919
1920@table @option
1921
1922@item --verify[=@var{options}]
1923@cindex integrity, of the store
1924@cindex integrity checking
1925Verify the integrity of the store.
1926
1927By default, make sure that all the store items marked as valid in the
1928daemon's database actually exist in @file{/gnu/store}.
1929
1930When provided, @var{options} must a comma-separated list containing one
1931or more of @code{contents} and @code{repair}.
1932
1933When passing @option{--verify=contents}, the daemon will compute the
1934content hash of each store item and compare it against its hash in the
1935database. Hash mismatches are reported as data corruptions. Because it
1936traverses @emph{all the files in the store}, this command can take a
1937long time, especially on systems with a slow disk drive.
1938
1939@cindex repairing the store
1940Using @option{--verify=repair} or @option{--verify=contents,repair}
1941causes the daemon to try to repair corrupt store items by fetching
1942substitutes for them (@pxref{Substitutes}). Because repairing is not
1943atomic, and thus potentially dangerous, it is available only to the
1944system administrator.
1945
1946@item --optimize
1947@cindex deduplication
1948Optimize the store by hard-linking identical files---this is
1949@dfn{deduplication}.
1950
1951The daemon performs deduplication after each successful build or archive
1952import, unless it was started with @code{--disable-deduplication}
1953(@pxref{Invoking guix-daemon, @code{--disable-deduplication}}). Thus,
1954this option is primarily useful when the daemon was running with
1955@code{--disable-deduplication}.
1956
1957@end table
eeaf4427 1958
f651b477
LC
1959@node Invoking guix pull
1960@section Invoking @command{guix pull}
1961
1962Packages are installed or upgraded to the latest version available in
1963the distribution currently available on your local machine. To update
1964that distribution, along with the Guix tools, you must run @command{guix
1965pull}: the command downloads the latest Guix source code and package
1966descriptions, and deploys it.
1967
1968On completion, @command{guix package} will use packages and package
1969versions from this just-retrieved copy of Guix. Not only that, but all
1970the Guix commands and Scheme modules will also be taken from that latest
1971version. New @command{guix} sub-commands added by the update also
ef54b61d
AV
1972become available@footnote{Under the hood, @command{guix pull} updates
1973the @file{~/.config/guix/latest} symbolic link to point to the latest
1974Guix, and the @command{guix} command loads code from there.}.
f651b477
LC
1975
1976The @command{guix pull} command is usually invoked with no arguments,
1977but it supports the following options:
1978
1979@table @code
1980@item --verbose
1981Produce verbose output, writing build logs to the standard error output.
1982
ab5d72ad
LC
1983@item --url=@var{url}
1984Download the source tarball of Guix from @var{url}.
1985
1986By default, the tarball is taken from its canonical address at
1987@code{gnu.org}, for the stable branch of Guix.
1988
f651b477
LC
1989@item --bootstrap
1990Use the bootstrap Guile to build the latest Guix. This option is only
1991useful to Guix developers.
1992@end table
1993
760c60d6
LC
1994
1995@node Invoking guix archive
1996@section Invoking @command{guix archive}
1997
1998The @command{guix archive} command allows users to @dfn{export} files
1999from the store into a single archive, and to later @dfn{import} them.
2000In particular, it allows store files to be transferred from one machine
2001to another machine's store. For example, to transfer the @code{emacs}
2002package to a machine connected over SSH, one would run:
2003
2004@example
56607088 2005guix archive --export -r emacs | ssh the-machine guix archive --import
760c60d6
LC
2006@end example
2007
87236aed 2008@noindent
56607088
LC
2009Similarly, a complete user profile may be transferred from one machine
2010to another like this:
2011
2012@example
2013guix archive --export -r $(readlink -f ~/.guix-profile) | \
2014 ssh the-machine guix-archive --import
2015@end example
2016
2017@noindent
2018However, note that, in both examples, all of @code{emacs} and the
2019profile as well as all of their dependencies are transferred (due to
2020@code{-r}), regardless of what is already available in the target
2021machine's store. The @code{--missing} option can help figure out which
2022items are missing from the target's store.
87236aed 2023
760c60d6 2024Archives are stored in the ``Nix archive'' or ``Nar'' format, which is
0dbd88db
LC
2025comparable in spirit to `tar', but with a few noteworthy differences
2026that make it more appropriate for our purposes. First, rather than
2027recording all Unix meta-data for each file, the Nar format only mentions
2028the file type (regular, directory, or symbolic link); Unix permissions
2029and owner/group are dismissed. Second, the order in which directory
2030entries are stored always follows the order of file names according to
2031the C locale collation order. This makes archive production fully
2032deterministic.
2033
2034When exporting, the daemon digitally signs the contents of the archive,
2035and that digital signature is appended. When importing, the daemon
2036verifies the signature and rejects the import in case of an invalid
2037signature or if the signing key is not authorized.
760c60d6
LC
2038@c FIXME: Add xref to daemon doc about signatures.
2039
2040The main options are:
2041
2042@table @code
2043@item --export
2044Export the specified store files or packages (see below.) Write the
2045resulting archive to the standard output.
2046
56607088
LC
2047Dependencies are @emph{not} included in the output, unless
2048@code{--recursive} is passed.
2049
2050@item -r
2051@itemx --recursive
2052When combined with @code{--export}, this instructs @command{guix
2053archive} to include dependencies of the given items in the archive.
2054Thus, the resulting archive is self-contained: it contains the closure
2055of the exported store items.
2056
760c60d6
LC
2057@item --import
2058Read an archive from the standard input, and import the files listed
2059therein into the store. Abort if the archive has an invalid digital
f82cc5fd
LC
2060signature, or if it is signed by a public key not among the authorized
2061keys (see @code{--authorize} below.)
554f26ec 2062
87236aed
LC
2063@item --missing
2064Read a list of store file names from the standard input, one per line,
2065and write on the standard output the subset of these files missing from
2066the store.
2067
554f26ec 2068@item --generate-key[=@var{parameters}]
f82cc5fd 2069@cindex signing, archives
554f26ec
LC
2070Generate a new key pair for the daemons. This is a prerequisite before
2071archives can be exported with @code{--export}. Note that this operation
2072usually takes time, because it needs to gather enough entropy to
2073generate the key pair.
2074
2075The generated key pair is typically stored under @file{/etc/guix}, in
2076@file{signing-key.pub} (public key) and @file{signing-key.sec} (private
867d8473
LC
2077key, which must be kept secret.) When @var{parameters} is omitted,
2078an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt
2079versions before 1.6.0, it is a 4096-bit RSA key.
2080Alternately, @var{parameters} can specify
554f26ec
LC
2081@code{genkey} parameters suitable for Libgcrypt (@pxref{General
2082public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The
2083Libgcrypt Reference Manual}).
f82cc5fd
LC
2084
2085@item --authorize
2086@cindex authorizing, archives
2087Authorize imports signed by the public key passed on standard input.
2088The public key must be in ``s-expression advanced format''---i.e., the
2089same format as the @file{signing-key.pub} file.
2090
2091The list of authorized keys is kept in the human-editable file
2092@file{/etc/guix/acl}. The file contains
2093@url{http://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format
2094s-expressions''} and is structured as an access-control list in the
2095@url{http://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure
2096(SPKI)}.
c6f8e9dd
LC
2097
2098@item --extract=@var{directory}
2099@itemx -x @var{directory}
2100Read a single-item archive as served by substitute servers
2101(@pxref{Substitutes}) and extract it to @var{directory}. This is a
2102low-level operation needed in only very narrow use cases; see below.
2103
2104For example, the following command extracts the substitute for Emacs
2105served by @code{hydra.gnu.org} to @file{/tmp/emacs}:
2106
2107@example
2108$ wget -O - \
2109 http://hydra.gnu.org/nar/@dots{}-emacs-24.5 \
2110 | bunzip2 | guix archive -x /tmp/emacs
2111@end example
2112
2113Single-item archives are different from multiple-item archives produced
2114by @command{guix archive --export}; they contain a single store item,
2115and they do @emph{not} embed a signature. Thus this operation does
2116@emph{no} signature verification and its output should be considered
2117unsafe.
2118
2119The primary purpose of this operation is to facilitate inspection of
2120archive contents coming from possibly untrusted substitute servers.
2121
760c60d6
LC
2122@end table
2123
2124To export store files as an archive to the standard output, run:
2125
2126@example
2127guix archive --export @var{options} @var{specifications}...
2128@end example
2129
2130@var{specifications} may be either store file names or package
2131specifications, as for @command{guix package} (@pxref{Invoking guix
2132package}). For instance, the following command creates an archive
2133containing the @code{gui} output of the @code{git} package and the main
2134output of @code{emacs}:
2135
2136@example
834129e0 2137guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar
760c60d6
LC
2138@end example
2139
2140If the specified packages are not built yet, @command{guix archive}
2141automatically builds them. The build process may be controlled with the
ccd7158d 2142common build options (@pxref{Common Build Options}).
760c60d6 2143
c554de89
AK
2144@c *********************************************************************
2145@include emacs.texi
760c60d6 2146
568717fd
LC
2147@c *********************************************************************
2148@node Programming Interface
2149@chapter Programming Interface
2150
3dc1970d
LC
2151GNU Guix provides several Scheme programming interfaces (APIs) to
2152define, build, and query packages. The first interface allows users to
2153write high-level package definitions. These definitions refer to
2154familiar packaging concepts, such as the name and version of a package,
2155its build system, and its dependencies. These definitions can then be
2156turned into concrete build actions.
2157
ba55b1cb 2158Build actions are performed by the Guix daemon, on behalf of users. In a
3dc1970d 2159standard setup, the daemon has write access to the store---the
834129e0 2160@file{/gnu/store} directory---whereas users do not. The recommended
3dc1970d
LC
2161setup also has the daemon perform builds in chroots, under a specific
2162build users, to minimize interference with the rest of the system.
2163
2164@cindex derivation
2165Lower-level APIs are available to interact with the daemon and the
2166store. To instruct the daemon to perform a build action, users actually
2167provide it with a @dfn{derivation}. A derivation is a low-level
2168representation of the build actions to be taken, and the environment in
2169which they should occur---derivations are to package definitions what
49ad317a
LC
2170assembly is to C programs. The term ``derivation'' comes from the fact
2171that build results @emph{derive} from them.
3dc1970d
LC
2172
2173This chapter describes all these APIs in turn, starting from high-level
2174package definitions.
2175
568717fd 2176@menu
b860f382 2177* Defining Packages:: Defining new packages.
7458bd0a 2178* Build Systems:: Specifying how packages are built.
b860f382
LC
2179* The Store:: Manipulating the package store.
2180* Derivations:: Low-level interface to package derivations.
2181* The Store Monad:: Purely functional interface to the store.
21b679f6 2182* G-Expressions:: Manipulating build expressions.
568717fd
LC
2183@end menu
2184
2185@node Defining Packages
2186@section Defining Packages
2187
3dc1970d
LC
2188The high-level interface to package definitions is implemented in the
2189@code{(guix packages)} and @code{(guix build-system)} modules. As an
2190example, the package definition, or @dfn{recipe}, for the GNU Hello
2191package looks like this:
2192
2193@example
e7f34eb0
LC
2194(define-module (gnu packages hello)
2195 #:use-module (guix packages)
2196 #:use-module (guix download)
2197 #:use-module (guix build-system gnu)
a6dcdcac
SB
2198 #:use-module (guix licenses)
2199 #:use-module (gnu packages gawk))
b22a12fd 2200
79f5dd59 2201(define-public hello
3dc1970d
LC
2202 (package
2203 (name "hello")
17d8e33f 2204 (version "2.10")
3dc1970d 2205 (source (origin
17d8e33f
ML
2206 (method url-fetch)
2207 (uri (string-append "mirror://gnu/hello/hello-" version
2208 ".tar.gz"))
2209 (sha256
2210 (base32
2211 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
3dc1970d 2212 (build-system gnu-build-system)
7458bd0a 2213 (arguments `(#:configure-flags '("--enable-silent-rules")))
3dc1970d 2214 (inputs `(("gawk" ,gawk)))
7458bd0a
LC
2215 (synopsis "Hello, GNU world: An example GNU package")
2216 (description "Guess what GNU Hello prints!")
3dc1970d 2217 (home-page "http://www.gnu.org/software/hello/")
b22a12fd 2218 (license gpl3+)))
3dc1970d
LC
2219@end example
2220
2221@noindent
2222Without being a Scheme expert, the reader may have guessed the meaning
e7f34eb0 2223of the various fields here. This expression binds variable @code{hello}
3dc1970d
LC
2224to a @code{<package>} object, which is essentially a record
2225(@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}).
2226This package object can be inspected using procedures found in the
2227@code{(guix packages)} module; for instance, @code{(package-name hello)}
2228returns---surprise!---@code{"hello"}.
2229
2f7d2d91
LC
2230With luck, you may be able to import part or all of the definition of
2231the package you are interested in from another repository, using the
2232@code{guix import} command (@pxref{Invoking guix import}).
2233
e7f34eb0
LC
2234In the example above, @var{hello} is defined into a module of its own,
2235@code{(gnu packages hello)}. Technically, this is not strictly
2236necessary, but it is convenient to do so: all the packages defined in
2237modules under @code{(gnu packages @dots{})} are automatically known to
2238the command-line tools (@pxref{Package Modules}).
2239
3dc1970d
LC
2240There are a few points worth noting in the above package definition:
2241
2242@itemize
2243@item
a2bf4907
LC
2244The @code{source} field of the package is an @code{<origin>} object
2245(@pxref{origin Reference}, for the complete reference).
3dc1970d
LC
2246Here, the @code{url-fetch} method from @code{(guix download)} is used,
2247meaning that the source is a file to be downloaded over FTP or HTTP.
2248
2249The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of
2250the GNU mirrors defined in @code{(guix download)}.
2251
2252The @code{sha256} field specifies the expected SHA256 hash of the file
2253being downloaded. It is mandatory, and allows Guix to check the
2254integrity of the file. The @code{(base32 @dots{})} form introduces the
6c365eca 2255base32 representation of the hash. You can obtain this information with
210cc920
LC
2256@code{guix download} (@pxref{Invoking guix download}) and @code{guix
2257hash} (@pxref{Invoking guix hash}).
3dc1970d 2258
f9cc8971
LC
2259@cindex patches
2260When needed, the @code{origin} form can also have a @code{patches} field
2261listing patches to be applied, and a @code{snippet} field giving a
2262Scheme expression to modify the source code.
2263
3dc1970d
LC
2264@item
2265@cindex GNU Build System
7458bd0a
LC
2266The @code{build-system} field specifies the procedure to build the
2267package (@pxref{Build Systems}). Here, @var{gnu-build-system}
2268represents the familiar GNU Build System, where packages may be
2269configured, built, and installed with the usual @code{./configure &&
2270make && make check && make install} command sequence.
2271
2272@item
2273The @code{arguments} field specifies options for the build system
2274(@pxref{Build Systems}). Here it is interpreted by
2275@var{gnu-build-system} as a request run @file{configure} with the
2276@code{--enable-silent-rules} flag.
3dc1970d
LC
2277
2278@item
2279The @code{inputs} field specifies inputs to the build process---i.e.,
2280build-time or run-time dependencies of the package. Here, we define an
2281input called @code{"gawk"} whose value is that of the @var{gawk}
2282variable; @var{gawk} is itself bound to a @code{<package>} object.
2283
2284Note that GCC, Coreutils, Bash, and other essential tools do not need to
2285be specified as inputs here. Instead, @var{gnu-build-system} takes care
7458bd0a 2286of ensuring that they are present (@pxref{Build Systems}).
3dc1970d
LC
2287
2288However, any other dependencies need to be specified in the
2289@code{inputs} field. Any dependency not specified here will simply be
2290unavailable to the build process, possibly leading to a build failure.
2291@end itemize
2292
87eafdbd
TUBK
2293@xref{package Reference}, for a full description of possible fields.
2294
2f7d2d91 2295Once a package definition is in place, the
e49951eb 2296package may actually be built using the @code{guix build} command-line
39bee8a2
LC
2297tool (@pxref{Invoking guix build}). You can easily jump back to the
2298package definition using the @command{guix edit} command
2299(@pxref{Invoking guix edit}).
2300@xref{Packaging Guidelines}, for
b4f5e0e8
CR
2301more information on how to test package definitions, and
2302@ref{Invoking guix lint}, for information on how to check a definition
2303for style conformance.
2304
7458bd0a
LC
2305Eventually, updating the package definition to a new upstream version
2306can be partly automated by the @command{guix refresh} command
2307(@pxref{Invoking guix refresh}).
3dc1970d
LC
2308
2309Behind the scenes, a derivation corresponding to the @code{<package>}
2310object is first computed by the @code{package-derivation} procedure.
834129e0 2311That derivation is stored in a @code{.drv} file under @file{/gnu/store}.
ba55b1cb 2312The build actions it prescribes may then be realized by using the
3dc1970d
LC
2313@code{build-derivations} procedure (@pxref{The Store}).
2314
2315@deffn {Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]
59688fc4
LC
2316Return the @code{<derivation>} object of @var{package} for @var{system}
2317(@pxref{Derivations}).
3dc1970d
LC
2318
2319@var{package} must be a valid @code{<package>} object, and @var{system}
2320must be a string denoting the target system type---e.g.,
2321@code{"x86_64-linux"} for an x86_64 Linux-based GNU system. @var{store}
2322must be a connection to the daemon, which operates on the store
2323(@pxref{The Store}).
2324@end deffn
568717fd 2325
9c1edabd
LC
2326@noindent
2327@cindex cross-compilation
2328Similarly, it is possible to compute a derivation that cross-builds a
2329package for some other system:
2330
2331@deffn {Scheme Procedure} package-cross-derivation @var{store} @
2332 @var{package} @var{target} [@var{system}]
59688fc4
LC
2333Return the @code{<derivation>} object of @var{package} cross-built from
2334@var{system} to @var{target}.
9c1edabd
LC
2335
2336@var{target} must be a valid GNU triplet denoting the target hardware
2337and operating system, such as @code{"mips64el-linux-gnu"}
2338(@pxref{Configuration Names, GNU configuration triplets,, configure, GNU
2339Configure and Build System}).
2340@end deffn
2341
87eafdbd
TUBK
2342@menu
2343* package Reference :: The package data type.
2344* origin Reference:: The origin data type.
2345@end menu
2346
2347
2348@node package Reference
2349@subsection @code{package} Reference
2350
2351This section summarizes all the options available in @code{package}
2352declarations (@pxref{Defining Packages}).
2353
2354@deftp {Data Type} package
2355This is the data type representing a package recipe.
2356
2357@table @asis
2358@item @code{name}
2359The name of the package, as a string.
2360
2361@item @code{version}
2362The version of the package, as a string.
2363
2364@item @code{source}
2365An origin object telling how the source code for the package should be
2366acquired (@pxref{origin Reference}).
2367
2368@item @code{build-system}
2369The build system that should be used to build the package (@pxref{Build
2370Systems}).
2371
2372@item @code{arguments} (default: @code{'()})
2373The arguments that should be passed to the build system. This is a
2374list, typically containing sequential keyword-value pairs.
2375
2376@item @code{inputs} (default: @code{'()})
70650c68
LC
2377@itemx @code{native-inputs} (default: @code{'()})
2378@itemx @code{propagated-inputs} (default: @code{'()})
2379@cindex inputs, of packages
2380These fields list dependencies of the package. Each one is a list of
2381tuples, where each tuple has a label for the input (a string) as its
2382first element, a package, origin, or derivation as its second element,
2383and optionally the name of the output thereof that should be used, which
2384defaults to @code{"out"} (@pxref{Packages with Multiple Outputs}, for
2385more on package outputs). For example, the list below specifies 3
2386inputs:
87eafdbd 2387
70650c68
LC
2388@example
2389`(("libffi" ,libffi)
2390 ("libunistring" ,libunistring)
2391 ("glib:bin" ,glib "bin")) ;the "bin" output of Glib
2392@end example
2393
2394@cindex cross compilation, package dependencies
2395The distinction between @code{native-inputs} and @code{inputs} is
2396necessary when considering cross-compilation. When cross-compiling,
2397dependencies listed in @code{inputs} are built for the @emph{target}
2398architecture; conversely, dependencies listed in @code{native-inputs}
2399are built for the architecture of the @emph{build} machine.
2400
2401@code{native-inputs} is typically where you would list tools needed at
2402build time but not at run time, such as Autoconf, Automake, pkg-config,
2403Gettext, or Bison. @command{guix lint} can report likely mistakes in
2404this area (@pxref{Invoking guix lint}).
2405
2406@anchor{package-propagated-inputs}
2407Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the
2408specified packages will be force-installed alongside the package they
2409belong to (@pxref{package-cmd-propagated-inputs, @command{guix
2410package}}, for information on how @command{guix package} deals with
2411propagated inputs.)
21461f27 2412
e0508b6b
LC
2413For example this is necessary when a C/C++ library needs headers of
2414another library to compile, or when a pkg-config file refers to another
2415one @i{via} its @code{Requires} field.
2416
2417Another example where @code{propagated-inputs} is useful is for
2418languages that lack a facility to record the run-time search path akin
2419to ELF's @code{RUNPATH}; this includes Guile, Python, Perl, GHC, and
2420more. To ensure that libraries written in those languages can find
2421library code they depend on at run time, run-time dependencies must be
2422listed in @code{propagated-inputs} rather than @code{inputs}.
87eafdbd 2423
87eafdbd
TUBK
2424@item @code{self-native-input?} (default: @code{#f})
2425This is a Boolean field telling whether the package should use itself as
2426a native input when cross-compiling.
2427
2428@item @code{outputs} (default: @code{'("out")})
2429The list of output names of the package. @xref{Packages with Multiple
2430Outputs}, for typical uses of additional outputs.
2431
2432@item @code{native-search-paths} (default: @code{'()})
2433@itemx @code{search-paths} (default: @code{'()})
2434A list of @code{search-path-specification} objects describing
2435search-path environment variables honored by the package.
2436
2437@item @code{replacement} (default: @code{#f})
2438This must either @code{#f} or a package object that will be used as a
2439@dfn{replacement} for this package. @xref{Security Updates, grafts},
2440for details.
2441
2442@item @code{synopsis}
2443A one-line description of the package.
2444
2445@item @code{description}
2446A more elaborate description of the package.
2447
2448@item @code{license}
2449The license of the package; a value from @code{(guix licenses)}.
2450
2451@item @code{home-page}
2452The URL to the home-page of the package, as a string.
2453
2454@item @code{supported-systems} (default: @var{%supported-systems})
2455The list of systems supported by the package, as strings of the form
2456@code{architecture-kernel}, for example @code{"x86_64-linux"}.
2457
2458@item @code{maintainers} (default: @code{'()})
2459The list of maintainers of the package, as @code{maintainer} objects.
2460
2461@item @code{location} (default: source location of the @code{package} form)
2462The source location of the package. It's useful to override this when
2463inheriting from another package, in which case this field is not
2464automatically corrected.
2465@end table
2466@end deftp
2467
2468
2469@node origin Reference
2470@subsection @code{origin} Reference
2471
2472This section summarizes all the options available in @code{origin}
2473declarations (@pxref{Defining Packages}).
2474
2475@deftp {Data Type} origin
2476This is the data type representing a source code origin.
2477
2478@table @asis
2479@item @code{uri}
2480An object containing the URI of the source. The object type depends on
2481the @code{method} (see below). For example, when using the
2482@var{url-fetch} method of @code{(guix download)}, the valid @code{uri}
2483values are: a URL represented as a string, or a list thereof.
2484
2485@item @code{method}
2486A procedure that will handle the URI.
2487
2488Examples include:
2489
2490@table @asis
2491@item @var{url-fetch} from @code{(guix download)}
2492download a file the HTTP, HTTPS, or FTP URL specified in the
2493@code{uri} field;
2494
2495@item @var{git-fetch} from @code{(guix git-download)}
2496clone the Git version control repository, and check out the revision
2497specified in the @code{uri} field as a @code{git-reference} object; a
2498@code{git-reference} looks like this:
2499
2500@example
2501(git-reference
2502 (url "git://git.debian.org/git/pkg-shadow/shadow")
2503 (commit "v4.1.5.1"))
2504@end example
2505@end table
2506
2507@item @code{sha256}
2508A bytevector containing the SHA-256 hash of the source. Typically the
2509@code{base32} form is used here to generate the bytevector from a
2510base-32 string.
2511
2512@item @code{file-name} (default: @code{#f})
2513The file name under which the source code should be saved. When this is
2514@code{#f}, a sensible default value will be used in most cases. In case
2515the source is fetched from a URL, the file name from the URL will be
2516used. For version control checkouts, it's recommended to provide the
2517file name explicitly because the default is not very descriptive.
2518
2519@item @code{patches} (default: @code{'()})
2520A list of file names containing patches to be applied to the source.
2521
2522@item @code{snippet} (default: @code{#f})
2523A quoted piece of code that will be run in the source directory to make
2524any modifications, which is sometimes more convenient than a patch.
2525
2526@item @code{patch-flags} (default: @code{'("-p1")})
2527A list of command-line flags that should be passed to the @code{patch}
2528command.
2529
2530@item @code{patch-inputs} (default: @code{#f})
2531Input packages or derivations to the patching process. When this is
2532@code{#f}, the usual set of inputs necessary for patching are provided,
2533such as GNU@tie{}Patch.
2534
2535@item @code{modules} (default: @code{'()})
2536A list of Guile modules that should be loaded during the patching
2537process and while running the code in the @code{snippet} field.
2538
2539@item @code{imported-modules} (default: @code{'()})
2540The list of Guile modules to import in the patch derivation, for use by
2541the @code{snippet}.
2542
2543@item @code{patch-guile} (default: @code{#f})
2544The Guile package that should be used in the patching process. When
2545this is @code{#f}, a sensible default is used.
2546@end table
2547@end deftp
2548
9c1edabd 2549
7458bd0a
LC
2550@node Build Systems
2551@section Build Systems
2552
2553@cindex build system
2554Each package definition specifies a @dfn{build system} and arguments for
2555that build system (@pxref{Defining Packages}). This @code{build-system}
2556field represents the build procedure of the package, as well implicit
2557dependencies of that build procedure.
2558
2559Build systems are @code{<build-system>} objects. The interface to
2560create and manipulate them is provided by the @code{(guix build-system)}
2561module, and actual build systems are exported by specific modules.
2562
f5fd4fd2 2563@cindex bag (low-level package representation)
0d5a559f
LC
2564Under the hood, build systems first compile package objects to
2565@dfn{bags}. A @dfn{bag} is like a package, but with less
2566ornamentation---in other words, a bag is a lower-level representation of
2567a package, which includes all the inputs of that package, including some
2568that were implicitly added by the build system. This intermediate
2569representation is then compiled to a derivation (@pxref{Derivations}).
2570
7458bd0a
LC
2571Build systems accept an optional list of @dfn{arguments}. In package
2572definitions, these are passed @i{via} the @code{arguments} field
2573(@pxref{Defining Packages}). They are typically keyword arguments
2574(@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU
2575Guile Reference Manual}). The value of these arguments is usually
2576evaluated in the @dfn{build stratum}---i.e., by a Guile process launched
2577by the daemon (@pxref{Derivations}).
2578
2579The main build system is @var{gnu-build-system}, which implements the
2580standard build procedure for GNU packages and many other packages. It
2581is provided by the @code{(guix build-system gnu)} module.
2582
2583@defvr {Scheme Variable} gnu-build-system
2584@var{gnu-build-system} represents the GNU Build System, and variants
2585thereof (@pxref{Configuration, configuration and makefile conventions,,
2586standards, GNU Coding Standards}).
2587
2588@cindex build phases
2589In a nutshell, packages using it configured, built, and installed with
2590the usual @code{./configure && make && make check && make install}
2591command sequence. In practice, a few additional steps are often needed.
2592All these steps are split up in separate @dfn{phases},
2593notably@footnote{Please see the @code{(guix build gnu-build-system)}
2594modules for more details about the build phases.}:
2595
2596@table @code
2597@item unpack
2598Unpack the source tarball, and change the current directory to the
2599extracted source tree. If the source is actually a directory, copy it
2600to the build tree, and enter that directory.
2601
2602@item patch-source-shebangs
2603Patch shebangs encountered in source files so they refer to the right
2604store file names. For instance, this changes @code{#!/bin/sh} to
2605@code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}.
2606
2607@item configure
2608Run the @file{configure} script with a number of default options, such
2609as @code{--prefix=/gnu/store/@dots{}}, as well as the options specified
2610by the @code{#:configure-flags} argument.
2611
2612@item build
2613Run @code{make} with the list of flags specified with
0917e80e 2614@code{#:make-flags}. If the @code{#:parallel-build?} argument is true
7458bd0a
LC
2615(the default), build with @code{make -j}.
2616
2617@item check
2618Run @code{make check}, or some other target specified with
2619@code{#:test-target}, unless @code{#:tests? #f} is passed. If the
2620@code{#:parallel-tests?} argument is true (the default), run @code{make
2621check -j}.
2622
2623@item install
2624Run @code{make install} with the flags listed in @code{#:make-flags}.
2625
2626@item patch-shebangs
2627Patch shebangs on the installed executable files.
2628
2629@item strip
2630Strip debugging symbols from ELF files (unless @code{#:strip-binaries?}
2631is false), copying them to the @code{debug} output when available
2632(@pxref{Installing Debugging Files}).
2633@end table
2634
2635@vindex %standard-phases
2636The build-side module @code{(guix build gnu-build-system)} defines
2637@var{%standard-phases} as the default list of build phases.
2638@var{%standard-phases} is a list of symbol/procedure pairs, where the
2639procedure implements the actual phase.
2640
2641The list of phases used for a particular package can be changed with the
2642@code{#:phases} parameter. For instance, passing:
2643
2644@example
2645#:phases (alist-delete 'configure %standard-phases)
2646@end example
2647
9bf404e9 2648means that all the phases described above will be used, except the
7458bd0a
LC
2649@code{configure} phase.
2650
2651In addition, this build system ensures that the ``standard'' environment
2652for GNU packages is available. This includes tools such as GCC, libc,
2653Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix
2654build-system gnu)} module for a complete list.) We call these the
2655@dfn{implicit inputs} of a package, because package definitions don't
2656have to mention them.
2657@end defvr
2658
2659Other @code{<build-system>} objects are defined to support other
2660conventions and tools used by free software packages. They inherit most
2661of @var{gnu-build-system}, and differ mainly in the set of inputs
2662implicitly added to the build process, and in the list of phases
2663executed. Some of these build systems are listed below.
2664
2665@defvr {Scheme Variable} cmake-build-system
2666This variable is exported by @code{(guix build-system cmake)}. It
2667implements the build procedure for packages using the
2668@url{http://www.cmake.org, CMake build tool}.
2669
2670It automatically adds the @code{cmake} package to the set of inputs.
2671Which package is used can be specified with the @code{#:cmake}
2672parameter.
9849cfc1
LC
2673
2674The @code{#:configure-flags} parameter is taken as a list of flags
2675passed to the @command{cmake} command. The @code{#:build-type}
2676parameter specifies in abstract terms the flags passed to the compiler;
2677it defaults to @code{"RelWithDebInfo"} (short for ``release mode with
2678debugging information''), which roughly means that code is compiled with
2679@code{-O2 -g}, as is the case for Autoconf-based packages by default.
7458bd0a
LC
2680@end defvr
2681
3afcf52b
FB
2682@defvr {Scheme Variable} glib-or-gtk-build-system
2683This variable is exported by @code{(guix build-system glib-or-gtk)}. It
2684is intended for use with packages making use of GLib or GTK+.
2685
2686This build system adds the following two phases to the ones defined by
2687@var{gnu-build-system}:
2688
2689@table @code
2690@item glib-or-gtk-wrap
2691The phase @code{glib-or-gtk-wrap} ensures that programs found under
2692@file{bin/} are able to find GLib's ``schemas'' and
2693@uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+
2694modules}. This is achieved by wrapping the programs in launch scripts
2695that appropriately set the @code{XDG_DATA_DIRS} and @code{GTK_PATH}
2696environment variables.
2697
73aa8ddb
LC
2698It is possible to exclude specific package outputs from that wrapping
2699process by listing their names in the
2700@code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful
2701when an output is known not to contain any GLib or GTK+ binaries, and
2702where wrapping would gratuitously add a dependency of that output on
2703GLib and GTK+.
2704
3afcf52b
FB
2705@item glib-or-gtk-compile-schemas
2706The phase @code{glib-or-gtk-compile-schemas} makes sure that all GLib's
2707@uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html,
2708GSettings schemas} are compiled. Compilation is performed by the
2709@command{glib-compile-schemas} program. It is provided by the package
2710@code{glib:bin} which is automatically imported by the build system.
2711The @code{glib} package providing @command{glib-compile-schemas} can be
2712specified with the @code{#:glib} parameter.
2713@end table
2714
2715Both phases are executed after the @code{install} phase.
2716@end defvr
2717
7458bd0a
LC
2718@defvr {Scheme Variable} python-build-system
2719This variable is exported by @code{(guix build-system python)}. It
2720implements the more or less standard build procedure used by Python
2721packages, which consists in running @code{python setup.py build} and
2722then @code{python setup.py install --prefix=/gnu/store/@dots{}}.
2723
2724For packages that install stand-alone Python programs under @code{bin/},
2725it takes care of wrapping these programs so their @code{PYTHONPATH}
2726environment variable points to all the Python libraries they depend on.
2727
2728Which Python package is used can be specified with the @code{#:python}
2729parameter.
2730@end defvr
2731
2732@defvr {Scheme Variable} perl-build-system
2733This variable is exported by @code{(guix build-system perl)}. It
2d2a53fc
EB
2734implements the standard build procedure for Perl packages, which either
2735consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}},
2736followed by @code{Build} and @code{Build install}; or in running
2737@code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by
2738@code{make} and @code{make install}; depending on which of
2739@code{Build.PL} or @code{Makefile.PL} is present in the package
2740distribution. Preference is given to the former if both @code{Build.PL}
2741and @code{Makefile.PL} exist in the package distribution. This
2742preference can be reversed by specifying @code{#t} for the
2743@code{#:make-maker?} parameter.
2744
2745The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation
2746passes flags specified by the @code{#:make-maker-flags} or
2747@code{#:module-build-flags} parameter, respectively.
7458bd0a
LC
2748
2749Which Perl package is used can be specified with @code{#:perl}.
2750@end defvr
2751
f8f3bef6
RW
2752@defvr {Scheme Variable} r-build-system
2753This variable is exported by @code{(guix build-system r)}. It
2754implements the build procedure used by @uref{http://r-project.org, R}
2755packages, which essentially is little more than running @code{R CMD
2756INSTALL --library=/gnu/store/@dots{}} in an environment where
2757@code{R_LIBS_SITE} contains the paths to all R package inputs. Tests
2758are run after installation using the R function
2759@code{tools::testInstalledPackage}.
2760@end defvr
2761
c08f9818
DT
2762@defvr {Scheme Variable} ruby-build-system
2763This variable is exported by @code{(guix build-system ruby)}. It
2764implements the RubyGems build procedure used by Ruby packages, which
2765involves running @code{gem build} followed by @code{gem install}.
2766
5dc87623
DT
2767The @code{source} field of a package that uses this build system
2768typically references a gem archive, since this is the format that Ruby
2769developers use when releasing their software. The build system unpacks
2770the gem archive, potentially patches the source, runs the test suite,
2771repackages the gem, and installs it. Additionally, directories and
2772tarballs may be referenced to allow building unreleased gems from Git or
2773a traditional source release tarball.
e83c6d00 2774
c08f9818 2775Which Ruby package is used can be specified with the @code{#:ruby}
6e9f2913
PP
2776parameter. A list of additional flags to be passed to the @command{gem}
2777command can be specified with the @code{#:gem-flags} parameter.
c08f9818 2778@end defvr
7458bd0a 2779
a677c726
RW
2780@defvr {Scheme Variable} waf-build-system
2781This variable is exported by @code{(guix build-system waf)}. It
2782implements a build procedure around the @code{waf} script. The common
2783phases---@code{configure}, @code{build}, and @code{install}---are
2784implemented by passing their names as arguments to the @code{waf}
2785script.
2786
2787The @code{waf} script is executed by the Python interpreter. Which
2788Python package is used to run the script can be specified with the
2789@code{#:python} parameter.
2790@end defvr
2791
14dfdf2e
FB
2792@defvr {Scheme Variable} haskell-build-system
2793This variable is exported by @code{(guix build-system haskell)}. It
2794implements the Cabal build procedure used by Haskell packages, which
2795involves running @code{runhaskell Setup.hs configure
2796--prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}.
2797Instead of installing the package by running @code{runhaskell Setup.hs
2798install}, to avoid trying to register libraries in the read-only
2799compiler store directory, the build system uses @code{runhaskell
2800Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In
2801addition, the build system generates the package documentation by
2802running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f}
2803is passed. Optional Haddock parameters can be passed with the help of
2804the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is
2805not found, the build system looks for @code{Setup.lhs} instead.
2806
2807Which Haskell compiler is used can be specified with the @code{#:haskell}
a54bd6d7 2808parameter which defaults to @code{ghc}.
14dfdf2e
FB
2809@end defvr
2810
e9137a53
FB
2811@defvr {Scheme Variable} emacs-build-system
2812This variable is exported by @code{(guix build-system emacs)}. It
2813implements an installation procedure similar to the one of Emacs' own
2814packaging system (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
2815
2816It first creates the @code{@var{package}-autoloads.el} file, then it
2817byte compiles all Emacs Lisp files. Differently from the Emacs
2818packaging system, the Info documentation files are moved to the standard
2819documentation directory and the @file{dir} file is deleted. Each
2820package is installed in its own directory under
2821@file{share/emacs/site-lisp/guix.d}.
2822@end defvr
2823
7458bd0a
LC
2824Lastly, for packages that do not need anything as sophisticated, a
2825``trivial'' build system is provided. It is trivial in the sense that
2826it provides basically no support: it does not pull any implicit inputs,
2827and does not have a notion of build phases.
2828
2829@defvr {Scheme Variable} trivial-build-system
2830This variable is exported by @code{(guix build-system trivial)}.
2831
2832This build system requires a @code{#:builder} argument. This argument
2833must be a Scheme expression that builds the package's output(s)---as
2834with @code{build-expression->derivation} (@pxref{Derivations,
2835@code{build-expression->derivation}}).
2836@end defvr
2837
568717fd
LC
2838@node The Store
2839@section The Store
2840
e531ac2a
LC
2841@cindex store
2842@cindex store paths
2843
2844Conceptually, the @dfn{store} is where derivations that have been
834129e0 2845successfully built are stored---by default, under @file{/gnu/store}.
e531ac2a 2846Sub-directories in the store are referred to as @dfn{store paths}. The
4988dd40 2847store has an associated database that contains information such as the
e531ac2a
LC
2848store paths referred to by each store path, and the list of @emph{valid}
2849store paths---paths that result from a successful build.
2850
2851The store is always accessed by the daemon on behalf of its clients
2852(@pxref{Invoking guix-daemon}). To manipulate the store, clients
2853connect to the daemon over a Unix-domain socket, send it requests, and
2854read the result---these are remote procedure calls, or RPCs.
2855
2856The @code{(guix store)} module provides procedures to connect to the
2857daemon, and to perform RPCs. These are described below.
2858
2859@deffn {Scheme Procedure} open-connection [@var{file}] [#:reserve-space? #t]
2860Connect to the daemon over the Unix-domain socket at @var{file}. When
2861@var{reserve-space?} is true, instruct it to reserve a little bit of
2862extra space on the file system so that the garbage collector can still
2863operate, should the disk become full. Return a server object.
2864
2865@var{file} defaults to @var{%default-socket-path}, which is the normal
2866location given the options that were passed to @command{configure}.
2867@end deffn
2868
2869@deffn {Scheme Procedure} close-connection @var{server}
2870Close the connection to @var{server}.
2871@end deffn
2872
2873@defvr {Scheme Variable} current-build-output-port
2874This variable is bound to a SRFI-39 parameter, which refers to the port
2875where build and error logs sent by the daemon should be written.
2876@end defvr
2877
2878Procedures that make RPCs all take a server object as their first
2879argument.
2880
2881@deffn {Scheme Procedure} valid-path? @var{server} @var{path}
2882Return @code{#t} when @var{path} is a valid store path.
2883@end deffn
2884
cfbf9160 2885@deffn {Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]
e531ac2a
LC
2886Add @var{text} under file @var{name} in the store, and return its store
2887path. @var{references} is the list of store paths referred to by the
2888resulting store path.
2889@end deffn
2890
874e6874 2891@deffn {Scheme Procedure} build-derivations @var{server} @var{derivations}
59688fc4
LC
2892Build @var{derivations} (a list of @code{<derivation>} objects or
2893derivation paths), and return when the worker is done building them.
2894Return @code{#t} on success.
874e6874
LC
2895@end deffn
2896
b860f382
LC
2897Note that the @code{(guix monads)} module provides a monad as well as
2898monadic versions of the above procedures, with the goal of making it
2899more convenient to work with code that accesses the store (@pxref{The
2900Store Monad}).
2901
e531ac2a
LC
2902@c FIXME
2903@i{This section is currently incomplete.}
568717fd
LC
2904
2905@node Derivations
2906@section Derivations
2907
874e6874
LC
2908@cindex derivations
2909Low-level build actions and the environment in which they are performed
2910are represented by @dfn{derivations}. A derivation contain the
2911following pieces of information:
2912
2913@itemize
2914@item
2915The outputs of the derivation---derivations produce at least one file or
2916directory in the store, but may produce more.
2917
2918@item
2919The inputs of the derivations, which may be other derivations or plain
2920files in the store (patches, build scripts, etc.)
2921
2922@item
2923The system type targeted by the derivation---e.g., @code{x86_64-linux}.
2924
2925@item
2926The file name of a build script in the store, along with the arguments
2927to be passed.
2928
2929@item
2930A list of environment variables to be defined.
2931
2932@end itemize
2933
2934@cindex derivation path
2935Derivations allow clients of the daemon to communicate build actions to
2936the store. They exist in two forms: as an in-memory representation,
2937both on the client- and daemon-side, and as files in the store whose
2938name end in @code{.drv}---these files are referred to as @dfn{derivation
2939paths}. Derivations paths can be passed to the @code{build-derivations}
2940procedure to perform the build actions they prescribe (@pxref{The
2941Store}).
2942
2943The @code{(guix derivations)} module provides a representation of
2944derivations as Scheme objects, along with procedures to create and
2945otherwise manipulate derivations. The lowest-level primitive to create
2946a derivation is the @code{derivation} procedure:
2947
1909431c
LC
2948@deffn {Scheme Procedure} derivation @var{store} @var{name} @var{builder} @
2949 @var{args} [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
2096ef47 2950 [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @
1909431c 2951 [#:system (%current-system)] [#:references-graphs #f] @
4a6aeb67
LC
2952 [#:allowed-references #f] [#:leaked-env-vars #f] [#:local-build? #f] @
2953 [#:substitutable? #t]
59688fc4
LC
2954Build a derivation with the given arguments, and return the resulting
2955@code{<derivation>} object.
874e6874 2956
2096ef47 2957When @var{hash} and @var{hash-algo} are given, a
874e6874 2958@dfn{fixed-output derivation} is created---i.e., one whose result is
36bbbbd1
LC
2959known in advance, such as a file download. If, in addition,
2960@var{recursive?} is true, then that fixed output may be an executable
2961file or a directory and @var{hash} must be the hash of an archive
2962containing this output.
5b0c9d16 2963
858e9282 2964When @var{references-graphs} is true, it must be a list of file
5b0c9d16
LC
2965name/store path pairs. In that case, the reference graph of each store
2966path is exported in the build environment in the corresponding file, in
2967a simple text format.
1909431c 2968
b53be755
LC
2969When @var{allowed-references} is true, it must be a list of store items
2970or outputs that the derivation's output may refer to.
2971
c0468155
LC
2972When @var{leaked-env-vars} is true, it must be a list of strings
2973denoting environment variables that are allowed to ``leak'' from the
2974daemon's environment to the build environment. This is only applicable
2975to fixed-output derivations---i.e., when @var{hash} is true. The main
2976use is to allow variables such as @code{http_proxy} to be passed to
2977derivations that download files.
2978
1909431c
LC
2979When @var{local-build?} is true, declare that the derivation is not a
2980good candidate for offloading and should rather be built locally
2981(@pxref{Daemon Offload Setup}). This is the case for small derivations
2982where the costs of data transfers would outweigh the benefits.
4a6aeb67
LC
2983
2984When @var{substitutable?} is false, declare that substitutes of the
2985derivation's output should not be used (@pxref{Substitutes}). This is
2986useful, for instance, when building packages that capture details of the
2987host CPU instruction set.
874e6874
LC
2988@end deffn
2989
2990@noindent
2991Here's an example with a shell script as its builder, assuming
2992@var{store} is an open connection to the daemon, and @var{bash} points
2993to a Bash executable in the store:
2994
2995@lisp
2996(use-modules (guix utils)
2997 (guix store)
2998 (guix derivations))
2999
59688fc4
LC
3000(let ((builder ; add the Bash script to the store
3001 (add-text-to-store store "my-builder.sh"
3002 "echo hello world > $out\n" '())))
3003 (derivation store "foo"
3004 bash `("-e" ,builder)
21b679f6 3005 #:inputs `((,bash) (,builder))
59688fc4 3006 #:env-vars '(("HOME" . "/homeless"))))
834129e0 3007@result{} #<derivation /gnu/store/@dots{}-foo.drv => /gnu/store/@dots{}-foo>
874e6874
LC
3008@end lisp
3009
21b679f6
LC
3010As can be guessed, this primitive is cumbersome to use directly. A
3011better approach is to write build scripts in Scheme, of course! The
3012best course of action for that is to write the build code as a
3013``G-expression'', and to pass it to @code{gexp->derivation}. For more
6621cdb6 3014information, @pxref{G-Expressions}.
21b679f6
LC
3015
3016Once upon a time, @code{gexp->derivation} did not exist and constructing
3017derivations with build code written in Scheme was achieved with
3018@code{build-expression->derivation}, documented below. This procedure
3019is now deprecated in favor of the much nicer @code{gexp->derivation}.
874e6874 3020
dd1a5a15
LC
3021@deffn {Scheme Procedure} build-expression->derivation @var{store} @
3022 @var{name} @var{exp} @
3023 [#:system (%current-system)] [#:inputs '()] @
3024 [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
36bbbbd1 3025 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
63a42824 3026 [#:references-graphs #f] [#:allowed-references #f] @
4a6aeb67 3027 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
874e6874
LC
3028Return a derivation that executes Scheme expression @var{exp} as a
3029builder for derivation @var{name}. @var{inputs} must be a list of
3030@code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted,
3031@code{"out"} is assumed. @var{modules} is a list of names of Guile
3032modules from the current search path to be copied in the store,
3033compiled, and made available in the load path during the execution of
3034@var{exp}---e.g., @code{((guix build utils) (guix build
3035gnu-build-system))}.
3036
3037@var{exp} is evaluated in an environment where @code{%outputs} is bound
3038to a list of output/path pairs, and where @code{%build-inputs} is bound
3039to a list of string/output-path pairs made from @var{inputs}.
3040Optionally, @var{env-vars} is a list of string pairs specifying the name
3041and value of environment variables visible to the builder. The builder
3042terminates by passing the result of @var{exp} to @code{exit}; thus, when
3043@var{exp} returns @code{#f}, the build is considered to have failed.
3044
3045@var{exp} is built using @var{guile-for-build} (a derivation). When
3046@var{guile-for-build} is omitted or is @code{#f}, the value of the
3047@code{%guile-for-build} fluid is used instead.
9c629a27 3048
63a42824 3049See the @code{derivation} procedure for the meaning of
4a6aeb67
LC
3050@var{references-graphs}, @var{allowed-references}, @var{local-build?},
3051and @var{substitutable?}.
874e6874
LC
3052@end deffn
3053
3054@noindent
3055Here's an example of a single-output derivation that creates a directory
3056containing one file:
3057
3058@lisp
3059(let ((builder '(let ((out (assoc-ref %outputs "out")))
834129e0 3060 (mkdir out) ; create /gnu/store/@dots{}-goo
874e6874
LC
3061 (call-with-output-file (string-append out "/test")
3062 (lambda (p)
3063 (display '(hello guix) p))))))
dd1a5a15 3064 (build-expression->derivation store "goo" builder))
874e6874 3065
834129e0 3066@result{} #<derivation /gnu/store/@dots{}-goo.drv => @dots{}>
874e6874
LC
3067@end lisp
3068
568717fd 3069
b860f382
LC
3070@node The Store Monad
3071@section The Store Monad
3072
3073@cindex monad
3074
3075The procedures that operate on the store described in the previous
3076sections all take an open connection to the build daemon as their first
3077argument. Although the underlying model is functional, they either have
3078side effects or depend on the current state of the store.
3079
3080The former is inconvenient: the connection to the build daemon has to be
3081carried around in all those functions, making it impossible to compose
3082functions that do not take that parameter with functions that do. The
3083latter can be problematic: since store operations have side effects
3084and/or depend on external state, they have to be properly sequenced.
3085
3086@cindex monadic values
3087@cindex monadic functions
3088This is where the @code{(guix monads)} module comes in. This module
3089provides a framework for working with @dfn{monads}, and a particularly
3090useful monad for our uses, the @dfn{store monad}. Monads are a
3091construct that allows two things: associating ``context'' with values
3092(in our case, the context is the store), and building sequences of
561fb6c3 3093computations (here computations include accesses to the store.) Values
b860f382
LC
3094in a monad---values that carry this additional context---are called
3095@dfn{monadic values}; procedures that return such values are called
3096@dfn{monadic procedures}.
3097
3098Consider this ``normal'' procedure:
3099
3100@example
45adbd62
LC
3101(define (sh-symlink store)
3102 ;; Return a derivation that symlinks the 'bash' executable.
3103 (let* ((drv (package-derivation store bash))
3104 (out (derivation->output-path drv))
3105 (sh (string-append out "/bin/bash")))
3106 (build-expression->derivation store "sh"
3107 `(symlink ,sh %output))))
b860f382
LC
3108@end example
3109
c6f30b81
LC
3110Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten
3111as a monadic function:
b860f382
LC
3112
3113@example
45adbd62 3114(define (sh-symlink)
b860f382 3115 ;; Same, but return a monadic value.
c6f30b81
LC
3116 (mlet %store-monad ((drv (package->derivation bash)))
3117 (gexp->derivation "sh"
3118 #~(symlink (string-append #$drv "/bin/bash")
3119 #$output))))
b860f382
LC
3120@end example
3121
c6f30b81
LC
3122There several things to note in the second version: the @code{store}
3123parameter is now implicit and is ``threaded'' in the calls to the
3124@code{package->derivation} and @code{gexp->derivation} monadic
3125procedures, and the monadic value returned by @code{package->derivation}
3126is @dfn{bound} using @code{mlet} instead of plain @code{let}.
3127
3128As it turns out, the call to @code{package->derivation} can even be
3129omitted since it will take place implicitly, as we will see later
3130(@pxref{G-Expressions}):
3131
3132@example
3133(define (sh-symlink)
3134 (gexp->derivation "sh"
3135 #~(symlink (string-append #$bash "/bin/bash")
3136 #$output)))
3137@end example
b860f382 3138
7ce21611
LC
3139@c See
3140@c <https://syntaxexclamation.wordpress.com/2014/06/26/escaping-continuations/>
3141@c for the funny quote.
3142Calling the monadic @code{sh-symlink} has no effect. As someone once
3143said, ``you exit a monad like you exit a building on fire: by running''.
3144So, to exit the monad and get the desired effect, one must use
3145@code{run-with-store}:
b860f382
LC
3146
3147@example
8e9aa37f
CAW
3148(run-with-store (open-connection) (sh-symlink))
3149@result{} /gnu/store/...-sh-symlink
b860f382
LC
3150@end example
3151
b9b86078
LC
3152Note that the @code{(guix monad-repl)} module extends Guile's REPL with
3153new ``meta-commands'' to make it easier to deal with monadic procedures:
3154@code{run-in-store}, and @code{enter-store-monad}. The former, is used
3155to ``run'' a single monadic value through the store:
3156
3157@example
3158scheme@@(guile-user)> ,run-in-store (package->derivation hello)
3159$1 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3160@end example
3161
3162The latter enters a recursive REPL, where all the return values are
3163automatically run through the store:
3164
3165@example
3166scheme@@(guile-user)> ,enter-store-monad
3167store-monad@@(guile-user) [1]> (package->derivation hello)
3168$2 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3169store-monad@@(guile-user) [1]> (text-file "foo" "Hello!")
3170$3 = "/gnu/store/@dots{}-foo"
3171store-monad@@(guile-user) [1]> ,q
3172scheme@@(guile-user)>
3173@end example
3174
3175@noindent
3176Note that non-monadic values cannot be returned in the
3177@code{store-monad} REPL.
3178
e87f0591
LC
3179The main syntactic forms to deal with monads in general are provided by
3180the @code{(guix monads)} module and are described below.
b860f382
LC
3181
3182@deffn {Scheme Syntax} with-monad @var{monad} @var{body} ...
3183Evaluate any @code{>>=} or @code{return} forms in @var{body} as being
3184in @var{monad}.
3185@end deffn
3186
3187@deffn {Scheme Syntax} return @var{val}
3188Return a monadic value that encapsulates @var{val}.
3189@end deffn
3190
751630c9 3191@deffn {Scheme Syntax} >>= @var{mval} @var{mproc} ...
b860f382 3192@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic
751630c9
LC
3193procedures @var{mproc}@dots{}@footnote{This operation is commonly
3194referred to as ``bind'', but that name denotes an unrelated procedure in
3195Guile. Thus we use this somewhat cryptic symbol inherited from the
3196Haskell language.}. There can be one @var{mproc} or several of them, as
3197in this example:
3198
3199@example
3200(run-with-state
3201 (with-monad %state-monad
3202 (>>= (return 1)
3203 (lambda (x) (return (+ 1 x)))
3204 (lambda (x) (return (* 2 x)))))
3205 'some-state)
3206
3207@result{} 4
3208@result{} some-state
3209@end example
b860f382
LC
3210@end deffn
3211
3212@deffn {Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @
3213 @var{body} ...
3214@deffnx {Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @
3215 @var{body} ...
3216Bind the variables @var{var} to the monadic values @var{mval} in
3217@var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the
3218``normal'' value @var{val}, as per @code{let}.
3219
3220@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let}
3221(@pxref{Local Bindings,,, guile, GNU Guile Reference Manual}).
3222@end deffn
3223
405a9d4e
LC
3224@deffn {Scheme System} mbegin @var{monad} @var{mexp} ...
3225Bind @var{mexp} and the following monadic expressions in sequence,
3226returning the result of the last expression.
3227
3228This is akin to @code{mlet}, except that the return values of the
3229monadic expressions are ignored. In that sense, it is analogous to
3230@code{begin}, but applied to monadic expressions.
3231@end deffn
3232
561fb6c3
LC
3233@cindex state monad
3234The @code{(guix monads)} module provides the @dfn{state monad}, which
3235allows an additional value---the state---to be @emph{threaded} through
3236monadic procedure calls.
3237
3238@defvr {Scheme Variable} %state-monad
3239The state monad. Procedures in the state monad can access and change
3240the state that is threaded.
3241
3242Consider the example below. The @code{square} procedure returns a value
3243in the state monad. It returns the square of its argument, but also
3244increments the current state value:
3245
3246@example
3247(define (square x)
3248 (mlet %state-monad ((count (current-state)))
3249 (mbegin %state-monad
3250 (set-current-state (+ 1 count))
3251 (return (* x x)))))
3252
3253(run-with-state (sequence %state-monad (map square (iota 3))) 0)
3254@result{} (0 1 4)
3255@result{} 3
3256@end example
3257
3258When ``run'' through @var{%state-monad}, we obtain that additional state
3259value, which is the number of @code{square} calls.
3260@end defvr
3261
3262@deffn {Monadic Procedure} current-state
3263Return the current state as a monadic value.
3264@end deffn
3265
3266@deffn {Monadic Procedure} set-current-state @var{value}
3267Set the current state to @var{value} and return the previous state as a
3268monadic value.
3269@end deffn
3270
3271@deffn {Monadic Procedure} state-push @var{value}
3272Push @var{value} to the current state, which is assumed to be a list,
3273and return the previous state as a monadic value.
3274@end deffn
3275
3276@deffn {Monadic Procedure} state-pop
3277Pop a value from the current state and return it as a monadic value.
3278The state is assumed to be a list.
3279@end deffn
3280
3281@deffn {Scheme Procedure} run-with-state @var{mval} [@var{state}]
3282Run monadic value @var{mval} starting with @var{state} as the initial
3283state. Return two values: the resulting value, and the resulting state.
3284@end deffn
3285
e87f0591
LC
3286The main interface to the store monad, provided by the @code{(guix
3287store)} module, is as follows.
b860f382
LC
3288
3289@defvr {Scheme Variable} %store-monad
561fb6c3
LC
3290The store monad---an alias for @var{%state-monad}.
3291
3292Values in the store monad encapsulate accesses to the store. When its
3293effect is needed, a value of the store monad must be ``evaluated'' by
3294passing it to the @code{run-with-store} procedure (see below.)
b860f382
LC
3295@end defvr
3296
3297@deffn {Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]
3298Run @var{mval}, a monadic value in the store monad, in @var{store}, an
3299open store connection.
3300@end deffn
3301
ad372953 3302@deffn {Monadic Procedure} text-file @var{name} @var{text} [@var{references}]
b860f382 3303Return as a monadic value the absolute file name in the store of the file
ad372953
LC
3304containing @var{text}, a string. @var{references} is a list of store items that the
3305resulting text file refers to; it defaults to the empty list.
45adbd62
LC
3306@end deffn
3307
0a90af15
LC
3308@deffn {Monadic Procedure} interned-file @var{file} [@var{name}] @
3309 [#:recursive? #t]
3310Return the name of @var{file} once interned in the store. Use
3311@var{name} as its store name, or the basename of @var{file} if
3312@var{name} is omitted.
3313
3314When @var{recursive?} is true, the contents of @var{file} are added
3315recursively; if @var{file} designates a flat file and @var{recursive?}
3316is true, its contents are added, and its permission bits are kept.
3317
3318The example below adds a file to the store, under two different names:
3319
3320@example
3321(run-with-store (open-connection)
3322 (mlet %store-monad ((a (interned-file "README"))
3323 (b (interned-file "README" "LEGU-MIN")))
3324 (return (list a b))))
3325
3326@result{} ("/gnu/store/rwm@dots{}-README" "/gnu/store/44i@dots{}-LEGU-MIN")
3327@end example
3328
3329@end deffn
3330
e87f0591
LC
3331The @code{(guix packages)} module exports the following package-related
3332monadic procedures:
3333
b860f382 3334@deffn {Monadic Procedure} package-file @var{package} [@var{file}] @
4231f05b
LC
3335 [#:system (%current-system)] [#:target #f] @
3336 [#:output "out"] Return as a monadic
b860f382
LC
3337value in the absolute file name of @var{file} within the @var{output}
3338directory of @var{package}. When @var{file} is omitted, return the name
4231f05b
LC
3339of the @var{output} directory of @var{package}. When @var{target} is
3340true, use it as a cross-compilation target triplet.
b860f382
LC
3341@end deffn
3342
b860f382 3343@deffn {Monadic Procedure} package->derivation @var{package} [@var{system}]
4231f05b
LC
3344@deffnx {Monadic Procedure} package->cross-derivation @var{package} @
3345 @var{target} [@var{system}]
3346Monadic version of @code{package-derivation} and
3347@code{package-cross-derivation} (@pxref{Defining Packages}).
b860f382
LC
3348@end deffn
3349
3350
21b679f6
LC
3351@node G-Expressions
3352@section G-Expressions
3353
3354@cindex G-expression
3355@cindex build code quoting
3356So we have ``derivations'', which represent a sequence of build actions
3357to be performed to produce an item in the store (@pxref{Derivations}).
3358Those build actions are performed when asking the daemon to actually
3359build the derivations; they are run by the daemon in a container
3360(@pxref{Invoking guix-daemon}).
3361
3362@cindex strata of code
3363It should come as no surprise that we like to write those build actions
3364in Scheme. When we do that, we end up with two @dfn{strata} of Scheme
3365code@footnote{The term @dfn{stratum} in this context was coined by
ef4ab0a4
LC
3366Manuel Serrano et al.@: in the context of their work on Hop. Oleg
3367Kiselyov, who has written insightful
3368@url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code
3369on this topic}, refers to this kind of code generation as
3370@dfn{staging}.}: the ``host code''---code that defines packages, talks
3371to the daemon, etc.---and the ``build code''---code that actually
3372performs build actions, such as making directories, invoking
3373@command{make}, etc.
21b679f6
LC
3374
3375To describe a derivation and its build actions, one typically needs to
3376embed build code inside host code. It boils down to manipulating build
3377code as data, and Scheme's homoiconicity---code has a direct
3378representation as data---comes in handy for that. But we need more than
3379Scheme's normal @code{quasiquote} mechanism to construct build
3380expressions.
3381
3382The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of
3383S-expressions adapted to build expressions. G-expressions, or
3384@dfn{gexps}, consist essentially in three syntactic forms: @code{gexp},
3385@code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~},
3386@code{#$}, and @code{#$@@}), which are comparable respectively to
3387@code{quasiquote}, @code{unquote}, and @code{unquote-splicing}
3388(@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile
3389Reference Manual}). However, there are major differences:
3390
3391@itemize
3392@item
3393Gexps are meant to be written to a file and run or manipulated by other
3394processes.
3395
3396@item
b39fc6f7
LC
3397When a high-level object such as a package or derivation is unquoted
3398inside a gexp, the result is as if its output file name had been
3399introduced.
ff40e9b7 3400
21b679f6
LC
3401@item
3402Gexps carry information about the packages or derivations they refer to,
3403and these dependencies are automatically added as inputs to the build
3404processes that use them.
3405@end itemize
3406
c2b84676 3407@cindex lowering, of high-level objects in gexps
343eacbe
LC
3408This mechanism is not limited to package and derivation
3409objects: @dfn{compilers} able to ``lower'' other high-level objects to
c2b84676
LC
3410derivations or files in the store can be defined,
3411such that these objects can also be inserted
343eacbe
LC
3412into gexps. For example, a useful type of high-level object that can be
3413inserted in a gexp is ``file-like objects'', which make it easy to
3414add files to the store and refer to them in
558e8b11
LC
3415derivations and such (see @code{local-file} and @code{plain-file}
3416below.)
b39fc6f7 3417
21b679f6
LC
3418To illustrate the idea, here is an example of a gexp:
3419
3420@example
3421(define build-exp
3422 #~(begin
3423 (mkdir #$output)
3424 (chdir #$output)
aff8ce7c 3425 (symlink (string-append #$coreutils "/bin/ls")
21b679f6
LC
3426 "list-files")))
3427@end example
3428
3429This gexp can be passed to @code{gexp->derivation}; we obtain a
3430derivation that builds a directory containing exactly one symlink to
3431@file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:
3432
3433@example
3434(gexp->derivation "the-thing" build-exp)
3435@end example
3436
e20fd1bf 3437As one would expect, the @code{"/gnu/store/@dots{}-coreutils-8.22"} string is
21b679f6
LC
3438substituted to the reference to the @var{coreutils} package in the
3439actual build code, and @var{coreutils} is automatically made an input to
3440the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp
3441output)}) is replaced by a string containing the derivation's output
667b2508
LC
3442directory name.
3443
3444@cindex cross compilation
3445In a cross-compilation context, it is useful to distinguish between
3446references to the @emph{native} build of a package---that can run on the
3447host---versus references to cross builds of a package. To that end, the
3448@code{#+} plays the same role as @code{#$}, but is a reference to a
3449native package build:
3450
3451@example
3452(gexp->derivation "vi"
3453 #~(begin
3454 (mkdir #$output)
3455 (system* (string-append #+coreutils "/bin/ln")
3456 "-s"
3457 (string-append #$emacs "/bin/emacs")
3458 (string-append #$output "/bin/vi")))
3459 #:target "mips64el-linux")
3460@end example
3461
3462@noindent
3463In the example above, the native build of @var{coreutils} is used, so
3464that @command{ln} can actually run on the host; but then the
3465cross-compiled build of @var{emacs} is referenced.
3466
3467The syntactic form to construct gexps is summarized below.
21b679f6
LC
3468
3469@deffn {Scheme Syntax} #~@var{exp}
3470@deffnx {Scheme Syntax} (gexp @var{exp})
3471Return a G-expression containing @var{exp}. @var{exp} may contain one
3472or more of the following forms:
3473
3474@table @code
3475@item #$@var{obj}
3476@itemx (ungexp @var{obj})
b39fc6f7
LC
3477Introduce a reference to @var{obj}. @var{obj} may have one of the
3478supported types, for example a package or a
21b679f6
LC
3479derivation, in which case the @code{ungexp} form is replaced by its
3480output file name---e.g., @code{"/gnu/store/@dots{}-coreutils-8.22}.
3481
b39fc6f7
LC
3482If @var{obj} is a list, it is traversed and references to supported
3483objects are substituted similarly.
21b679f6
LC
3484
3485If @var{obj} is another gexp, its contents are inserted and its
3486dependencies are added to those of the containing gexp.
3487
3488If @var{obj} is another kind of object, it is inserted as is.
3489
b39fc6f7
LC
3490@item #$@var{obj}:@var{output}
3491@itemx (ungexp @var{obj} @var{output})
21b679f6 3492This is like the form above, but referring explicitly to the
b39fc6f7
LC
3493@var{output} of @var{obj}---this is useful when @var{obj} produces
3494multiple outputs (@pxref{Packages with Multiple Outputs}).
21b679f6 3495
667b2508
LC
3496@item #+@var{obj}
3497@itemx #+@var{obj}:output
3498@itemx (ungexp-native @var{obj})
3499@itemx (ungexp-native @var{obj} @var{output})
3500Same as @code{ungexp}, but produces a reference to the @emph{native}
3501build of @var{obj} when used in a cross compilation context.
3502
21b679f6
LC
3503@item #$output[:@var{output}]
3504@itemx (ungexp output [@var{output}])
3505Insert a reference to derivation output @var{output}, or to the main
3506output when @var{output} is omitted.
3507
3508This only makes sense for gexps passed to @code{gexp->derivation}.
3509
3510@item #$@@@var{lst}
3511@itemx (ungexp-splicing @var{lst})
3512Like the above, but splices the contents of @var{lst} inside the
3513containing list.
3514
667b2508
LC
3515@item #+@@@var{lst}
3516@itemx (ungexp-native-splicing @var{lst})
3517Like the above, but refers to native builds of the objects listed in
3518@var{lst}.
3519
21b679f6
LC
3520@end table
3521
3522G-expressions created by @code{gexp} or @code{#~} are run-time objects
3523of the @code{gexp?} type (see below.)
3524@end deffn
3525
3526@deffn {Scheme Procedure} gexp? @var{obj}
3527Return @code{#t} if @var{obj} is a G-expression.
3528@end deffn
3529
3530G-expressions are meant to be written to disk, either as code building
3531some derivation, or as plain files in the store. The monadic procedures
3532below allow you to do that (@pxref{The Store Monad}, for more
3533information about monads.)
3534
3535@deffn {Monadic Procedure} gexp->derivation @var{name} @var{exp} @
ce45eb4c 3536 [#:system (%current-system)] [#:target #f] [#:graft? #t] @
21b679f6
LC
3537 [#:hash #f] [#:hash-algo #f] @
3538 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
4684f301 3539 [#:module-path @var{%load-path}] @
c8351d9a 3540 [#:references-graphs #f] [#:allowed-references #f] @
c0468155 3541 [#:leaked-env-vars #f] @
0309e1b0 3542 [#:script-name (string-append @var{name} "-builder")] @
4a6aeb67 3543 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
21b679f6 3544Return a derivation @var{name} that runs @var{exp} (a gexp) with
0309e1b0
LC
3545@var{guile-for-build} (a derivation) on @var{system}; @var{exp} is
3546stored in a file called @var{script-name}. When @var{target} is true,
3547it is used as the cross-compilation target triplet for packages referred
3548to by @var{exp}.
21b679f6 3549
ce45eb4c
LC
3550Make @var{modules} available in the evaluation context of @var{exp};
3551@var{modules} is a list of names of Guile modules searched in
3552@var{module-path} to be copied in the store, compiled, and made available in
21b679f6
LC
3553the load path during the execution of @var{exp}---e.g., @code{((guix
3554build utils) (guix build gnu-build-system))}.
3555
ce45eb4c
LC
3556@var{graft?} determines whether packages referred to by @var{exp} should be grafted when
3557applicable.
3558
b53833b2
LC
3559When @var{references-graphs} is true, it must be a list of tuples of one of the
3560following forms:
3561
3562@example
3563(@var{file-name} @var{package})
3564(@var{file-name} @var{package} @var{output})
3565(@var{file-name} @var{derivation})
3566(@var{file-name} @var{derivation} @var{output})
3567(@var{file-name} @var{store-item})
3568@end example
3569
3570The right-hand-side of each element of @var{references-graphs} is automatically made
3571an input of the build process of @var{exp}. In the build environment, each
3572@var{file-name} contains the reference graph of the corresponding item, in a simple
3573text format.
3574
c8351d9a
LC
3575@var{allowed-references} must be either @code{#f} or a list of output names and packages.
3576In the latter case, the list denotes store items that the result is allowed to
3577refer to. Any reference to another store item will lead to a build error.
3578
e20fd1bf 3579The other arguments are as for @code{derivation} (@pxref{Derivations}).
21b679f6
LC
3580@end deffn
3581
343eacbe 3582@cindex file-like objects
e1c153e0
LC
3583The @code{local-file}, @code{plain-file}, @code{computed-file},
3584@code{program-file}, and @code{scheme-file} procedures below return
3585@dfn{file-like objects}. That is, when unquoted in a G-expression,
3586these objects lead to a file in the store. Consider this G-expression:
343eacbe
LC
3587
3588@example
3589#~(system* (string-append #$glibc "/sbin/nscd") "-f"
3590 #$(local-file "/tmp/my-nscd.conf"))
3591@end example
3592
3593The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it
3594to the store. Once expanded, for instance @i{via}
3595@code{gexp->derivation}, the G-expression refers to that copy under
3596@file{/gnu/store}; thus, modifying or removing the file in @file{/tmp}
3597does not have any effect on what the G-expression does.
3598@code{plain-file} can be used similarly; it differs in that the file
3599content is directly passed as a string.
3600
d9ae938f
LC
3601@deffn {Scheme Procedure} local-file @var{file} [@var{name}] @
3602 [#:recursive? #t]
3603Return an object representing local file @var{file} to add to the store; this
9d3994f7
LC
3604object can be used in a gexp. If @var{file} is a relative file name, it is looked
3605up relative to the source file where this form appears. @var{file} will be added to
3606the store under @var{name}--by default the base name of @var{file}.
d9ae938f
LC
3607
3608When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file}
3609designates a flat file and @var{recursive?} is true, its contents are added, and its
3610permission bits are kept.
3611
3612This is the declarative counterpart of the @code{interned-file} monadic
3613procedure (@pxref{The Store Monad, @code{interned-file}}).
3614@end deffn
3615
558e8b11
LC
3616@deffn {Scheme Procedure} plain-file @var{name} @var{content}
3617Return an object representing a text file called @var{name} with the given
3618@var{content} (a string) to be added to the store.
3619
3620This is the declarative counterpart of @code{text-file}.
3621@end deffn
3622
91937029
LC
3623@deffn {Scheme Procedure} computed-file @var{name} @var{gexp} @
3624 [#:modules '()] [#:options '(#:local-build? #t)]
3625Return an object representing the store item @var{name}, a file or
3626directory computed by @var{gexp}. @var{modules} specifies the set of
3627modules visible in the execution context of @var{gexp}. @var{options}
3628is a list of additional arguments to pass to @code{gexp->derivation}.
3629
3630This is the declarative counterpart of @code{gexp->derivation}.
3631@end deffn
3632
21b679f6
LC
3633@deffn {Monadic Procedure} gexp->script @var{name} @var{exp}
3634Return an executable script @var{name} that runs @var{exp} using
3635@var{guile} with @var{modules} in its search path.
3636
3637The example below builds a script that simply invokes the @command{ls}
3638command:
3639
3640@example
3641(use-modules (guix gexp) (gnu packages base))
3642
3643(gexp->script "list-files"
3644 #~(execl (string-append #$coreutils "/bin/ls")
3645 "ls"))
3646@end example
3647
3648When ``running'' it through the store (@pxref{The Store Monad,
e20fd1bf 3649@code{run-with-store}}), we obtain a derivation that produces an
21b679f6
LC
3650executable file @file{/gnu/store/@dots{}-list-files} along these lines:
3651
3652@example
3653#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds
3654!#
3655(execl (string-append "/gnu/store/@dots{}-coreutils-8.22"/bin/ls")
3656 "ls")
3657@end example
3658@end deffn
3659
15a01c72
LC
3660@deffn {Scheme Procedure} program-file @var{name} @var{exp} @
3661 [#:modules '()] [#:guile #f]
3662Return an object representing the executable store item @var{name} that
3663runs @var{gexp}. @var{guile} is the Guile package used to execute that
3664script, and @var{modules} is the list of modules visible to that script.
3665
3666This is the declarative counterpart of @code{gexp->script}.
3667@end deffn
3668
21b679f6
LC
3669@deffn {Monadic Procedure} gexp->file @var{name} @var{exp}
3670Return a derivation that builds a file @var{name} containing @var{exp}.
3671
3672The resulting file holds references to all the dependencies of @var{exp}
3673or a subset thereof.
3674@end deffn
1ed19464 3675
e1c153e0
LC
3676@deffn {Scheme Procedure} scheme-file @var{name} @var{exp}
3677Return an object representing the Scheme file @var{name} that contains
3678@var{exp}.
3679
3680This is the declarative counterpart of @code{gexp->file}.
3681@end deffn
3682
1ed19464
LC
3683@deffn {Monadic Procedure} text-file* @var{name} @var{text} @dots{}
3684Return as a monadic value a derivation that builds a text file
3685containing all of @var{text}. @var{text} may list, in addition to
d9ae938f
LC
3686strings, objects of any type that can be used in a gexp: packages,
3687derivations, local file objects, etc. The resulting store file holds
3688references to all these.
1ed19464
LC
3689
3690This variant should be preferred over @code{text-file} anytime the file
3691to create will reference items from the store. This is typically the
3692case when building a configuration file that embeds store file names,
3693like this:
3694
3695@example
3696(define (profile.sh)
3697 ;; Return the name of a shell script in the store that
3698 ;; initializes the 'PATH' environment variable.
3699 (text-file* "profile.sh"
3700 "export PATH=" coreutils "/bin:"
3701 grep "/bin:" sed "/bin\n"))
3702@end example
3703
3704In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file
3705will references @var{coreutils}, @var{grep}, and @var{sed}, thereby
3706preventing them from being garbage-collected during its lifetime.
3707@end deffn
21b679f6 3708
b751cde3
LC
3709@deffn {Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}
3710Return an object representing store file @var{name} containing
3711@var{text}. @var{text} is a sequence of strings and file-like objects,
3712as in:
3713
3714@example
3715(mixed-text-file "profile"
3716 "export PATH=" coreutils "/bin:" grep "/bin")
3717@end example
3718
3719This is the declarative counterpart of @code{text-file*}.
3720@end deffn
3721
21b679f6
LC
3722Of course, in addition to gexps embedded in ``host'' code, there are
3723also modules containing build tools. To make it clear that they are
3724meant to be used in the build stratum, these modules are kept in the
3725@code{(guix build @dots{})} name space.
3726
c2b84676
LC
3727@cindex lowering, of high-level objects in gexps
3728Internally, high-level objects are @dfn{lowered}, using their compiler,
3729to either derivations or store items. For instance, lowering a package
3730yields a derivation, and lowering a @code{plain-file} yields a store
3731item. This is achieved using the @code{lower-object} monadic procedure.
3732
3733@deffn {Monadic Procedure} lower-object @var{obj} [@var{system}] @
3734 [#:target #f]
3735Return as a value in @var{%store-monad} the derivation or store item
3736corresponding to @var{obj} for @var{system}, cross-compiling for
3737@var{target} if @var{target} is true. @var{obj} must be an object that
3738has an associated gexp compiler, such as a @code{<package>}.
3739@end deffn
3740
21b679f6 3741
568717fd
LC
3742@c *********************************************************************
3743@node Utilities
3744@chapter Utilities
3745
210cc920
LC
3746This section describes tools primarily targeted at developers and users
3747who write new package definitions. They complement the Scheme
3748programming interface of Guix in a convenient way.
3749
568717fd 3750@menu
37166310 3751* Invoking guix build:: Building packages from the command line.
39bee8a2 3752* Invoking guix edit:: Editing package definitions.
210cc920 3753* Invoking guix download:: Downloading a file and printing its hash.
37166310 3754* Invoking guix hash:: Computing the cryptographic hash of a file.
2f7d2d91 3755* Invoking guix import:: Importing package definitions.
37166310 3756* Invoking guix refresh:: Updating package definitions.
b4f5e0e8 3757* Invoking guix lint:: Finding errors in package definitions.
fcc58db6 3758* Invoking guix size:: Profiling disk usage.
88856916 3759* Invoking guix graph:: Visualizing the graph of packages.
372c4bbc 3760* Invoking guix environment:: Setting up development environments.
aff8ce7c 3761* Invoking guix publish:: Sharing substitutes.
d23c20f1 3762* Invoking guix challenge:: Challenging substitute servers.
32efa254 3763* Invoking guix container:: Process isolation.
568717fd
LC
3764@end menu
3765
e49951eb
MW
3766@node Invoking guix build
3767@section Invoking @command{guix build}
568717fd 3768
e49951eb 3769The @command{guix build} command builds packages or derivations and
6798a8e4
LC
3770their dependencies, and prints the resulting store paths. Note that it
3771does not modify the user's profile---this is the job of the
e49951eb 3772@command{guix package} command (@pxref{Invoking guix package}). Thus,
6798a8e4
LC
3773it is mainly useful for distribution developers.
3774
3775The general syntax is:
c78bd12b
LC
3776
3777@example
e49951eb 3778guix build @var{options} @var{package-or-derivation}@dots{}
c78bd12b
LC
3779@end example
3780
ccd7158d
LC
3781As an example, the following command builds the latest version of Emacs
3782and of Guile, displays their build logs, and finally displays the
3783resulting directories:
3784
3785@example
3786guix build emacs guile
3787@end example
3788
3789Similarly, the following command builds all the available packages:
3790
3791@example
3792guix build --keep-going \
3793 `guix package -A | cut -f1,2 --output-delimiter=@@`
3794@end example
3795
c78bd12b 3796@var{package-or-derivation} may be either the name of a package found in
5401dd75
LC
3797the software distribution such as @code{coreutils} or
3798@code{coreutils-8.20}, or a derivation such as
834129e0 3799@file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a
e7f34eb0
LC
3800package with the corresponding name (and optionally version) is searched
3801for among the GNU distribution modules (@pxref{Package Modules}).
3802
3803Alternatively, the @code{--expression} option may be used to specify a
3804Scheme expression that evaluates to a package; this is useful when
3805disambiguation among several same-named packages or package variants is
3806needed.
c78bd12b 3807
ccd7158d
LC
3808There may be zero or more @var{options}. The available options are
3809described in the subsections below.
3810
3811@menu
3812* Common Build Options:: Build options for most commands.
3813* Additional Build Options:: Options specific to 'guix build'.
3814@end menu
3815
3816@node Common Build Options
3817@subsection Common Build Options
3818
3819A number of options that control the build process are common to
3820@command{guix build} and other commands that can spawn builds, such as
3821@command{guix package} or @command{guix archive}. These are the
3822following:
3823
3824@table @code
3825
3826@item --load-path=@var{directory}
3827@itemx -L @var{directory}
3828Add @var{directory} to the front of the package module search path
3829(@pxref{Package Modules}).
3830
3831This allows users to define their own packages and make them visible to
3832the command-line tools.
3833
3834@item --keep-failed
3835@itemx -K
3836Keep the build tree of failed builds. Thus, if a build fail, its build
3837tree is kept under @file{/tmp}, in a directory whose name is shown at
3838the end of the build log. This is useful when debugging build issues.
3839
3840@item --keep-going
3841@itemx -k
3842Keep going when some of the derivations fail to build; return only once
3843all the builds have either completed or failed.
3844
3845The default behavior is to stop as soon as one of the specified
3846derivations has failed.
3847
3848@item --dry-run
3849@itemx -n
3850Do not build the derivations.
3851
3852@item --fallback
3853When substituting a pre-built binary fails, fall back to building
3854packages locally.
3855
3856@item --substitute-urls=@var{urls}
3857@anchor{client-substitute-urls}
3858Consider @var{urls} the whitespace-separated list of substitute source
3859URLs, overriding the default list of URLs of @command{guix-daemon}
3860(@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs}).
3861
3862This means that substitutes may be downloaded from @var{urls}, provided
3863they are signed by a key authorized by the system administrator
3864(@pxref{Substitutes}).
3865
3866@item --no-substitutes
3867Do not use substitutes for build products. That is, always build things
3868locally instead of allowing downloads of pre-built binaries
3869(@pxref{Substitutes}).
3870
3871@item --rounds=@var{n}
3872Build each derivation @var{n} times in a row, and raise an error if
3873consecutive build results are not bit-for-bit identical.
3874
3875This is a useful way to detect non-deterministic builds processes.
3876Non-deterministic build processes are a problem because they make it
3877practically impossible for users to @emph{verify} whether third-party
3878binaries are genuine. @xref{Invoking guix challenge}, for more.
3879
3880Note that, currently, the differing build results are not kept around,
3881so you will have to manually investigate in case of an error---e.g., by
3882stashing one of the build results with @code{guix archive --export},
3883then rebuilding, and finally comparing the two results.
3884
3885@item --no-build-hook
3886Do not attempt to offload builds @i{via} the daemon's ``build hook''
3887(@pxref{Daemon Offload Setup}). That is, always build things locally
3888instead of offloading builds to remote machines.
3889
3890@item --max-silent-time=@var{seconds}
3891When the build or substitution process remains silent for more than
3892@var{seconds}, terminate it and report a build failure.
3893
3894@item --timeout=@var{seconds}
3895Likewise, when the build or substitution process lasts for more than
3896@var{seconds}, terminate it and report a build failure.
3897
3898By default there is no timeout. This behavior can be restored with
3899@code{--timeout=0}.
3900
3901@item --verbosity=@var{level}
3902Use the given verbosity level. @var{level} must be an integer between 0
3903and 5; higher means more verbose output. Setting a level of 4 or more
3904may be helpful when debugging setup issues with the build daemon.
3905
3906@item --cores=@var{n}
3907@itemx -c @var{n}
3908Allow the use of up to @var{n} CPU cores for the build. The special
3909value @code{0} means to use as many CPU cores as available.
3910
3911@item --max-jobs=@var{n}
3912@itemx -M @var{n}
3913Allow at most @var{n} build jobs in parallel. @xref{Invoking
3914guix-daemon, @code{--max-jobs}}, for details about this option and the
3915equivalent @command{guix-daemon} option.
3916
3917@end table
3918
3919Behind the scenes, @command{guix build} is essentially an interface to
3920the @code{package-derivation} procedure of the @code{(guix packages)}
3921module, and to the @code{build-derivations} procedure of the @code{(guix
3922derivations)} module.
3923
3924In addition to options explicitly passed on the command line,
3925@command{guix build} and other @command{guix} commands that support
3926building honor the @code{GUIX_BUILD_OPTIONS} environment variable.
3927
3928@defvr {Environment Variable} GUIX_BUILD_OPTIONS
3929Users can define this variable to a list of command line options that
3930will automatically be used by @command{guix build} and other
3931@command{guix} commands that can perform builds, as in the example
3932below:
3933
3934@example
3935$ export GUIX_BUILD_OPTIONS="--no-substitutes -c 2 -L /foo/bar"
3936@end example
3937
3938These options are parsed independently, and the result is appended to
3939the parsed command-line options.
3940@end defvr
3941
3942@node Additional Build Options
3943@subsection Additional Build Options
3944
3945The command-line options presented below are specific to @command{guix
3946build}.
c78bd12b
LC
3947
3948@table @code
3949
34a1783f
DT
3950@item --file=@var{file}
3951@itemx -f @var{file}
3952
3953Build the package or derivation that the code within @var{file}
3954evaluates to.
3955
3956As an example, @var{file} might contain a package definition like this
3957(@pxref{Defining Packages}):
3958
3959@example
3960@verbatiminclude package-hello.scm
3961@end example
3962
c78bd12b
LC
3963@item --expression=@var{expr}
3964@itemx -e @var{expr}
ac5de156 3965Build the package or derivation @var{expr} evaluates to.
c78bd12b 3966
5401dd75 3967For example, @var{expr} may be @code{(@@ (gnu packages guile)
c78bd12b
LC
3968guile-1.8)}, which unambiguously designates this specific variant of
3969version 1.8 of Guile.
3970
56b82106
LC
3971Alternately, @var{expr} may be a G-expression, in which case it is used
3972as a build program passed to @code{gexp->derivation}
3973(@pxref{G-Expressions}).
3974
3975Lastly, @var{expr} may refer to a zero-argument monadic procedure
ac5de156
LC
3976(@pxref{The Store Monad}). The procedure must return a derivation as a
3977monadic value, which is then passed through @code{run-with-store}.
3978
c78bd12b
LC
3979@item --source
3980@itemx -S
3981Build the packages' source derivations, rather than the packages
3982themselves.
3983
e49951eb 3984For instance, @code{guix build -S gcc} returns something like
834129e0 3985@file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is GCC's source tarball.
c78bd12b 3986
f9cc8971
LC
3987The returned source tarball is the result of applying any patches and
3988code snippets specified in the package's @code{origin} (@pxref{Defining
3989Packages}).
3990
2cdfe13d
EB
3991@item --sources
3992Fetch and return the source of @var{package-or-derivation} and all their
3993dependencies, recursively. This is a handy way to obtain a local copy
3994of all the source code needed to build @var{packages}, allowing you to
3995eventually build them even without network access. It is an extension
3996of the @code{--source} option and can accept one of the following
3997optional argument values:
3998
3999@table @code
4000@item package
4001This value causes the @code{--sources} option to behave in the same way
4002as the @code{--source} option.
4003
4004@item all
4005Build all packages' source derivations, including any source that might
4006be listed as @code{inputs}. This is the default value.
4007
4008@example
4009$ guix build --sources tzdata
4010The following derivations will be built:
4011 /gnu/store/@dots{}-tzdata2015b.tar.gz.drv
4012 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
4013@end example
4014
4015@item transitive
4016Build all packages' source derivations, as well as all source
4017derivations for packages' transitive inputs. This can be used e.g. to
4018prefetch package source for later offline building.
4019
4020@example
4021$ guix build --sources=transitive tzdata
4022The following derivations will be built:
4023 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
4024 /gnu/store/@dots{}-findutils-4.4.2.tar.xz.drv
4025 /gnu/store/@dots{}-grep-2.21.tar.xz.drv
4026 /gnu/store/@dots{}-coreutils-8.23.tar.xz.drv
4027 /gnu/store/@dots{}-make-4.1.tar.xz.drv
4028 /gnu/store/@dots{}-bash-4.3.tar.xz.drv
4029@dots{}
4030@end example
4031
4032@end table
4033
c78bd12b
LC
4034@item --system=@var{system}
4035@itemx -s @var{system}
4036Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of
4037the host's system type.
4038
4039An example use of this is on Linux-based systems, which can emulate
4040different personalities. For instance, passing
4041@code{--system=i686-linux} on an @code{x86_64-linux} system allows users
4042to build packages in a complete 32-bit environment.
4043
e55ec43d
LC
4044@item --target=@var{triplet}
4045@cindex cross-compilation
4046Cross-build for @var{triplet}, which must be a valid GNU triplet, such
4047as @code{"mips64el-linux-gnu"} (@pxref{Configuration Names, GNU
4048configuration triplets,, configure, GNU Configure and Build System}).
4049
7f3673f2
LC
4050@item --with-source=@var{source}
4051Use @var{source} as the source of the corresponding package.
4052@var{source} must be a file name or a URL, as for @command{guix
4053download} (@pxref{Invoking guix download}).
4054
4055The ``corresponding package'' is taken to be one specified on the
4056command line whose name matches the base of @var{source}---e.g., if
4057@var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding
4058package is @code{guile}. Likewise, the version string is inferred from
4059@var{source}; in the previous example, it's @code{2.0.10}.
4060
4061This option allows users to try out versions of packages other than the
4062one provided by the distribution. The example below downloads
4063@file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for
4064the @code{ed} package:
4065
4066@example
4067guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz
4068@end example
4069
4070As a developer, @code{--with-source} makes it easy to test release
4071candidates:
4072
4073@example
4074guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz
4075@end example
4076
a43b55f1
LC
4077@dots{} or to build from a checkout in a pristine environment:
4078
4079@example
4080$ git clone git://git.sv.gnu.org/guix.git
4081$ guix build guix --with-source=./guix
4082@end example
4083
a8d65643
LC
4084@anchor{build-check}
4085@item --check
4086@cindex determinism, checking
4087@cindex reproducibility, checking
4088Rebuild @var{package-or-derivation}, which are already available in the
4089store, and raise an error if the build results are not bit-for-bit
4090identical.
4091
4092This mechanism allows you to check whether previously-installed
4093substitutes are genuine (@pxref{Substitutes}), or whether a package's
4094build result is deterministic. @xref{Invoking guix challenge}, for more
4095background information and tools.
4096
05962f29
LC
4097@item --no-grafts
4098Do not ``graft'' packages. In practice, this means that package updates
4099available as grafts are not applied. @xref{Security Updates}, for more
4100information on grafts.
7f3673f2 4101
c78bd12b
LC
4102@item --derivations
4103@itemx -d
4104Return the derivation paths, not the output paths, of the given
4105packages.
4106
70ee5642
LC
4107@item --root=@var{file}
4108@itemx -r @var{file}
4109Make @var{file} a symlink to the result, and register it as a garbage
4110collector root.
4111
4112@item --log-file
3f208ad7 4113Return the build log file names or URLs for the given
70ee5642
LC
4114@var{package-or-derivation}s, or raise an error if build logs are
4115missing.
4116
4117This works regardless of how packages or derivations are specified. For
4118instance, the following invocations are equivalent:
4119
4120@example
4121guix build --log-file `guix build -d guile`
4122guix build --log-file `guix build guile`
4123guix build --log-file guile
4124guix build --log-file -e '(@@ (gnu packages guile) guile-2.0)'
4125@end example
4126
3f208ad7
LC
4127If a log is unavailable locally, and unless @code{--no-substitutes} is
4128passed, the command looks for a corresponding log on one of the
4129substitute servers (as specified with @code{--substitute-urls}.)
70ee5642 4130
3f208ad7
LC
4131So for instance, let's say you want to see the build log of GDB on MIPS
4132but you're actually on an @code{x86_64} machine:
4133
4134@example
4135$ guix build --log-file gdb -s mips64el-linux
4136http://hydra.gnu.org/log/@dots{}-gdb-7.10
4137@end example
4138
4139You can freely access a huge library of build logs!
70ee5642
LC
4140@end table
4141
16eb115e 4142
39bee8a2
LC
4143@node Invoking guix edit
4144@section Invoking @command{guix edit}
4145
4146@cindex package definition, editing
4147So many packages, so many source files! The @command{guix edit} command
4148facilitates the life of packagers by pointing their editor at the source
4149file containing the definition of the specified packages. For instance:
4150
4151@example
4152guix edit gcc-4.8 vim
4153@end example
4154
4155@noindent
6237b9fa
LC
4156launches the program specified in the @code{VISUAL} or in the
4157@code{EDITOR} environment variable to edit the recipe of GCC@tie{}4.8.4
4158and that of Vim.
39bee8a2
LC
4159
4160If you are using Emacs, note that the Emacs user interface provides
6248e326
AK
4161similar functionality in the ``package info'' and ``package list''
4162buffers created by @kbd{M-x guix-search-by-name} and similar commands
4163(@pxref{Emacs Commands}).
39bee8a2
LC
4164
4165
210cc920
LC
4166@node Invoking guix download
4167@section Invoking @command{guix download}
4168
4169When writing a package definition, developers typically need to download
4170the package's source tarball, compute its SHA256 hash, and write that
4171hash in the package definition (@pxref{Defining Packages}). The
4172@command{guix download} tool helps with this task: it downloads a file
4173from the given URI, adds it to the store, and prints both its file name
4174in the store and its SHA256 hash.
4175
4176The fact that the downloaded file is added to the store saves bandwidth:
4177when the developer eventually tries to build the newly defined package
4178with @command{guix build}, the source tarball will not have to be
4179downloaded again because it is already in the store. It is also a
4180convenient way to temporarily stash files, which may be deleted
4181eventually (@pxref{Invoking guix gc}).
4182
4183The @command{guix download} command supports the same URIs as used in
4184package definitions. In particular, it supports @code{mirror://} URIs.
4185@code{https} URIs (HTTP over TLS) are supported @emph{provided} the
4186Guile bindings for GnuTLS are available in the user's environment; when
537c8bb3
LC
4187they are not available, an error is raised. @xref{Guile Preparations,
4188how to install the GnuTLS bindings for Guile,, gnutls-guile,
4189GnuTLS-Guile}, for more information.
210cc920
LC
4190
4191The following option is available:
4192
4193@table @code
4194@item --format=@var{fmt}
4195@itemx -f @var{fmt}
4196Write the hash in the format specified by @var{fmt}. For more
081145cf 4197information on the valid values for @var{fmt}, @pxref{Invoking guix hash}.
210cc920
LC
4198@end table
4199
6c365eca
NK
4200@node Invoking guix hash
4201@section Invoking @command{guix hash}
4202
210cc920 4203The @command{guix hash} command computes the SHA256 hash of a file.
6c365eca
NK
4204It is primarily a convenience tool for anyone contributing to the
4205distribution: it computes the cryptographic hash of a file, which can be
4206used in the definition of a package (@pxref{Defining Packages}).
4207
4208The general syntax is:
4209
4210@example
4211guix hash @var{option} @var{file}
4212@end example
4213
4214@command{guix hash} has the following option:
4215
4216@table @code
4217
4218@item --format=@var{fmt}
4219@itemx -f @var{fmt}
210cc920 4220Write the hash in the format specified by @var{fmt}.
6c365eca
NK
4221
4222Supported formats: @code{nix-base32}, @code{base32}, @code{base16}
4223(@code{hex} and @code{hexadecimal} can be used as well).
4224
4225If the @option{--format} option is not specified, @command{guix hash}
4226will output the hash in @code{nix-base32}. This representation is used
4227in the definitions of packages.
4228
3140f2df
LC
4229@item --recursive
4230@itemx -r
4231Compute the hash on @var{file} recursively.
4232
4233In this case, the hash is computed on an archive containing @var{file},
4234including its children if it is a directory. Some of @var{file}'s
4235meta-data is part of the archive; for instance, when @var{file} is a
4236regular file, the hash is different depending on whether @var{file} is
4237executable or not. Meta-data such as time stamps has no impact on the
4238hash (@pxref{Invoking guix archive}).
4239@c FIXME: Replace xref above with xref to an ``Archive'' section when
4240@c it exists.
4241
6c365eca
NK
4242@end table
4243
2f7d2d91
LC
4244@node Invoking guix import
4245@section Invoking @command{guix import}
4246
4247@cindex importing packages
4248@cindex package import
4249@cindex package conversion
4250The @command{guix import} command is useful for people willing to add a
4251package to the distribution but who'd rather do as little work as
4252possible to get there---a legitimate demand. The command knows of a few
4253repositories from which it can ``import'' package meta-data. The result
4254is a package definition, or a template thereof, in the format we know
4255(@pxref{Defining Packages}).
4256
4257The general syntax is:
4258
4259@example
4260guix import @var{importer} @var{options}@dots{}
4261@end example
4262
4263@var{importer} specifies the source from which to import package
4264meta-data, and @var{options} specifies a package identifier and other
4265options specific to @var{importer}. Currently, the available
4266``importers'' are:
4267
4268@table @code
4269@item gnu
4270Import meta-data for the given GNU package. This provides a template
4271for the latest version of that GNU package, including the hash of its
4272source tarball, and its canonical synopsis and description.
4273
4274Additional information such as the package's dependencies and its
4275license needs to be figured out manually.
4276
4277For example, the following command returns a package definition for
4278GNU@tie{}Hello:
4279
4280@example
4281guix import gnu hello
4282@end example
4283
4284Specific command-line options are:
4285
4286@table @code
4287@item --key-download=@var{policy}
4288As for @code{guix refresh}, specify the policy to handle missing OpenPGP
4289keys when verifying the package's signature. @xref{Invoking guix
4290refresh, @code{--key-download}}.
4291@end table
4292
4293@item pypi
4294@cindex pypi
4295Import meta-data from the @uref{https://pypi.python.org/, Python Package
4296Index}@footnote{This functionality requires Guile-JSON to be installed.
4297@xref{Requirements}.}. Information is taken from the JSON-formatted
4298description available at @code{pypi.python.org} and usually includes all
4299the relevant information, including package dependencies.
4300
4301The command below imports meta-data for the @code{itsdangerous} Python
4302package:
4303
4304@example
4305guix import pypi itsdangerous
4306@end example
4307
3aae8145
DT
4308@item gem
4309@cindex gem
4310Import meta-data from @uref{https://rubygems.org/,
4311RubyGems}@footnote{This functionality requires Guile-JSON to be
4312installed. @xref{Requirements}.}. Information is taken from the
4313JSON-formatted description available at @code{rubygems.org} and includes
4314most relevant information, including runtime dependencies. There are
4315some caveats, however. The meta-data doesn't distinguish between
4316synopses and descriptions, so the same string is used for both fields.
4317Additionally, the details of non-Ruby dependencies required to build
4318native extensions is unavailable and left as an exercise to the
4319packager.
4320
4321The command below imports meta-data for the @code{rails} Ruby package:
4322
4323@example
4324guix import gem rails
4325@end example
4326
d45dc6da
EB
4327@item cpan
4328@cindex CPAN
4329Import meta-data from @uref{https://www.metacpan.org/, MetaCPAN}.
4330Information is taken from the JSON-formatted meta-data provided through
4331@uref{https://api.metacpan.org/, MetaCPAN's API} and includes most
66392e47
EB
4332relevant information, such as module dependencies. License information
4333should be checked closely. If Perl is available in the store, then the
4334@code{corelist} utility will be used to filter core modules out of the
4335list of dependencies.
d45dc6da
EB
4336
4337The command command below imports meta-data for the @code{Acme::Boolean}
4338Perl module:
4339
4340@example
4341guix import cpan Acme::Boolean
4342@end example
4343
e1248602
RW
4344@item cran
4345@cindex CRAN
d0bd632f 4346@cindex Bioconductor
e1248602
RW
4347Import meta-data from @uref{http://cran.r-project.org/, CRAN}, the
4348central repository for the @uref{http://r-project.org, GNU@tie{}R
4349statistical and graphical environment}.
4350
d0bd632f 4351Information is extracted from the package's @code{DESCRIPTION} file.
e1248602
RW
4352
4353The command command below imports meta-data for the @code{Cairo}
4354R package:
4355
4356@example
4357guix import cran Cairo
4358@end example
4359
d0bd632f
RW
4360When @code{--archive=bioconductor} is added, meta-data is imported from
4361@uref{http://www.bioconductor.org/, Bioconductor}, a repository of R
4362packages for for the analysis and comprehension of high-throughput
4363genomic data in bioinformatics.
4364
4365Information is extracted from a package's @code{DESCRIPTION} file
4366published on the web interface of the Bioconductor SVN repository.
4367
4368The command command below imports meta-data for the @code{GenomicRanges}
4369R package:
4370
4371@example
4372guix import cran --archive=bioconductor GenomicRanges
4373@end example
4374
2f7d2d91
LC
4375@item nix
4376Import meta-data from a local copy of the source of the
4377@uref{http://nixos.org/nixpkgs/, Nixpkgs distribution}@footnote{This
4378relies on the @command{nix-instantiate} command of
4379@uref{http://nixos.org/nix/, Nix}.}. Package definitions in Nixpkgs are
4380typically written in a mixture of Nix-language and Bash code. This
4381command only imports the high-level package structure that is written in
4382the Nix language. It normally includes all the basic fields of a
4383package definition.
4384
4385When importing a GNU package, the synopsis and descriptions are replaced
4386by their canonical upstream variant.
4387
961d0d2d
LC
4388Usually, you will first need to do:
4389
4390@example
4391export NIX_REMOTE=daemon
4392@end example
4393
4394@noindent
4395so that @command{nix-instantiate} does not try to open the Nix database.
4396
2f7d2d91
LC
4397As an example, the command below imports the package definition of
4398LibreOffice (more precisely, it imports the definition of the package
4399bound to the @code{libreoffice} top-level attribute):
4400
4401@example
4402guix import nix ~/path/to/nixpkgs libreoffice
4403@end example
863af4e1
FB
4404
4405@item hackage
4406@cindex hackage
4407Import meta-data from Haskell community's central package archive
4408@uref{https://hackage.haskell.org/, Hackage}. Information is taken from
4409Cabal files and includes all the relevant information, including package
4410dependencies.
4411
4412Specific command-line options are:
4413
4414@table @code
a4154748
FB
4415@item --stdin
4416@itemx -s
4417Read a Cabal file from the standard input.
863af4e1
FB
4418@item --no-test-dependencies
4419@itemx -t
a4154748
FB
4420Do not include dependencies required by the test suites only.
4421@item --cabal-environment=@var{alist}
4422@itemx -e @var{alist}
4423@var{alist} is a Scheme alist defining the environment in which the
4424Cabal conditionals are evaluated. The accepted keys are: @code{os},
4425@code{arch}, @code{impl} and a string representing the name of a flag.
4426The value associated with a flag has to be either the symbol
4427@code{true} or @code{false}. The value associated with other keys
4428has to conform to the Cabal file format definition. The default value
4429associated with the keys @code{os}, @code{arch} and @code{impl} is
4430@samp{linux}, @samp{x86_64} and @samp{ghc} respectively.
863af4e1
FB
4431@end table
4432
4433The command below imports meta-data for the latest version of the
a4154748
FB
4434@code{HTTP} Haskell package without including test dependencies and
4435specifying the value of the flag @samp{network-uri} as @code{false}:
863af4e1
FB
4436
4437@example
a4154748 4438guix import hackage -t -e "'((\"network-uri\" . false))" HTTP
863af4e1
FB
4439@end example
4440
4441A specific package version may optionally be specified by following the
4442package name by a hyphen and a version number as in the following example:
4443
4444@example
4445guix import hackage mtl-2.1.3.1
4446@end example
7f74a931
FB
4447
4448@item elpa
4449@cindex elpa
4450Import meta-data from an Emacs Lisp Package Archive (ELPA) package
4451repository (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
4452
4453Specific command-line options are:
4454
4455@table @code
4456@item --archive=@var{repo}
4457@itemx -a @var{repo}
4458@var{repo} identifies the archive repository from which to retrieve the
4459information. Currently the supported repositories and their identifiers
4460are:
4461@itemize -
4462@item
840bd1d3 4463@uref{http://elpa.gnu.org/packages, GNU}, selected by the @code{gnu}
7f74a931
FB
4464identifier. This is the default.
4465
4466@item
840bd1d3 4467@uref{http://stable.melpa.org/packages, MELPA-Stable}, selected by the
7f74a931
FB
4468@code{melpa-stable} identifier.
4469
4470@item
840bd1d3 4471@uref{http://melpa.org/packages, MELPA}, selected by the @code{melpa}
7f74a931
FB
4472identifier.
4473@end itemize
4474@end table
2f7d2d91
LC
4475@end table
4476
4477The structure of the @command{guix import} code is modular. It would be
4478useful to have more importers for other package formats, and your help
4479is welcome here (@pxref{Contributing}).
4480
37166310
LC
4481@node Invoking guix refresh
4482@section Invoking @command{guix refresh}
4483
4484The primary audience of the @command{guix refresh} command is developers
4485of the GNU software distribution. By default, it reports any packages
4486provided by the distribution that are outdated compared to the latest
4487upstream version, like this:
4488
4489@example
4490$ guix refresh
4491gnu/packages/gettext.scm:29:13: gettext would be upgraded from 0.18.1.1 to 0.18.2.1
4492gnu/packages/glib.scm:77:12: glib would be upgraded from 2.34.3 to 2.37.0
4493@end example
4494
4495It does so by browsing each package's FTP directory and determining the
bcb571cb
LC
4496highest version number of the source tarballs therein. The command
4497knows how to update specific types of packages: GNU packages, ELPA
4498packages, etc.---see the documentation for @option{--type} below. The
4499are many packages, though, for which it lacks a method to determine
4500whether a new upstream release is available. However, the mechanism is
4501extensible, so feel free to get in touch with us to add a new method!
37166310
LC
4502
4503When passed @code{--update}, it modifies distribution source files to
4504update the version numbers and source tarball hashes of those packages'
4505recipes (@pxref{Defining Packages}). This is achieved by downloading
4506each package's latest source tarball and its associated OpenPGP
4507signature, authenticating the downloaded tarball against its signature
4508using @command{gpg}, and finally computing its hash. When the public
4509key used to sign the tarball is missing from the user's keyring, an
4510attempt is made to automatically retrieve it from a public key server;
4511when it's successful, the key is added to the user's keyring; otherwise,
4512@command{guix refresh} reports an error.
4513
4514The following options are supported:
4515
4516@table @code
4517
2d7fc7da
LC
4518@item --expression=@var{expr}
4519@itemx -e @var{expr}
4520Consider the package @var{expr} evaluates to.
4521
4522This is useful to precisely refer to a package, as in this example:
4523
4524@example
4525guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'
4526@end example
4527
4528This command lists the dependents of the ``final'' libc (essentially all
4529the packages.)
4530
37166310
LC
4531@item --update
4532@itemx -u
38e16b49
LC
4533Update distribution source files (package recipes) in place. This is
4534usually run from a checkout of the Guix source tree (@pxref{Running
4535Guix Before It Is Installed}):
4536
4537@example
4538$ ./pre-inst-env guix refresh -s non-core
4539@end example
4540
081145cf 4541@xref{Defining Packages}, for more information on package definitions.
37166310
LC
4542
4543@item --select=[@var{subset}]
4544@itemx -s @var{subset}
4545Select all the packages in @var{subset}, one of @code{core} or
4546@code{non-core}.
4547
4548The @code{core} subset refers to all the packages at the core of the
4549distribution---i.e., packages that are used to build ``everything
4550else''. This includes GCC, libc, Binutils, Bash, etc. Usually,
4551changing one of these packages in the distribution entails a rebuild of
4552all the others. Thus, such updates are an inconvenience to users in
4553terms of build time or bandwidth used to achieve the upgrade.
4554
4555The @code{non-core} subset refers to the remaining packages. It is
4556typically useful in cases where an update of the core packages would be
4557inconvenient.
4558
bcb571cb
LC
4559@item --type=@var{updater}
4560@itemx -t @var{updater}
7191adc5
AK
4561Select only packages handled by @var{updater} (may be a comma-separated
4562list of updaters). Currently, @var{updater} may be one of:
bcb571cb
LC
4563
4564@table @code
4565@item gnu
4566the updater for GNU packages;
e80c0f85
LC
4567@item gnome
4568the updater for GNOME packages;
bcb571cb 4569@item elpa
d882c235
LC
4570the updater for @uref{http://elpa.gnu.org/, ELPA} packages;
4571@item cran
b9d044ef 4572the updater for @uref{http://cran.r-project.org/, CRAN} packages;
d0bd632f
RW
4573@item bioconductor
4574the updater for @uref{http://www.bioconductor.org/, Bioconductor} R packages;
bab020d7 4575@item pypi
b9d044ef 4576the updater for @uref{https://pypi.python.org, PyPI} packages.
bcb571cb
LC
4577@end table
4578
4579For instance, the following commands only checks for updates of Emacs
d882c235 4580packages hosted at @code{elpa.gnu.org} and updates of CRAN packages:
bcb571cb
LC
4581
4582@example
7191adc5 4583$ guix refresh --type=elpa,cran
d882c235 4584gnu/packages/statistics.scm:819:13: r-testthat would be upgraded from 0.10.0 to 0.11.0
bcb571cb
LC
4585gnu/packages/emacs.scm:856:13: emacs-auctex would be upgraded from 11.88.6 to 11.88.9
4586@end example
4587
37166310
LC
4588@end table
4589
4590In addition, @command{guix refresh} can be passed one or more package
4591names, as in this example:
4592
4593@example
38e16b49 4594$ ./pre-inst-env guix refresh -u emacs idutils gcc-4.8.4
37166310
LC
4595@end example
4596
4597@noindent
4598The command above specifically updates the @code{emacs} and
4599@code{idutils} packages. The @code{--select} option would have no
4600effect in this case.
4601
7d193ec3
EB
4602When considering whether to upgrade a package, it is sometimes
4603convenient to know which packages would be affected by the upgrade and
4604should be checked for compatibility. For this the following option may
4605be used when passing @command{guix refresh} one or more package names:
4606
4607@table @code
4608
6ffa706b
AK
4609@item --list-updaters
4610@itemx -L
4611List available updaters and exit (see @option{--type} above.)
4612
7d193ec3
EB
4613@item --list-dependent
4614@itemx -l
4615List top-level dependent packages that would need to be rebuilt as a
4616result of upgrading one or more packages.
4617
4618@end table
4619
4620Be aware that the @code{--list-dependent} option only
4621@emph{approximates} the rebuilds that would be required as a result of
4622an upgrade. More rebuilds might be required under some circumstances.
4623
4624@example
7779ab61
LC
4625$ guix refresh --list-dependent flex
4626Building the following 120 packages would ensure 213 dependent packages are rebuilt:
4627hop-2.4.0 geiser-0.4 notmuch-0.18 mu-0.9.9.5 cflow-1.4 idutils-4.6 @dots{}
7d193ec3
EB
4628@end example
4629
4630The command above lists a set of packages that could be built to check
4631for compatibility with an upgraded @code{flex} package.
4632
f9230085
LC
4633The following options can be used to customize GnuPG operation:
4634
4635@table @code
4636
f9230085
LC
4637@item --gpg=@var{command}
4638Use @var{command} as the GnuPG 2.x command. @var{command} is searched
4639for in @code{$PATH}.
4640
2bc53ba9
LC
4641@item --key-download=@var{policy}
4642Handle missing OpenPGP keys according to @var{policy}, which may be one
4643of:
4644
4645@table @code
4646@item always
4647Always download missing OpenPGP keys from the key server, and add them
4648to the user's GnuPG keyring.
4649
4650@item never
4651Never try to download missing OpenPGP keys. Instead just bail out.
4652
4653@item interactive
4654When a package signed with an unknown OpenPGP key is encountered, ask
4655the user whether to download it or not. This is the default behavior.
4656@end table
4657
4658@item --key-server=@var{host}
4659Use @var{host} as the OpenPGP key server when importing a public key.
4660
f9230085
LC
4661@end table
4662
b4f5e0e8
CR
4663@node Invoking guix lint
4664@section Invoking @command{guix lint}
4665The @command{guix lint} is meant to help package developers avoid common
873c4085
LC
4666errors and use a consistent style. It runs a number of checks on a
4667given set of packages in order to find common mistakes in their
4668definitions. Available @dfn{checkers} include (see
4669@code{--list-checkers} for a complete list):
4670
4671@table @code
4672@item synopsis
4673@itemx description
4674Validate certain typographical and stylistic rules about package
4675descriptions and synopses.
4676
4677@item inputs-should-be-native
4678Identify inputs that should most likely be native inputs.
4679
4680@item source
4681@itemx home-page
50f5c46d 4682@itemx source-file-name
873c4085 4683Probe @code{home-page} and @code{source} URLs and report those that are
50f5c46d
EB
4684invalid. Check that the source file name is meaningful, e.g. is not
4685just a version number or ``git-checkout'', and should not have a
4686@code{file-name} declared (@pxref{origin Reference}).
40a7d4e5 4687
5432734b
LC
4688@item cve
4689Report known vulnerabilities found in the Common Vulnerabilities and
4690Exposures (CVE) database
4691@uref{https://nvd.nist.gov/download.cfm#CVE_FEED, published by the US
4692NIST}.
4693
40a7d4e5
LC
4694@item formatting
4695Warn about obvious source code formatting issues: trailing white space,
4696use of tabulations, etc.
873c4085 4697@end table
b4f5e0e8
CR
4698
4699The general syntax is:
4700
4701@example
4702guix lint @var{options} @var{package}@dots{}
4703@end example
4704
4705If no package is given on the command line, then all packages are checked.
4706The @var{options} may be zero or more of the following:
4707
4708@table @code
4709
dd7c013d
CR
4710@item --checkers
4711@itemx -c
4712Only enable the checkers specified in a comma-separated list using the
4713names returned by @code{--list-checkers}.
4714
b4f5e0e8
CR
4715@item --list-checkers
4716@itemx -l
4717List and describe all the available checkers that will be run on packages
4718and exit.
4719
4720@end table
37166310 4721
fcc58db6
LC
4722@node Invoking guix size
4723@section Invoking @command{guix size}
4724
4725The @command{guix size} command helps package developers profile the
4726disk usage of packages. It is easy to overlook the impact of an
4727additional dependency added to a package, or the impact of using a
4728single output for a package that could easily be split (@pxref{Packages
4729with Multiple Outputs}). These are the typical issues that
4730@command{guix size} can highlight.
4731
4732The command can be passed a package specification such as @code{gcc-4.8}
4733or @code{guile:debug}, or a file name in the store. Consider this
4734example:
4735
4736@example
4737$ guix size coreutils
4738store item total self
4739/gnu/store/@dots{}-coreutils-8.23 70.0 13.9 19.8%
4740/gnu/store/@dots{}-gmp-6.0.0a 55.3 2.5 3.6%
4741/gnu/store/@dots{}-acl-2.2.52 53.7 0.5 0.7%
4742/gnu/store/@dots{}-attr-2.4.46 53.2 0.3 0.5%
4743/gnu/store/@dots{}-gcc-4.8.4-lib 52.9 15.7 22.4%
4744/gnu/store/@dots{}-glibc-2.21 37.2 37.2 53.1%
4745@end example
4746
4747@cindex closure
4748The store items listed here constitute the @dfn{transitive closure} of
4749Coreutils---i.e., Coreutils and all its dependencies, recursively---as
4750would be returned by:
4751
4752@example
4753$ guix gc -R /gnu/store/@dots{}-coreutils-8.23
4754@end example
4755
4756Here the output shows 3 columns next to store items. The first column,
4757labeled ``total'', shows the size in mebibytes (MiB) of the closure of
4758the store item---that is, its own size plus the size of all its
4759dependencies. The next column, labeled ``self'', shows the size of the
4760item itself. The last column shows the ratio of the item's size to the
4761space occupied by all the items listed here.
4762
4763In this example, we see that the closure of Coreutils weighs in at
476470@tie{}MiB, half of which is taken by libc. (That libc represents a
4765large fraction of the closure is not a problem @i{per se} because it is
4766always available on the system anyway.)
4767
4768When the package passed to @command{guix size} is available in the
4769store, @command{guix size} queries the daemon to determine its
4770dependencies, and measures its size in the store, similar to @command{du
4771-ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU
4772Coreutils}).
4773
4774When the given package is @emph{not} in the store, @command{guix size}
4775reports information based on information about the available substitutes
4776(@pxref{Substitutes}). This allows it to profile disk usage of store
4777items that are not even on disk, only available remotely.
4778
a8f996c6 4779The available options are:
fcc58db6
LC
4780
4781@table @option
4782
d490d06e
LC
4783@item --substitute-urls=@var{urls}
4784Use substitute information from @var{urls}.
4785@xref{client-substitute-urls, the same option for @code{guix build}}.
4786
a8f996c6
LC
4787@item --map-file=@var{file}
4788Write to @var{file} a graphical map of disk usage as a PNG file.
4789
4790For the example above, the map looks like this:
4791
4792@image{images/coreutils-size-map,5in,, map of Coreutils disk usage
4793produced by @command{guix size}}
4794
4795This option requires that
4796@uref{http://wingolog.org/software/guile-charting/, Guile-Charting} be
4797installed and visible in Guile's module search path. When that is not
4798the case, @command{guix size} fails as it tries to load it.
4799
fcc58db6
LC
4800@item --system=@var{system}
4801@itemx -s @var{system}
4802Consider packages for @var{system}---e.g., @code{x86_64-linux}.
4803
4804@end table
4805
88856916
LC
4806@node Invoking guix graph
4807@section Invoking @command{guix graph}
4808
4809@cindex DAG
4810Packages and their dependencies form a @dfn{graph}, specifically a
4811directed acyclic graph (DAG). It can quickly become difficult to have a
4812mental model of the package DAG, so the @command{guix graph} command is
4813here to provide a visual representation of the DAG. @command{guix
4814graph} emits a DAG representation in the input format of
4815@uref{http://www.graphviz.org/, Graphviz}, so its output can be passed
4816directly to Graphviz's @command{dot} command, for instance. The general
4817syntax is:
4818
4819@example
4820guix graph @var{options} @var{package}@dots{}
4821@end example
4822
4823For example, the following command generates a PDF file representing the
4824package DAG for the GNU@tie{}Core Utilities, showing its build-time
4825dependencies:
4826
4827@example
4828guix graph coreutils | dot -Tpdf > dag.pdf
4829@end example
4830
4831The output looks like this:
4832
4833@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}
4834
4835Nice little graph, no?
4836
4837But there's more than one graph! The one above is concise: it's the
4838graph of package objects, omitting implicit inputs such as GCC, libc,
4839grep, etc. It's often useful to have such a concise graph, but
4840sometimes you want to see more details. @command{guix graph} supports
4841several types of graphs, allowing you to choose the level of details:
4842
4843@table @code
4844@item package
4845This is the default type, the one we used above. It shows the DAG of
4846package objects, excluding implicit dependencies. It is concise, but
4847filters out many details.
4848
4849@item bag-emerged
4850This is the package DAG, @emph{including} implicit inputs.
4851
4852For instance, the following command:
4853
4854@example
4855guix graph --type=bag-emerged coreutils | dot -Tpdf > dag.pdf
4856@end example
4857
4858... yields this bigger graph:
4859
4860@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}
4861
4862At the bottom of the graph, we see all the implicit inputs of
4863@var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}}).
4864
4865Now, note that the dependencies of those implicit inputs---that is, the
4866@dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown
4867here, for conciseness.
4868
4869@item bag
4870Similar to @code{bag-emerged}, but this time including all the bootstrap
4871dependencies.
4872
38b92daa
LC
4873@item bag-with-origins
4874Similar to @code{bag}, but also showing origins and their dependencies.
4875
88856916
LC
4876@item derivations
4877This is the most detailed representation: It shows the DAG of
4878derivations (@pxref{Derivations}) and plain store items. Compared to
4879the above representation, many additional nodes are visible, including
4880builds scripts, patches, Guile modules, etc.
4881
4882@end table
4883
4884All the above types correspond to @emph{build-time dependencies}. The
4885following graph type represents the @emph{run-time dependencies}:
4886
4887@table @code
4888@item references
4889This is the graph of @dfn{references} of a package output, as returned
4890by @command{guix gc --references} (@pxref{Invoking guix gc}).
4891
4892If the given package output is not available in the store, @command{guix
4893graph} attempts to obtain dependency information from substitutes.
4894@end table
4895
4896The available options are the following:
4897
4898@table @option
4899@item --type=@var{type}
4900@itemx -t @var{type}
4901Produce a graph output of @var{type}, where @var{type} must be one of
4902the values listed above.
4903
4904@item --list-types
4905List the supported graph types.
4c8f997a
LC
4906
4907@item --expression=@var{expr}
4908@itemx -e @var{expr}
4909Consider the package @var{expr} evaluates to.
4910
4911This is useful to precisely refer to a package, as in this example:
4912
4913@example
4914guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'
4915@end example
88856916
LC
4916@end table
4917
4918
372c4bbc
DT
4919@node Invoking guix environment
4920@section Invoking @command{guix environment}
4921
f5fd4fd2 4922@cindex reproducible build environments
fe36d84e 4923@cindex development environments
372c4bbc
DT
4924The purpose of @command{guix environment} is to assist hackers in
4925creating reproducible development environments without polluting their
4926package profile. The @command{guix environment} tool takes one or more
4927packages, builds all of the necessary inputs, and creates a shell
4928environment to use them.
4929
4930The general syntax is:
4931
4932@example
4933guix environment @var{options} @var{package}@dots{}
4934@end example
4935
fe36d84e
LC
4936The following example spawns a new shell set up for the development of
4937GNU@tie{}Guile:
372c4bbc
DT
4938
4939@example
4940guix environment guile
4941@end example
4942
4943If the specified packages are not built yet, @command{guix environment}
4944automatically builds them. The new shell's environment is an augmented
4945version of the environment that @command{guix environment} was run in.
4946It contains the necessary search paths for building the given package
4947added to the existing environment variables. To create a ``pure''
4948environment in which the original environment variables have been unset,
50500f7c
LC
4949use the @code{--pure} option@footnote{Users sometimes wrongfully augment
4950environment variables such as @code{PATH} in their @file{~/.bashrc}
4951file. As a consequence, when @code{guix environment} launches it, Bash
4952may read @file{~/.bashrc}, thereby introducing ``impurities'' in these
4953environment variables. It is an error to define such environment
4954variables in @file{.bashrc}; instead, they should be defined in
4955@file{.bash_profile}, which is sourced only by log-in shells.
4956@xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for
4957details on Bash start-up files.}.
372c4bbc 4958
28de8d25
LC
4959@vindex GUIX_ENVIRONMENT
4960@command{guix environment} defines the @code{GUIX_ENVIRONMENT}
4961variable in the shell it spaws. This allows users to, say, define a
4962specific prompt for development environments in their @file{.bashrc}
4963(@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):
4964
4965@example
4966if [ -n "$GUIX_ENVIRONMENT" ]
4967then
4968 export PS1="\u@@\h \w [dev]\$ "
4969fi
4970@end example
4971
372c4bbc
DT
4972Additionally, more than one package may be specified, in which case the
4973union of the inputs for the given packages are used. For example, the
4974command below spawns a shell where all of the dependencies of both Guile
4975and Emacs are available:
4976
4977@example
4978guix environment guile emacs
4979@end example
4980
1de2fe95
DT
4981Sometimes an interactive shell session is not desired. An arbitrary
4982command may be invoked by placing the @code{--} token to separate the
4983command from the rest of the arguments:
372c4bbc
DT
4984
4985@example
1de2fe95 4986guix environment guile -- make -j4
372c4bbc
DT
4987@end example
4988
fe36d84e
LC
4989In other situations, it is more convenient to specify the list of
4990packages needed in the environment. For example, the following command
4991runs @command{python} from an environment containing Python@tie{}2.7 and
4992NumPy:
4993
4994@example
1de2fe95 4995guix environment --ad-hoc python2-numpy python-2.7 -- python
fe36d84e
LC
4996@end example
4997
cc90fbbf
DT
4998Furthermore, one might want the dependencies of a package and also some
4999additional packages that are not build-time or runtime dependencies, but
5000are useful when developing nonetheless. Because of this, the
5001@code{--ad-hoc} flag is positional. Packages appearing before
5002@code{--ad-hoc} are interpreted as packages whose dependencies will be
5003added to the environment. Packages appearing after are interpreted as
5004packages that will be added to the environment directly. For example,
5005the following command creates a Guix development environment that
5006additionally includes Git and strace:
5007
5008@example
5009guix environment guix --ad-hoc git strace
5010@end example
5011
f535dcbe
DT
5012Sometimes it is desirable to isolate the environment as much as
5013possible, for maximal purity and reproducibility. In particular, when
5014using Guix on a host distro that is not GuixSD, it is desirable to
5015prevent access to @file{/usr/bin} and other system-wide resources from
5016the development environment. For example, the following command spawns
5017a Guile REPL in a ``container'' where only the store and the current
5018working directory are mounted:
5019
5020@example
5021guix environment --ad-hoc --container guile -- guile
5022@end example
5023
0f252e26 5024@quotation Note
cfd35b4e 5025The @code{--container} option requires Linux-libre 3.19 or newer.
0f252e26
DT
5026@end quotation
5027
fe36d84e 5028The available options are summarized below.
372c4bbc
DT
5029
5030@table @code
5031@item --expression=@var{expr}
5032@itemx -e @var{expr}
c9c282ce
DT
5033Create an environment for the package or list of packages that
5034@var{expr} evaluates to.
372c4bbc 5035
fe36d84e
LC
5036For example, running:
5037
5038@example
5039guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'
5040@end example
5041
5042starts a shell with the environment for this specific variant of the
5043PETSc package.
5044
c9c282ce
DT
5045Running:
5046
5047@example
5c2b2f00 5048guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'
c9c282ce
DT
5049@end example
5050
5051starts a shell with all the GuixSD base packages available.
5052
372c4bbc
DT
5053@item --load=@var{file}
5054@itemx -l @var{file}
c9c282ce
DT
5055Create an environment for the package or list of packages that the code
5056within @var{file} evaluates to.
372c4bbc 5057
fe36d84e
LC
5058As an example, @var{file} might contain a definition like this
5059(@pxref{Defining Packages}):
5060
5061@example
5062@verbatiminclude environment-gdb.scm
5063@end example
5064
a54bd6d7
DT
5065@item --ad-hoc
5066Include all specified packages in the resulting environment, as if an
5067@i{ad hoc} package were defined with them as inputs. This option is
5068useful for quickly creating an environment without having to write a
5069package expression to contain the desired inputs.
5070
5071For instance, the command:
5072
5073@example
1de2fe95 5074guix environment --ad-hoc guile guile-sdl -- guile
a54bd6d7
DT
5075@end example
5076
5077runs @command{guile} in an environment where Guile and Guile-SDL are
5078available.
5079
417c39f1
LC
5080Note that this example implicitly asks for the default output of
5081@code{guile} and @code{guile-sdl} but it is possible to ask for a
5082specific output---e.g., @code{glib:bin} asks for the @code{bin} output
5083of @code{glib} (@pxref{Packages with Multiple Outputs}).
5084
cc90fbbf
DT
5085This option may be composed with the default behavior of @command{guix
5086environment}. Packages appearing before @code{--ad-hoc} are interpreted
5087as packages whose dependencies will be added to the environment, the
5088default behavior. Packages appearing after are interpreted as packages
5089that will be added to the environment directly.
5090
372c4bbc
DT
5091@item --pure
5092Unset existing environment variables when building the new environment.
5093This has the effect of creating an environment in which search paths
5094only contain package inputs.
5095
5096@item --search-paths
5097Display the environment variable definitions that make up the
5098environment.
ce367ef3
LC
5099
5100@item --system=@var{system}
5101@itemx -s @var{system}
5102Attempt to build for @var{system}---e.g., @code{i686-linux}.
f535dcbe
DT
5103
5104@item --container
5105@itemx -C
5106@cindex container
5107Run @var{command} within an isolated container. The current working
56b6befb 5108directory outside the container is mapped inside the
f535dcbe
DT
5109container. Additionally, the spawned process runs as the current user
5110outside the container, but has root privileges in the context of the
5111container.
5112
5113@item --network
5114@itemx -N
5115For containers, share the network namespace with the host system.
5116Containers created without this flag only have access to the loopback
5117device.
5118
5119@item --expose=@var{source}[=@var{target}]
5120For containers, expose the file system @var{source} from the host system
5121as the read-only file system @var{target} within the container. If
5122@var{target} is not specified, @var{source} is used as the target mount
5123point in the container.
5124
5125The example below spawns a Guile REPL in a container in which the user's
5126home directory is accessible read-only via the @file{/exchange}
5127directory:
5128
5129@example
5130guix environment --container --expose=$HOME=/exchange guile -- guile
5131@end example
5132
5c2b2f00 5133@item --share=@var{source}[=@var{target}]
f535dcbe
DT
5134For containers, share the file system @var{source} from the host system
5135as the writable file system @var{target} within the container. If
5136@var{target} is not specified, @var{source} is used as the target mount
5137point in the container.
5138
5139The example below spawns a Guile REPL in a container in which the user's
5140home directory is accessible for both reading and writing via the
5141@file{/exchange} directory:
5142
5143@example
5144guix environment --container --share=$HOME=/exchange guile -- guile
5145@end example
372c4bbc
DT
5146@end table
5147
5148It also supports all of the common build options that @command{guix
ccd7158d 5149build} supports (@pxref{Common Build Options}).
372c4bbc 5150
aff8ce7c
DT
5151@node Invoking guix publish
5152@section Invoking @command{guix publish}
5153
5154The purpose of @command{guix publish} is to enable users to easily share
8ce229fc
LC
5155their store with others, which can then use it as a substitute server
5156(@pxref{Substitutes}).
5157
5158When @command{guix publish} runs, it spawns an HTTP server which allows
5159anyone with network access to obtain substitutes from it. This means
5160that any machine running Guix can also act as if it were a build farm,
5161since the HTTP interface is compatible with Hydra, the software behind
5162the @code{hydra.gnu.org} build farm.
aff8ce7c
DT
5163
5164For security, each substitute is signed, allowing recipients to check
5165their authenticity and integrity (@pxref{Substitutes}). Because
5166@command{guix publish} uses the system's signing key, which is only
5463fe51
LC
5167readable by the system administrator, it must be started as root; the
5168@code{--user} option makes it drop root privileges early on.
aff8ce7c 5169
b18812b6
LC
5170The signing key pair must be generated before @command{guix publish} is
5171launched, using @command{guix archive --generate-key} (@pxref{Invoking
5172guix archive}).
5173
aff8ce7c
DT
5174The general syntax is:
5175
5176@example
5177guix publish @var{options}@dots{}
5178@end example
5179
5180Running @command{guix publish} without any additional arguments will
5181spawn an HTTP server on port 8080:
5182
5183@example
5184guix publish
5185@end example
5186
5187Once a publishing server has been authorized (@pxref{Invoking guix
5188archive}), the daemon may download substitutes from it:
5189
5190@example
5191guix-daemon --substitute-urls=http://example.org:8080
5192@end example
5193
5194The following options are available:
5195
5196@table @code
5197@item --port=@var{port}
5198@itemx -p @var{port}
5199Listen for HTTP requests on @var{port}.
5200
9e2292ef
LC
5201@item --listen=@var{host}
5202Listen on the network interface for @var{host}. The default is to
5203accept connections from any interface.
5204
5463fe51
LC
5205@item --user=@var{user}
5206@itemx -u @var{user}
5207Change privileges to @var{user} as soon as possible---i.e., once the
5208server socket is open and the signing key has been read.
5209
aff8ce7c
DT
5210@item --repl[=@var{port}]
5211@itemx -r [@var{port}]
5212Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile
8ce229fc
LC
5213Reference Manual}) on @var{port} (37146 by default). This is used
5214primarily for debugging a running @command{guix publish} server.
aff8ce7c
DT
5215@end table
5216
1c52181f
LC
5217Enabling @command{guix publish} on a GuixSD system is a one-liner: just
5218add a call to @code{guix-publish-service} in the @code{services} field
5219of the @code{operating-system} declaration (@pxref{guix-publish-service,
5220@code{guix-publish-service}}).
5221
d23c20f1
LC
5222
5223@node Invoking guix challenge
5224@section Invoking @command{guix challenge}
5225
5226@cindex reproducible builds
5227@cindex verifiable builds
5228
5229Do the binaries provided by this server really correspond to the source
5230code it claims to build? Is this package's build process deterministic?
5231These are the questions the @command{guix challenge} command attempts to
5232answer.
5233
5234The former is obviously an important question: Before using a substitute
5235server (@pxref{Substitutes}), you'd rather @emph{verify} that it
5236provides the right binaries, and thus @emph{challenge} it. The latter
5237is what enables the former: If package builds are deterministic, then
5238independent builds of the package should yield the exact same result,
5239bit for bit; if a server provides a binary different from the one
5240obtained locally, it may be either corrupt or malicious.
5241
5242We know that the hash that shows up in @file{/gnu/store} file names is
5243the hash of all the inputs of the process that built the file or
5244directory---compilers, libraries, build scripts,
5245etc. (@pxref{Introduction}). Assuming deterministic build processes,
5246one store file name should map to exactly one build output.
5247@command{guix challenge} checks whether there is, indeed, a single
5248mapping by comparing the build outputs of several independent builds of
5249any given store item.
5250
5251The command's output looks like this:
5252
5253@smallexample
5254$ guix challenge --substitute-urls="http://hydra.gnu.org http://guix.example.org"
5255updating list of substitutes from 'http://hydra.gnu.org'... 100.0%
5256updating list of substitutes from 'http://guix.example.org'... 100.0%
5257/gnu/store/@dots{}-openssl-1.0.2d contents differ:
5258 local hash: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
5259 http://hydra.gnu.org/nar/@dots{}-openssl-1.0.2d: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
5260 http://guix.example.org/nar/@dots{}-openssl-1.0.2d: 1zy4fmaaqcnjrzzajkdn3f5gmjk754b43qkq47llbyak9z0qjyim
5261/gnu/store/@dots{}-git-2.5.0 contents differ:
5262 local hash: 00p3bmryhjxrhpn2gxs2fy0a15lnip05l97205pgbk5ra395hyha
5263 http://hydra.gnu.org/nar/@dots{}-git-2.5.0: 069nb85bv4d4a6slrwjdy8v1cn4cwspm3kdbmyb81d6zckj3nq9f
5264 http://guix.example.org/nar/@dots{}-git-2.5.0: 0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73
5265/gnu/store/@dots{}-pius-2.1.1 contents differ:
5266 local hash: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
5267 http://hydra.gnu.org/nar/@dots{}-pius-2.1.1: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
5268 http://guix.example.org/nar/@dots{}-pius-2.1.1: 1cy25x1a4fzq5rk0pmvc8xhwyffnqz95h2bpvqsz2mpvlbccy0gs
5269@end smallexample
5270
5271@noindent
5272In this example, @command{guix challenge} first scans the store to
5273determine the set of locally-built derivations---as opposed to store
5274items that were downloaded from a substitute server---and then queries
5275all the substitute servers. It then reports those store items for which
5276the servers obtained a result different from the local build.
5277
5278@cindex non-determinism, in package builds
5279As an example, @code{guix.example.org} always gets a different answer.
5280Conversely, @code{hydra.gnu.org} agrees with local builds, except in the
5281case of Git. This might indicate that the build process of Git is
5282non-deterministic, meaning that its output varies as a function of
5283various things that Guix does not fully control, in spite of building
5284packages in isolated environments (@pxref{Features}). Most common
5285sources of non-determinism include the addition of timestamps in build
5286results, the inclusion of random numbers, and directory listings sorted
5287by inode number. See @uref{http://reproducible.debian.net/howto/}, for
5288more information.
5289
5290To find out what's wrong with this Git binary, we can do something along
5291these lines (@pxref{Invoking guix archive}):
5292
5293@example
5294$ wget -q -O - http://hydra.gnu.org/nar/@dots{}-git-2.5.0 \
5295 | guix archive -x /tmp/git
043f4698 5296$ diff -ur --no-dereference /gnu/store/@dots{}-git.2.5.0 /tmp/git
d23c20f1
LC
5297@end example
5298
5299This command shows the difference between the files resulting from the
5300local build, and the files resulting from the build on
5301@code{hydra.gnu.org} (@pxref{Overview, Comparing and Merging Files,,
5302diffutils, Comparing and Merging Files}). The @command{diff} command
5303works great for text files. When binary files differ, a better option
5304is @uref{http://diffoscope.org/, Diffoscope}, a tool that helps
5305visualize differences for all kinds of files.
5306
5307Once you've done that work, you can tell whether the differences are due
5308to a non-deterministic build process or to a malicious server. We try
5309hard to remove sources of non-determinism in packages to make it easier
5310to verify substitutes, but of course, this is a process, one that
5311involves not just Guix but a large part of the free software community.
5312In the meantime, @command{guix challenge} is one tool to help address
5313the problem.
5314
5315If you are writing packages for Guix, you are encouraged to check
5316whether @code{hydra.gnu.org} and other substitute servers obtain the
5317same build result as you did with:
5318
5319@example
5320$ guix challenge @var{package}
5321@end example
5322
5323@noindent
5324... where @var{package} is a package specification such as
5325@code{guile-2.0} or @code{glibc:debug}.
5326
5327The general syntax is:
5328
5329@example
5330guix challenge @var{options} [@var{packages}@dots{}]
5331@end example
5332
5333The one option that matters is:
5334
5335@table @code
5336
5337@item --substitute-urls=@var{urls}
5338Consider @var{urls} the whitespace-separated list of substitute source
5339URLs to compare to.
5340
5341@end table
5342
5343
32efa254
DT
5344@node Invoking guix container
5345@section Invoking @command{guix container}
5346@cindex container
5347
5348@quotation Note
5349As of version @value{VERSION}, this tool is experimental. The interface
5350is subject to radical change in the future.
5351@end quotation
5352
5353The purpose of @command{guix container} is to manipulate processes
5354running within an isolated environment, commonly known as a
46c36586 5355``container'', typically created by the @command{guix environment}
32efa254
DT
5356(@pxref{Invoking guix environment}) and @command{guix system container}
5357(@pxref{Invoking guix system}) commands.
5358
5359The general syntax is:
5360
5361@example
5362guix container @var{action} @var{options}@dots{}
5363@end example
5364
5365@var{action} specifies the operation to perform with a container, and
5366@var{options} specifies the context-specific arguments for the action.
5367
5368The following actions are available:
5369
5370@table @code
5371@item exec
5372Execute a command within the context of a running container.
5373
5374The syntax is:
5375
5376@example
5377guix container exec @var{pid} @var{program} @var{arguments}@dots{}
5378@end example
5379
5380@var{pid} specifies the process ID of the running container.
5381@var{program} specifies an executable file name within the container's
5382root file system. @var{arguments} are the additional options that will
5383be passed to @var{program}.
5384
5385The following command launches an interactive login shell inside a
5386GuixSD container, started by @command{guix system container}, and whose
5387process ID is 9001:
5388
5389@example
5390guix container exec 9001 /run/current-system/profile/bin/bash --login
5391@end example
5392
5393Note that the @var{pid} cannot be the parent process of a container. It
5394must be the container's PID 1 or one of its child processes.
5395
5396@end table
5397
a1ba8475
LC
5398@c *********************************************************************
5399@node GNU Distribution
5400@chapter GNU Distribution
5401
3ca2731c 5402@cindex Guix System Distribution
4705641f 5403@cindex GuixSD
3ca2731c
LC
5404Guix comes with a distribution of the GNU system consisting entirely of
5405free software@footnote{The term ``free'' here refers to the
a1ba8475 5406@url{http://www.gnu.org/philosophy/free-sw.html,freedom provided to
3ca2731c 5407users of that software}.}. The
35ed9306
LC
5408distribution can be installed on its own (@pxref{System Installation}),
5409but it is also possible to install Guix as a package manager on top of
5410an installed GNU/Linux system (@pxref{Installation}). To distinguish
3ca2731c 5411between the two, we refer to the standalone distribution as the Guix
4705641f 5412System Distribution, or GuixSD.
35ed9306
LC
5413
5414The distribution provides core GNU packages such as GNU libc, GCC, and
5415Binutils, as well as many GNU and non-GNU applications. The complete
5416list of available packages can be browsed
093ae1be 5417@url{http://www.gnu.org/software/guix/packages,on-line} or by
d03bb653 5418running @command{guix package} (@pxref{Invoking guix package}):
a1ba8475
LC
5419
5420@example
e49951eb 5421guix package --list-available
a1ba8475
LC
5422@end example
5423
35ed9306 5424Our goal has been to provide a practical 100% free software distribution of
401c53c4
LC
5425Linux-based and other variants of GNU, with a focus on the promotion and
5426tight integration of GNU components, and an emphasis on programs and
5427tools that help users exert that freedom.
5428
3ca2731c 5429Packages are currently available on the following platforms:
c320011d
LC
5430
5431@table @code
5432
5433@item x86_64-linux
5434Intel/AMD @code{x86_64} architecture, Linux-Libre kernel;
5435
5436@item i686-linux
5437Intel 32-bit architecture (IA32), Linux-Libre kernel;
5438
aa1e1947 5439@item armhf-linux
aa725117 5440ARMv7-A architecture with hard float, Thumb-2 and NEON,
aa1e1947
MW
5441using the EABI hard-float ABI, and Linux-Libre kernel.
5442
c320011d
LC
5443@item mips64el-linux
5444little-endian 64-bit MIPS processors, specifically the Loongson series,
5445n32 application binary interface (ABI), and Linux-Libre kernel.
5446
5447@end table
5448
4705641f 5449GuixSD itself is currently only available on @code{i686} and @code{x86_64}.
3ca2731c 5450
c320011d
LC
5451@noindent
5452For information on porting to other architectures or kernels,
5453@xref{Porting}.
5454
401c53c4 5455@menu
5af6de3e 5456* System Installation:: Installing the whole operating system.
35ed9306 5457* System Configuration:: Configuring the operating system.
91ef73d4 5458* Installing Debugging Files:: Feeding the debugger.
05962f29 5459* Security Updates:: Deploying security fixes quickly.
401c53c4 5460* Package Modules:: Packages from the programmer's viewpoint.
da7cabd4 5461* Packaging Guidelines:: Growing the distribution.
401c53c4 5462* Bootstrapping:: GNU/Linux built from scratch.
8b315a6d 5463* Porting:: Targeting another platform or kernel.
401c53c4
LC
5464@end menu
5465
5466Building this distribution is a cooperative effort, and you are invited
081145cf 5467to join! @xref{Contributing}, for information about how you can help.
401c53c4 5468
5af6de3e
LC
5469@node System Installation
5470@section System Installation
5471
3ca2731c
LC
5472@cindex Guix System Distribution
5473This section explains how to install the Guix System Distribution
5474on a machine. The Guix package manager can
35ed9306
LC
5475also be installed on top of a running GNU/Linux system,
5476@pxref{Installation}.
5af6de3e
LC
5477
5478@ifinfo
5479@c This paragraph is for people reading this from tty2 of the
5480@c installation image.
5481You're reading this documentation with an Info reader. For details on
5482how to use it, hit the @key{RET} key (``return'' or ``enter'') on the
6621cdb6 5483link that follows: @pxref{Help,,, info, Info: An Introduction}. Hit
5af6de3e
LC
5484@kbd{l} afterwards to come back here.
5485@end ifinfo
5486
8aaaae38
LC
5487@subsection Limitations
5488
4705641f 5489As of version @value{VERSION}, the Guix System Distribution (GuixSD) is
3ca2731c 5490not production-ready. It may contain bugs and lack important
8aaaae38
LC
5491features. Thus, if you are looking for a stable production system that
5492respects your freedom as a computer user, a good solution at this point
5493is to consider @url{http://www.gnu.org/distros/free-distros.html, one of
5494more established GNU/Linux distributions}. We hope you can soon switch
4705641f 5495to the GuixSD without fear, of course. In the meantime, you can
8aaaae38
LC
5496also keep using your distribution and try out the package manager on top
5497of it (@pxref{Installation}).
5498
5499Before you proceed with the installation, be aware of the following
5500noteworthy limitations applicable to version @value{VERSION}:
5501
5502@itemize
5503@item
5504The installation process does not include a graphical user interface and
5505requires familiarity with GNU/Linux (see the following subsections to
5506get a feel of what that means.)
5507
5508@item
093ae1be
LC
5509The system does not yet provide full GNOME and KDE desktops. Xfce and
5510Enlightenment are available though, if graphical desktop environments
5511are your thing, as well as a number of X11 window managers.
8aaaae38
LC
5512
5513@item
dbcb0ab1 5514Support for the Logical Volume Manager (LVM) is missing.
8aaaae38
LC
5515
5516@item
5517Few system services are currently supported out-of-the-box
5518(@pxref{Services}).
5519
5520@item
093ae1be 5521More than 2,000 packages are available, but you may
8aaaae38
LC
5522occasionally find that a useful package is missing.
5523@end itemize
5524
5525You've been warned. But more than a disclaimer, this is an invitation
5526to report issues (and success stories!), and join us in improving it.
5527@xref{Contributing}, for more info.
5af6de3e
LC
5528
5529@subsection USB Stick Installation
5530
5531An installation image for USB sticks can be downloaded from
4705641f 5532@indicateurl{ftp://alpha.gnu.org/gnu/guix/guixsd-usb-install-@value{VERSION}.@var{system}.xz},
5af6de3e
LC
5533where @var{system} is one of:
5534
5535@table @code
5536@item x86_64-linux
5537for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;
5538
5539@item i686-linux
5540for a 32-bit GNU/Linux system on Intel-compatible CPUs.
5541@end table
5542
5543This image contains a single partition with the tools necessary for an
5544installation. It is meant to be copied @emph{as is} to a large-enough
5545USB stick.
5546
5547To copy the image to a USB stick, follow these steps:
5548
5549@enumerate
5550@item
5551Decompress the image using the @command{xz} command:
5552
5553@example
4705641f 5554xz -d guixsd-usb-install-@value{VERSION}.@var{system}.xz
5af6de3e
LC
5555@end example
5556
5557@item
5558Insert a USB stick of 1@tie{}GiB or more in your machine, and determine
5559its device name. Assuming that USB stick is known as @file{/dev/sdX},
5560copy the image with:
5561
5562@example
4705641f 5563dd if=guixsd-usb-install-@value{VERSION}.x86_64 of=/dev/sdX
5af6de3e
LC
5564@end example
5565
5566Access to @file{/dev/sdX} usually requires root privileges.
5567@end enumerate
5568
5569Once this is done, you should be able to reboot the system and boot from
5570the USB stick. The latter usually requires you to get in the BIOS' boot
5571menu, where you can choose to boot from the USB stick.
5572
5573@subsection Preparing for Installation
5574
5575Once you have successfully booted the image on the USB stick, you should
5576end up with a root prompt. Several console TTYs are configured and can
5577be used to run commands as root. TTY2 shows this documentation,
5578browsable using the Info reader commands (@pxref{Help,,, info, Info: An
ae7ffa9e
LC
5579Introduction}). The installation system runs the GPM mouse daemon,
5580which allows you to select text with the left mouse button and to paste
5581it with the middle button.
5af6de3e
LC
5582
5583To install the system, you would:
5584
5585@enumerate
5586
5587@item
235cba85
LC
5588Configure the network, by running:
5589
5590@example
5591ifconfig eno1 up && dhclient eno1
5592@end example
5593
5594to get an automatically assigned IP address from the wired
152dd61c 5595network interface controller@footnote{
95c559c1
LC
5596@c http://cgit.freedesktop.org/systemd/systemd/tree/src/udev/udev-builtin-net_id.c#n20
5597The name @code{eno1} is for the first on-board Ethernet controller. The
5598interface name for an Ethernet controller that is in the first slot of
5599the first PCI bus, for instance, would be @code{enp1s0}. Use
235cba85 5600@command{ifconfig -a} to list all the available network interfaces.},
95c559c1 5601or using the @command{ifconfig} command.
5af6de3e
LC
5602
5603The system automatically loads drivers for your network interface
5604controllers.
5605
5606Setting up network access is almost always a requirement because the
5607image does not contain all the software and tools that may be needed.
5608
5609@item
316d65be
LC
5610Unless this has already been done, you must partition, and then format
5611the target partition.
5af6de3e 5612
7ab44369
LC
5613Preferably, assign partitions a label so that you can easily and
5614reliably refer to them in @code{file-system} declarations (@pxref{File
5615Systems}). This is typically done using the @code{-L} option of
5616@command{mkfs.ext4} and related commands.
5617
dd816355
LF
5618Be sure that your partition labels match the value of their respective
5619@code{device} fields in your @code{file-system} configuration, if your
5620@code{file-system} configuration sets the value of @code{title} to
5621@code{'label}, as do the example configurations found on the USB
5622installation image under @file{/etc/configuration} (@pxref{Using the
5623Configuration System}).
5624
316d65be
LC
5625@c FIXME: Uncomment this once GRUB fully supports encrypted roots.
5626@c A typical command sequence may be:
5627@c
5628@c @example
5629@c # fdisk /dev/sdX
5630@c @dots{} Create partitions etc.@dots{}
5631@c # cryptsetup luksFormat /dev/sdX1
5632@c # cryptsetup open --type luks /dev/sdX1 my-partition
5633@c # mkfs.ext4 -L my-root /dev/mapper/my-partition
5634@c @end example
6d6e6281 5635
5af6de3e 5636The installation image includes Parted (@pxref{Overview,,, parted, GNU
b419c7f5
LC
5637Parted User Manual}), @command{fdisk}, Cryptsetup/LUKS for disk
5638encryption, and e2fsprogs, the suite of tools to manipulate
5639ext2/ext3/ext4 file systems.
5af6de3e 5640
83a17b62
LC
5641@item
5642Once that is done, mount the target root partition under @file{/mnt}.
5643
5644@item
dd17bc38 5645Lastly, run @code{herd start cow-store /mnt}.
83a17b62
LC
5646
5647This will make @file{/gnu/store} copy-on-write, such that packages added
5648to it during the installation phase will be written to the target disk
5649rather than kept in memory.
5650
5af6de3e
LC
5651@end enumerate
5652
5af6de3e
LC
5653
5654@subsection Proceeding with the Installation
5655
5656With the target partitions ready, you now have to edit a file and
5657provide the declaration of the operating system to be installed. To
5658that end, the installation system comes with two text editors: GNU nano
5659(@pxref{Top,,, nano, GNU nano Manual}), and GNU Zile, an Emacs clone.
5660It is better to store that file on the target root file system, say, as
5661@file{/mnt/etc/config.scm}.
5662
dd51caac
LC
5663@xref{Using the Configuration System}, for examples of operating system
5664configurations. These examples are available under
5665@file{/etc/configuration} in the installation image, so you can copy
5666them and use them as a starting point for your own configuration.
5af6de3e 5667
dd51caac
LC
5668Once you are done preparing the configuration file, the new system must
5669be initialized (remember that the target root file system is mounted
5670under @file{/mnt}):
5af6de3e
LC
5671
5672@example
5673guix system init /mnt/etc/config.scm /mnt
5674@end example
5675
5676@noindent
5677This will copy all the necessary files, and install GRUB on
5678@file{/dev/sdX}, unless you pass the @option{--no-grub} option. For
6621cdb6 5679more information, @pxref{Invoking guix system}. This command may trigger
5af6de3e
LC
5680downloads or builds of missing packages, which can take some time.
5681
1bd4e6db
LC
5682Once that command has completed---and hopefully succeeded!---you can run
5683@command{reboot} and boot into the new system. The @code{root} password
5684in the new system is initially empty; other users' passwords need to be
5685initialized by running the @command{passwd} command as @code{root},
5686unless your configuration specifies otherwise
5687(@pxref{user-account-password, user account passwords}).
5688
5689Join us on @code{#guix} on the Freenode IRC network or on
5af6de3e
LC
5690@file{guix-devel@@gnu.org} to share your experience---good or not so
5691good.
5692
5693@subsection Building the Installation Image
5694
5695The installation image described above was built using the @command{guix
5696system} command, specifically:
5697
5698@example
8a225c66 5699guix system disk-image --image-size=850MiB gnu/system/install.scm
5af6de3e
LC
5700@end example
5701
5702@xref{Invoking guix system}, for more information. See
5703@file{gnu/system/install.scm} in the source tree for more information
5704about the installation image.
5705
cf4a9129
LC
5706@node System Configuration
5707@section System Configuration
b208a005 5708
cf4a9129 5709@cindex system configuration
3ca2731c 5710The Guix System Distribution supports a consistent whole-system configuration
cf4a9129
LC
5711mechanism. By that we mean that all aspects of the global system
5712configuration---such as the available system services, timezone and
5713locale settings, user accounts---are declared in a single place. Such
5714a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected.
91ef73d4 5715
cf4a9129
LC
5716One of the advantages of putting all the system configuration under the
5717control of Guix is that it supports transactional system upgrades, and
5718makes it possible to roll-back to a previous system instantiation,
5719should something go wrong with the new one (@pxref{Features}). Another
5720one is that it makes it easy to replicate the exact same configuration
5721across different machines, or at different points in time, without
5722having to resort to additional administration tools layered on top of
5723the system's own tools.
5724@c Yes, we're talking of Puppet, Chef, & co. here. ↑
91ef73d4 5725
cf4a9129
LC
5726This section describes this mechanism. First we focus on the system
5727administrator's viewpoint---explaining how the system is configured and
5728instantiated. Then we show how this mechanism can be extended, for
5729instance to support new system services.
91ef73d4 5730
cf4a9129
LC
5731@menu
5732* Using the Configuration System:: Customizing your GNU system.
7313a52e 5733* operating-system Reference:: Detail of operating-system declarations.
cf4a9129 5734* File Systems:: Configuring file system mounts.
510f9d86 5735* Mapped Devices:: Block device extra processing.
cf4a9129 5736* User Accounts:: Specifying user accounts.
598e19dc 5737* Locales:: Language and cultural convention settings.
cf4a9129 5738* Services:: Specifying system services.
0ae8c15a 5739* Setuid Programs:: Programs running with root privileges.
efb5e833 5740* X.509 Certificates:: Authenticating HTTPS servers.
996ed739 5741* Name Service Switch:: Configuring libc's name service switch.
fd1b1fa2 5742* Initial RAM Disk:: Linux-Libre bootstrapping.
88faf933 5743* GRUB Configuration:: Configuring the boot loader.
cf4a9129 5744* Invoking guix system:: Instantiating a system configuration.
97d76250 5745* Running GuixSD in a VM:: How to run GuixSD in a virtual machine.
cf4a9129
LC
5746* Defining Services:: Adding new service definitions.
5747@end menu
91ef73d4 5748
cf4a9129
LC
5749@node Using the Configuration System
5750@subsection Using the Configuration System
64d76fa6 5751
cf4a9129
LC
5752The operating system is configured by providing an
5753@code{operating-system} declaration in a file that can then be passed to
5754the @command{guix system} command (@pxref{Invoking guix system}). A
5755simple setup, with the default system services, the default Linux-Libre
5756kernel, initial RAM disk, and boot loader looks like this:
91ef73d4 5757
cf4a9129
LC
5758@findex operating-system
5759@lisp
dd51caac 5760@include os-config-bare-bones.texi
cf4a9129 5761@end lisp
401c53c4 5762
cf4a9129
LC
5763This example should be self-describing. Some of the fields defined
5764above, such as @code{host-name} and @code{bootloader}, are mandatory.
5765Others, such as @code{packages} and @code{services}, can be omitted, in
5766which case they get a default value.
e7f34eb0 5767
5d94ac51
LC
5768Below we discuss the effect of some of the most important fields
5769(@pxref{operating-system Reference}, for details about all the available
5770fields), and how to @dfn{instantiate} the operating system using
5771@command{guix system}.
5772
5773@unnumberedsubsubsec Globally-Visible Packages
5774
cf4a9129 5775@vindex %base-packages
5d94ac51
LC
5776The @code{packages} field lists packages that will be globally visible
5777on the system, for all user accounts---i.e., in every user's @code{PATH}
5778environment variable---in addition to the per-user profiles
5779(@pxref{Invoking guix package}). The @var{%base-packages} variable
5780provides all the tools one would expect for basic user and administrator
5781tasks---including the GNU Core Utilities, the GNU Networking Utilities,
5782the GNU Zile lightweight text editor, @command{find}, @command{grep},
5783etc. The example above adds tcpdump to those, taken from the @code{(gnu
5784packages admin)} module (@pxref{Package Modules}).
e7f34eb0 5785
f6c9fb1b
LC
5786@findex specification->package
5787Referring to packages by variable name, like @var{tcpdump} above, has
5788the advantage of being unambiguous; it also allows typos and such to be
5789diagnosed right away as ``unbound variables''. The downside is that one
5790needs to know which module defines which package, and to augment the
5791@code{use-package-modules} line accordingly. To avoid that, one can use
5792the @code{specification->package} procedure of the @code{(gnu packages)}
5793module, which returns the best package for a given name or name and
5794version:
5795
5796@lisp
5797(use-modules (gnu packages))
5798
5799(operating-system
5800 ;; ...
5801 (packages (append (map specification->package
5802 '("tcpdump" "htop" "gnupg-2.0"))
5803 %base-packages)))
5804@end lisp
5805
5d94ac51
LC
5806@unnumberedsubsubsec System Services
5807
cf4a9129
LC
5808@vindex %base-services
5809The @code{services} field lists @dfn{system services} to be made
5810available when the system starts (@pxref{Services}).
5811The @code{operating-system} declaration above specifies that, in
5812addition to the basic services, we want the @command{lshd} secure shell
cd6f6c22
LC
5813daemon listening on port 2222 (@pxref{Networking Services,
5814@code{lsh-service}}). Under the hood,
cf4a9129
LC
5815@code{lsh-service} arranges so that @code{lshd} is started with the
5816right command-line options, possibly with supporting configuration files
cd6f6c22
LC
5817generated as needed (@pxref{Defining Services}).
5818
5819@cindex customization, of services
5820@findex modify-services
5821Occasionally, instead of using the base services as is, you will want to
5822customize them. For instance, to change the configuration of
5823@code{guix-daemon} and Mingetty (the console log-in), you may write the
5824following instead of @var{%base-services}:
5825
5826@lisp
5827(modify-services %base-services
5828 (guix-service-type config =>
5829 (guix-configuration
5830 (inherit config)
5831 (use-substitutes? #f)
5832 (extra-options '("--gc-keep-outputs"))))
5833 (mingetty-service-type config =>
5834 (mingetty-configuration
5835 (inherit config)
5836 (motd (plain-file "motd" "Hi there!")))))
5837@end lisp
5838
5839@noindent
5840The effect here is to change the options passed to @command{guix-daemon}
5841when it is started, as well as the ``message of the day'' that appears
5842when logging in at the console. @xref{Service Reference,
5843@code{modify-services}}, for more on that.
a1ba8475 5844
dd51caac 5845The configuration for a typical ``desktop'' usage, with the X11 display
cd6f6c22 5846server, a desktop environment, network management, power management, and
dd51caac
LC
5847more, would look like this:
5848
5849@lisp
5850@include os-config-desktop.texi
5851@end lisp
5852
5853@xref{Desktop Services}, for the exact list of services provided by
efb5e833
LC
5854@var{%desktop-services}. @xref{X.509 Certificates}, for background
5855information about the @code{nss-certs} package that is used here.
dd51caac 5856
5d94ac51
LC
5857Again, @var{%desktop-services} is just a list of service objects. If
5858you want to remove services from there, you can do so using the
5859procedures for list filtering (@pxref{SRFI-1 Filtering and
5860Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the
5861following expression returns a list that contains all the services in
5862@var{%desktop-services} minus the Avahi service:
5863
5864@example
5865(remove (lambda (service)
5866 (eq? (service-kind service) avahi-service-type))
5867 %desktop-services)
5868@end example
5869
5870@unnumberedsubsubsec Instantiating the System
5871
5872Assuming the @code{operating-system} declaration
5873is stored in the @file{my-system-config.scm}
cf4a9129
LC
5874file, the @command{guix system reconfigure my-system-config.scm} command
5875instantiates that configuration, and makes it the default GRUB boot
65797bff
LC
5876entry (@pxref{Invoking guix system}).
5877
5878The normal way to change the system's configuration is by updating this
5879file and re-running @command{guix system reconfigure}. One should never
5880have to touch files in @command{/etc} or to run commands that modify the
5881system state such as @command{useradd} or @command{grub-install}. In
5882fact, you must avoid that since that would not only void your warranty
5883but also prevent you from rolling back to previous versions of your
5884system, should you ever need to.
5885
5886@cindex roll-back, of the operating system
5887Speaking of roll-back, each time you run @command{guix system
5888reconfigure}, a new @dfn{generation} of the system is created---without
5889modifying or deleting previous generations. Old system generations get
5890an entry in the GRUB boot menu, allowing you to boot them in case
5891something went wrong with the latest generation. Reassuring, no? The
5892@command{guix system list-generations} command lists the system
5893generations available on disk.
b81e1947 5894
5d94ac51
LC
5895@unnumberedsubsubsec The Programming Interface
5896
cf4a9129
LC
5897At the Scheme level, the bulk of an @code{operating-system} declaration
5898is instantiated with the following monadic procedure (@pxref{The Store
5899Monad}):
b81e1947 5900
cf4a9129
LC
5901@deffn {Monadic Procedure} operating-system-derivation os
5902Return a derivation that builds @var{os}, an @code{operating-system}
5903object (@pxref{Derivations}).
b81e1947 5904
cf4a9129
LC
5905The output of the derivation is a single directory that refers to all
5906the packages, configuration files, and other supporting files needed to
5907instantiate @var{os}.
5908@end deffn
b81e1947 5909
5d94ac51
LC
5910This procedure is provided by the @code{(gnu system)} module. Along
5911with @code{(gnu services)} (@pxref{Services}), this module contains the
5912guts of GuixSD. Make sure to visit it!
5913
5914
7313a52e
LC
5915@node operating-system Reference
5916@subsection @code{operating-system} Reference
5917
5918This section summarizes all the options available in
5919@code{operating-system} declarations (@pxref{Using the Configuration
5920System}).
5921
5922@deftp {Data Type} operating-system
5923This is the data type representing an operating system configuration.
5924By that, we mean all the global system configuration, not per-user
5925configuration (@pxref{Using the Configuration System}).
5926
5927@table @asis
5928@item @code{kernel} (default: @var{linux-libre})
fbb25e56 5929The package object of the operating system kernel to use@footnote{Currently
7313a52e
LC
5930only the Linux-libre kernel is supported. In the future, it will be
5931possible to use the GNU@tie{}Hurd.}.
5932
ee2a6304
LC
5933@item @code{kernel-arguments} (default: @code{'()})
5934List of strings or gexps representing additional arguments to pass on
5935the kernel's command-line---e.g., @code{("console=ttyS0")}.
5936
7313a52e 5937@item @code{bootloader}
88faf933 5938The system bootloader configuration object. @xref{GRUB Configuration}.
7313a52e
LC
5939
5940@item @code{initrd} (default: @code{base-initrd})
5941A two-argument monadic procedure that returns an initial RAM disk for
5942the Linux kernel. @xref{Initial RAM Disk}.
5943
f34c56be
LC
5944@item @code{firmware} (default: @var{%base-firmware})
5945@cindex firmware
5946List of firmware packages loadable by the operating system kernel.
5947
5948The default includes firmware needed for Atheros-based WiFi devices
5949(Linux-libre module @code{ath9k}.)
5950
7313a52e
LC
5951@item @code{host-name}
5952The host name.
5953
5954@item @code{hosts-file}
5955@cindex hosts file
24e02c28 5956A file-like object (@pxref{G-Expressions, file-like objects}) for use as
7313a52e 5957@file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library
24e02c28 5958Reference Manual}). The default is a file with entries for
7313a52e
LC
5959@code{localhost} and @var{host-name}.
5960
5961@item @code{mapped-devices} (default: @code{'()})
5962A list of mapped devices. @xref{Mapped Devices}.
5963
5964@item @code{file-systems}
5965A list of file systems. @xref{File Systems}.
5966
5967@item @code{swap-devices} (default: @code{'()})
5968@cindex swap devices
5969A list of strings identifying devices to be used for ``swap space''
5970(@pxref{Memory Concepts,,, libc, The GNU C Library Reference Manual}).
5971For example, @code{'("/dev/sda3")}.
5972
bf87f38a 5973@item @code{users} (default: @code{%base-user-accounts})
7313a52e
LC
5974@itemx @code{groups} (default: @var{%base-groups})
5975List of user accounts and groups. @xref{User Accounts}.
5976
5977@item @code{skeletons} (default: @code{(default-skeletons)})
5978A monadic list of pairs of target file name and files. These are the
5979files that will be used as skeletons as new accounts are created.
5980
5981For instance, a valid value may look like this:
5982
5983@example
5984(mlet %store-monad ((bashrc (text-file "bashrc" "\
5985 export PATH=$HOME/.guix-profile/bin")))
5986 (return `((".bashrc" ,bashrc))))
5987@end example
5988
5989@item @code{issue} (default: @var{%default-issue})
5990A string denoting the contents of the @file{/etc/issue} file, which is
5991what displayed when users log in on a text console.
5992
5993@item @code{packages} (default: @var{%base-packages})
5994The set of packages installed in the global profile, which is accessible
5995at @file{/run/current-system/profile}.
5996
5997The default set includes core utilities, but it is good practice to
5998install non-core utilities in user profiles (@pxref{Invoking guix
5999package}).
6000
6001@item @code{timezone}
6002A timezone identifying string---e.g., @code{"Europe/Paris"}.
6003
598e19dc
LC
6004@item @code{locale} (default: @code{"en_US.utf8"})
6005The name of the default locale (@pxref{Locale Names,,, libc, The GNU C
6006Library Reference Manual}). @xref{Locales}, for more information.
6007
6008@item @code{locale-definitions} (default: @var{%default-locale-definitions})
6009The list of locale definitions to be compiled and that may be used at
6010run time. @xref{Locales}.
7313a52e 6011
34760ae7
LC
6012@item @code{locale-libcs} (default: @code{(list @var{glibc})})
6013The list of GNU@tie{}libc packages whose locale data and tools are used
6014to build the locale definitions. @xref{Locales}, for compatibility
6015considerations that justify this option.
6016
996ed739
LC
6017@item @code{name-service-switch} (default: @var{%default-nss})
6018Configuration of libc's name service switch (NSS)---a
6019@code{<name-service-switch>} object. @xref{Name Service Switch}, for
6020details.
6021
7313a52e 6022@item @code{services} (default: @var{%base-services})
28d939af 6023A list of service objects denoting system services. @xref{Services}.
7313a52e
LC
6024
6025@item @code{pam-services} (default: @code{(base-pam-services)})
6026@cindex PAM
6027@cindex pluggable authentication modules
6028Linux @dfn{pluggable authentication module} (PAM) services.
6029@c FIXME: Add xref to PAM services section.
6030
6031@item @code{setuid-programs} (default: @var{%setuid-programs})
6032List of string-valued G-expressions denoting setuid programs.
6033@xref{Setuid Programs}.
6034
f5a9ffa0
AK
6035@item @code{sudoers-file} (default: @var{%sudoers-specification})
6036@cindex sudoers file
84765839
LC
6037The contents of the @file{/etc/sudoers} file as a file-like object
6038(@pxref{G-Expressions, @code{local-file} and @code{plain-file}}).
7313a52e
LC
6039
6040This file specifies which users can use the @command{sudo} command, what
6041they are allowed to do, and what privileges they may gain. The default
6042is that only @code{root} and members of the @code{wheel} group may use
6043@code{sudo}.
6044
6045@end table
6046@end deftp
6047
cf4a9129
LC
6048@node File Systems
6049@subsection File Systems
b81e1947 6050
cf4a9129
LC
6051The list of file systems to be mounted is specified in the
6052@code{file-systems} field of the operating system's declaration
6053(@pxref{Using the Configuration System}). Each file system is declared
6054using the @code{file-system} form, like this:
b81e1947
LC
6055
6056@example
cf4a9129
LC
6057(file-system
6058 (mount-point "/home")
6059 (device "/dev/sda3")
6060 (type "ext4"))
b81e1947
LC
6061@end example
6062
cf4a9129
LC
6063As usual, some of the fields are mandatory---those shown in the example
6064above---while others can be omitted. These are described below.
b81e1947 6065
cf4a9129
LC
6066@deftp {Data Type} file-system
6067Objects of this type represent file systems to be mounted. They
6068contain the following members:
5ff3c4b8 6069
cf4a9129
LC
6070@table @asis
6071@item @code{type}
6072This is a string specifying the type of the file system---e.g.,
6073@code{"ext4"}.
5ff3c4b8 6074
cf4a9129
LC
6075@item @code{mount-point}
6076This designates the place where the file system is to be mounted.
b81e1947 6077
cf4a9129
LC
6078@item @code{device}
6079This names the ``source'' of the file system. By default it is the name
6080of a node under @file{/dev}, but its meaning depends on the @code{title}
6081field described below.
401c53c4 6082
cf4a9129
LC
6083@item @code{title} (default: @code{'device})
6084This is a symbol that specifies how the @code{device} field is to be
6085interpreted.
401c53c4 6086
cf4a9129
LC
6087When it is the symbol @code{device}, then the @code{device} field is
6088interpreted as a file name; when it is @code{label}, then @code{device}
6089is interpreted as a partition label name; when it is @code{uuid},
6090@code{device} is interpreted as a partition unique identifier (UUID).
da7cabd4 6091
661a1d79
LC
6092UUIDs may be converted from their string representation (as shown by the
6093@command{tune2fs -l} command) using the @code{uuid} form, like this:
6094
6095@example
6096(file-system
6097 (mount-point "/home")
6098 (type "ext4")
6099 (title 'uuid)
6100 (device (uuid "4dab5feb-d176-45de-b287-9b0a6e4c01cb")))
6101@end example
6102
cf4a9129 6103The @code{label} and @code{uuid} options offer a way to refer to disk
661a1d79
LC
6104partitions without having to hard-code their actual device
6105name@footnote{Note that, while it is tempting to use
6106@file{/dev/disk/by-uuid} and similar device names to achieve the same
6107result, this is not recommended: These special device nodes are created
6108by the udev daemon and may be unavailable at the time the device is
6109mounted.}.
da7cabd4 6110
5f86a66e
LC
6111However, when a file system's source is a mapped device (@pxref{Mapped
6112Devices}), its @code{device} field @emph{must} refer to the mapped
6113device name---e.g., @file{/dev/mapper/root-partition}---and consequently
6114@code{title} must be set to @code{'device}. This is required so that
6115the system knows that mounting the file system depends on having the
6116corresponding device mapping established.
6117
cf4a9129
LC
6118@item @code{flags} (default: @code{'()})
6119This is a list of symbols denoting mount flags. Recognized flags
2c071ce9
LC
6120include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow
6121access to special files), @code{no-suid} (ignore setuid and setgid
6122bits), and @code{no-exec} (disallow program execution.)
da7cabd4 6123
cf4a9129
LC
6124@item @code{options} (default: @code{#f})
6125This is either @code{#f}, or a string denoting mount options.
da7cabd4 6126
be21979d
LC
6127@item @code{mount?} (default: @code{#t})
6128This value indicates whether to automatically mount the file system when
6129the system is brought up. When set to @code{#f}, the file system gets
6130an entry in @file{/etc/fstab} (read by the @command{mount} command) but
6131is not automatically mounted.
6132
cf4a9129
LC
6133@item @code{needed-for-boot?} (default: @code{#f})
6134This Boolean value indicates whether the file system is needed when
6135booting. If that is true, then the file system is mounted when the
6136initial RAM disk (initrd) is loaded. This is always the case, for
6137instance, for the root file system.
da7cabd4 6138
cf4a9129
LC
6139@item @code{check?} (default: @code{#t})
6140This Boolean indicates whether the file system needs to be checked for
6141errors before being mounted.
f9cc8971 6142
4e469051
LC
6143@item @code{create-mount-point?} (default: @code{#f})
6144When true, the mount point is created if it does not exist yet.
6145
e51710d1
LC
6146@item @code{dependencies} (default: @code{'()})
6147This is a list of @code{<file-system>} objects representing file systems
6148that must be mounted before (and unmounted after) this one.
6149
6150As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is
6151a dependency of @file{/sys/fs/cgroup/cpu} and
6152@file{/sys/fs/cgroup/memory}.
6153
cf4a9129
LC
6154@end table
6155@end deftp
da7cabd4 6156
a69576ea
LC
6157The @code{(gnu system file-systems)} exports the following useful
6158variables.
6159
6160@defvr {Scheme Variable} %base-file-systems
6161These are essential file systems that are required on normal systems,
cc0e575a 6162such as @var{%pseudo-terminal-file-system} and @var{%immutable-store} (see
3392ce5d
LC
6163below.) Operating system declarations should always contain at least
6164these.
a69576ea
LC
6165@end defvr
6166
7f239fd3
LC
6167@defvr {Scheme Variable} %pseudo-terminal-file-system
6168This is the file system to be mounted as @file{/dev/pts}. It supports
6169@dfn{pseudo-terminals} created @i{via} @code{openpty} and similar
6170functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference
6171Manual}). Pseudo-terminals are used by terminal emulators such as
6172@command{xterm}.
6173@end defvr
6174
db17ae5c
LC
6175@defvr {Scheme Variable} %shared-memory-file-system
6176This file system is mounted as @file{/dev/shm} and is used to support
6177memory sharing across processes (@pxref{Memory-mapped I/O,
6178@code{shm_open},, libc, The GNU C Library Reference Manual}).
6179@end defvr
6180
3392ce5d
LC
6181@defvr {Scheme Variable} %immutable-store
6182This file system performs a read-only ``bind mount'' of
6183@file{/gnu/store}, making it read-only for all the users including
6184@code{root}. This prevents against accidental modification by software
6185running as @code{root} or by system administrators.
6186
6187The daemon itself is still able to write to the store: it remounts it
6188read-write in its own ``name space.''
6189@end defvr
6190
a69576ea
LC
6191@defvr {Scheme Variable} %binary-format-file-system
6192The @code{binfmt_misc} file system, which allows handling of arbitrary
6193executable file types to be delegated to user space. This requires the
6194@code{binfmt.ko} kernel module to be loaded.
6195@end defvr
6196
6197@defvr {Scheme Variable} %fuse-control-file-system
6198The @code{fusectl} file system, which allows unprivileged users to mount
6199and unmount user-space FUSE file systems. This requires the
6200@code{fuse.ko} kernel module to be loaded.
6201@end defvr
6202
510f9d86
LC
6203@node Mapped Devices
6204@subsection Mapped Devices
6205
6206@cindex device mapping
6207@cindex mapped devices
6208The Linux kernel has a notion of @dfn{device mapping}: a block device,
6209such as a hard disk partition, can be @dfn{mapped} into another device,
6210with additional processing over the data that flows through
6211it@footnote{Note that the GNU@tie{}Hurd makes no difference between the
6212concept of a ``mapped device'' and that of a file system: both boil down
6213to @emph{translating} input/output operations made on a file to
6214operations on its backing store. Thus, the Hurd implements mapped
6215devices, like file systems, using the generic @dfn{translator} mechanism
6216(@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A
6217typical example is encryption device mapping: all writes to the mapped
6218device are encrypted, and all reads are deciphered, transparently.
6219
6220Mapped devices are declared using the @code{mapped-device} form:
6221
6222@example
6223(mapped-device
6224 (source "/dev/sda3")
6225 (target "home")
6226 (type luks-device-mapping))
6227@end example
6228
6229@noindent
6230@cindex disk encryption
6231@cindex LUKS
6232This example specifies a mapping from @file{/dev/sda3} to
6233@file{/dev/mapper/home} using LUKS---the
6234@url{http://code.google.com/p/cryptsetup,Linux Unified Key Setup}, a
6235standard mechanism for disk encryption. The @file{/dev/mapper/home}
6236device can then be used as the @code{device} of a @code{file-system}
6237declaration (@pxref{File Systems}). The @code{mapped-device} form is
6238detailed below.
6239
6240@deftp {Data Type} mapped-device
6241Objects of this type represent device mappings that will be made when
6242the system boots up.
6243
9cb426b8
LC
6244@table @code
6245@item source
510f9d86
LC
6246This string specifies the name of the block device to be mapped, such as
6247@code{"/dev/sda3"}.
6248
9cb426b8 6249@item target
510f9d86
LC
6250This string specifies the name of the mapping to be established. For
6251example, specifying @code{"my-partition"} will lead to the creation of
6252the @code{"/dev/mapper/my-partition"} device.
6253
9cb426b8 6254@item type
510f9d86
LC
6255This must be a @code{mapped-device-kind} object, which specifies how
6256@var{source} is mapped to @var{target}.
6257@end table
6258@end deftp
6259
6260@defvr {Scheme Variable} luks-device-mapping
6261This defines LUKS block device encryption using the @command{cryptsetup}
6262command, from the same-named package. This relies on the
6263@code{dm-crypt} Linux kernel module.
6264@end defvr
6265
cf4a9129
LC
6266@node User Accounts
6267@subsection User Accounts
ee85f3db 6268
9bea87a5
LC
6269User accounts and groups are entirely managed through the
6270@code{operating-system} declaration. They are specified with the
6271@code{user-account} and @code{user-group} forms:
ee85f3db 6272
cf4a9129
LC
6273@example
6274(user-account
6275 (name "alice")
6276 (group "users")
24e752c0
LC
6277 (supplementary-groups '("wheel" ;allow use of sudo, etc.
6278 "audio" ;sound card
6279 "video" ;video devices such as webcams
6280 "cdrom")) ;the good ol' CD-ROM
cf4a9129
LC
6281 (comment "Bob's sister")
6282 (home-directory "/home/alice"))
6283@end example
25083588 6284
9bea87a5
LC
6285When booting or upon completion of @command{guix system reconfigure},
6286the system ensures that only the user accounts and groups specified in
6287the @code{operating-system} declaration exist, and with the specified
6288properties. Thus, account or group creations or modifications made by
6289directly invoking commands such as @command{useradd} are lost upon
6290reconfiguration or reboot. This ensures that the system remains exactly
6291as declared.
6292
cf4a9129
LC
6293@deftp {Data Type} user-account
6294Objects of this type represent user accounts. The following members may
6295be specified:
ee85f3db 6296
cf4a9129
LC
6297@table @asis
6298@item @code{name}
6299The name of the user account.
ee85f3db 6300
cf4a9129
LC
6301@item @code{group}
6302This is the name (a string) or identifier (a number) of the user group
6303this account belongs to.
ee85f3db 6304
cf4a9129
LC
6305@item @code{supplementary-groups} (default: @code{'()})
6306Optionally, this can be defined as a list of group names that this
6307account belongs to.
ee85f3db 6308
cf4a9129
LC
6309@item @code{uid} (default: @code{#f})
6310This is the user ID for this account (a number), or @code{#f}. In the
6311latter case, a number is automatically chosen by the system when the
6312account is created.
ee85f3db 6313
cf4a9129
LC
6314@item @code{comment} (default: @code{""})
6315A comment about the account, such as the account's owner full name.
c8c871d1 6316
cf4a9129
LC
6317@item @code{home-directory}
6318This is the name of the home directory for the account.
ee85f3db 6319
cf4a9129
LC
6320@item @code{shell} (default: Bash)
6321This is a G-expression denoting the file name of a program to be used as
6322the shell (@pxref{G-Expressions}).
ee85f3db 6323
cf4a9129
LC
6324@item @code{system?} (default: @code{#f})
6325This Boolean value indicates whether the account is a ``system''
6326account. System accounts are sometimes treated specially; for instance,
6327graphical login managers do not list them.
ee85f3db 6328
1bd4e6db 6329@anchor{user-account-password}
cf4a9129 6330@item @code{password} (default: @code{#f})
eb59595c
LC
6331You would normally leave this field to @code{#f}, initialize user
6332passwords as @code{root} with the @command{passwd} command, and then let
9bea87a5
LC
6333users change it with @command{passwd}. Passwords set with
6334@command{passwd} are of course preserved across reboot and
6335reconfiguration.
eb59595c
LC
6336
6337If you @emph{do} want to have a preset password for an account, then
6338this field must contain the encrypted password, as a string.
5d1f1177
LC
6339@xref{crypt,,, libc, The GNU C Library Reference Manual}, for more information
6340on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference
eb59595c 6341Manual}, for information on Guile's @code{crypt} procedure.
c8c871d1 6342
cf4a9129
LC
6343@end table
6344@end deftp
ee85f3db 6345
cf4a9129 6346User group declarations are even simpler:
ee85f3db 6347
cf4a9129
LC
6348@example
6349(user-group (name "students"))
6350@end example
ee85f3db 6351
cf4a9129
LC
6352@deftp {Data Type} user-group
6353This type is for, well, user groups. There are just a few fields:
af8a56b8 6354
cf4a9129
LC
6355@table @asis
6356@item @code{name}
6357The group's name.
ee85f3db 6358
cf4a9129
LC
6359@item @code{id} (default: @code{#f})
6360The group identifier (a number). If @code{#f}, a new number is
6361automatically allocated when the group is created.
ee85f3db 6362
c8fa3426
LC
6363@item @code{system?} (default: @code{#f})
6364This Boolean value indicates whether the group is a ``system'' group.
6365System groups have low numerical IDs.
6366
cf4a9129
LC
6367@item @code{password} (default: @code{#f})
6368What, user groups can have a password? Well, apparently yes. Unless
6369@code{#f}, this field specifies the group's password.
ee85f3db 6370
cf4a9129
LC
6371@end table
6372@end deftp
401c53c4 6373
cf4a9129
LC
6374For convenience, a variable lists all the basic user groups one may
6375expect:
401c53c4 6376
cf4a9129
LC
6377@defvr {Scheme Variable} %base-groups
6378This is the list of basic user groups that users and/or packages expect
6379to be present on the system. This includes groups such as ``root'',
6380``wheel'', and ``users'', as well as groups used to control access to
6381specific devices such as ``audio'', ``disk'', and ``cdrom''.
6382@end defvr
401c53c4 6383
bf87f38a
LC
6384@defvr {Scheme Variable} %base-user-accounts
6385This is the list of basic system accounts that programs may expect to
6386find on a GNU/Linux system, such as the ``nobody'' account.
6387
6388Note that the ``root'' account is not included here. It is a
6389special-case and is automatically added whether or not it is specified.
6390@end defvr
6391
598e19dc
LC
6392@node Locales
6393@subsection Locales
6394
6395@cindex locale
6396A @dfn{locale} defines cultural conventions for a particular language
6397and region of the world (@pxref{Locales,,, libc, The GNU C Library
6398Reference Manual}). Each locale has a name that typically has the form
b2636518 6399@code{@var{language}_@var{territory}.@var{codeset}}---e.g.,
598e19dc
LC
6400@code{fr_LU.utf8} designates the locale for the French language, with
6401cultural conventions from Luxembourg, and using the UTF-8 encoding.
6402
6403@cindex locale definition
6404Usually, you will want to specify the default locale for the machine
6405using the @code{locale} field of the @code{operating-system} declaration
6406(@pxref{operating-system Reference, @code{locale}}).
6407
6408That locale must be among the @dfn{locale definitions} that are known to
6409the system---and these are specified in the @code{locale-definitions}
6410slot of @code{operating-system}. The default value includes locale
c4847f49 6411definitions for some widely used locales, but not for all the available
598e19dc
LC
6412locales, in order to save space.
6413
6414If the locale specified in the @code{locale} field is not among the
6415definitions listed in @code{locale-definitions}, @command{guix system}
6416raises an error. In that case, you should add the locale definition to
6417the @code{locale-definitions} field. For instance, to add the North
6418Frisian locale for Germany, the value of that field may be:
6419
6420@example
6421(cons (locale-definition
6422 (name "fy_DE.utf8") (source "fy_DE"))
6423 %default-locale-definitions)
6424@end example
6425
6426Likewise, to save space, one might want @code{locale-definitions} to
6427list only the locales that are actually used, as in:
6428
6429@example
6430(list (locale-definition
6431 (name "ja_JP.eucjp") (source "ja_JP")
6432 (charset "EUC-JP")))
6433@end example
6434
5c3c1427
LC
6435@vindex LOCPATH
6436The compiled locale definitions are available at
46bd6edd
LC
6437@file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc
6438version, which is the default location where the GNU@tie{}libc provided
6439by Guix looks for locale data. This can be overridden using the
6440@code{LOCPATH} environment variable (@pxref{locales-and-locpath,
5c3c1427
LC
6441@code{LOCPATH} and locale packages}).
6442
598e19dc
LC
6443The @code{locale-definition} form is provided by the @code{(gnu system
6444locale)} module. Details are given below.
6445
6446@deftp {Data Type} locale-definition
6447This is the data type of a locale definition.
6448
6449@table @asis
6450
6451@item @code{name}
6452The name of the locale. @xref{Locale Names,,, libc, The GNU C Library
6453Reference Manual}, for more information on locale names.
6454
6455@item @code{source}
6456The name of the source for that locale. This is typically the
6457@code{@var{language}_@var{territory}} part of the locale name.
6458
6459@item @code{charset} (default: @code{"UTF-8"})
6460The ``character set'' or ``code set'' for that locale,
6461@uref{http://www.iana.org/assignments/character-sets, as defined by
6462IANA}.
6463
6464@end table
6465@end deftp
6466
6467@defvr {Scheme Variable} %default-locale-definitions
b2636518
LC
6468An arbitrary list of commonly used UTF-8 locales, used as the default
6469value of the @code{locale-definitions} field of @code{operating-system}
598e19dc 6470declarations.
b2636518
LC
6471
6472@cindex locale name
6473@cindex normalized codeset in locale names
6474These locale definitions use the @dfn{normalized codeset} for the part
6475that follows the dot in the name (@pxref{Using gettextized software,
6476normalized codeset,, libc, The GNU C Library Reference Manual}). So for
6477instance it has @code{uk_UA.utf8} but @emph{not}, say,
6478@code{uk_UA.UTF-8}.
598e19dc 6479@end defvr
401c53c4 6480
34760ae7
LC
6481@subsubsection Locale Data Compatibility Considerations
6482
6483@cindex incompatibility, of locale data
6484@code{operating-system} declarations provide a @code{locale-libcs} field
6485to specify the GNU@tie{}libc packages that are used to compile locale
6486declarations (@pxref{operating-system Reference}). ``Why would I
6487care?'', you may ask. Well, it turns out that the binary format of
6488locale data is occasionally incompatible from one libc version to
6489another.
6490
6491@c See <https://sourceware.org/ml/libc-alpha/2015-09/msg00575.html>
6492@c and <https://lists.gnu.org/archive/html/guix-devel/2015-08/msg00737.html>.
6493For instance, a program linked against libc version 2.21 is unable to
6494read locale data produced with libc 2.22; worse, that program
6495@emph{aborts} instead of simply ignoring the incompatible locale
6496data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip
6497the incompatible locale data, which is already an improvement.}.
6498Similarly, a program linked against libc 2.22 can read most, but not
6499all, the locale data from libc 2.21 (specifically, @code{LC_COLLATE}
6500data is incompatible); thus calls to @code{setlocale} may fail, but
6501programs will not abort.
6502
6503The ``problem'' in GuixSD is that users have a lot of freedom: They can
6504choose whether and when to upgrade software in their profiles, and might
6505be using a libc version different from the one the system administrator
6506used to build the system-wide locale data.
6507
6508Fortunately, unprivileged users can also install their own locale data
6509and define @var{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath,
6510@code{GUIX_LOCPATH} and locale packages}).
6511
6512Still, it is best if the system-wide locale data at
6513@file{/run/current-system/locale} is built for all the libc versions
6514actually in use on the system, so that all the programs can access
6515it---this is especially crucial on a multi-user system. To do that, the
6516administrator can specify several libc packages in the
6517@code{locale-libcs} field of @code{operating-system}:
6518
6519@example
6520(use-package-modules base)
6521
6522(operating-system
6523 ;; @dots{}
6524 (locale-libcs (list glibc-2.21 (canonical-package glibc))))
6525@end example
6526
6527This example would lead to a system containing locale definitions for
6528both libc 2.21 and the current version of libc in
6529@file{/run/current-system/locale}.
6530
6531
cf4a9129
LC
6532@node Services
6533@subsection Services
401c53c4 6534
cf4a9129
LC
6535@cindex system services
6536An important part of preparing an @code{operating-system} declaration is
6537listing @dfn{system services} and their configuration (@pxref{Using the
6538Configuration System}). System services are typically daemons launched
6539when the system boots, or other actions needed at that time---e.g.,
d8b94dbd
LC
6540configuring network access.
6541
dd17bc38
AK
6542Services are managed by the GNU@tie{}Shepherd (@pxref{Introduction,,,
6543shepherd, The GNU Shepherd Manual}). On a running system, the
6544@command{herd} command allows you to list the available services, show
6545their status, start and stop them, or do other specific operations
6546(@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:
d8b94dbd
LC
6547
6548@example
dd17bc38 6549# herd status
d8b94dbd
LC
6550@end example
6551
6552The above command, run as @code{root}, lists the currently defined
dd17bc38 6553services. The @command{herd doc} command shows a synopsis of the given
d8b94dbd
LC
6554service:
6555
6556@example
dd17bc38 6557# herd doc nscd
d8b94dbd
LC
6558Run libc's name service cache daemon (nscd).
6559@end example
6560
6561The @command{start}, @command{stop}, and @command{restart} sub-commands
6562have the effect you would expect. For instance, the commands below stop
6563the nscd service and restart the Xorg display server:
6564
6565@example
dd17bc38 6566# herd stop nscd
d8b94dbd 6567Service nscd has been stopped.
dd17bc38 6568# herd restart xorg-server
d8b94dbd
LC
6569Service xorg-server has been stopped.
6570Service xorg-server has been started.
6571@end example
401c53c4 6572
cf4a9129 6573The following sections document the available services, starting with
d8b94dbd
LC
6574the core services, that may be used in an @code{operating-system}
6575declaration.
401c53c4 6576
cf4a9129
LC
6577@menu
6578* Base Services:: Essential system services.
6579* Networking Services:: Network setup, SSH daemon, etc.
6580* X Window:: Graphical display.
fe1a39d3 6581* Desktop Services:: D-Bus and desktop services.
105369a4 6582* Database Services:: SQL databases.
d8c18af8 6583* Mail Services:: IMAP, POP3, SMTP, and all that.
58724c48 6584* Web Services:: Web servers.
aa4ed923 6585* Various Services:: Other services.
cf4a9129 6586@end menu
401c53c4 6587
cf4a9129
LC
6588@node Base Services
6589@subsubsection Base Services
a1ba8475 6590
cf4a9129
LC
6591The @code{(gnu services base)} module provides definitions for the basic
6592services that one expects from the system. The services exported by
6593this module are listed below.
401c53c4 6594
cf4a9129 6595@defvr {Scheme Variable} %base-services
31771497
LC
6596This variable contains a list of basic services (@pxref{Service Types
6597and Services}, for more information on service objects) one would
cf4a9129
LC
6598expect from the system: a login service (mingetty) on each tty, syslogd,
6599libc's name service cache daemon (nscd), the udev device manager, and
6600more.
401c53c4 6601
cf4a9129
LC
6602This is the default value of the @code{services} field of
6603@code{operating-system} declarations. Usually, when customizing a
6604system, you will want to append services to @var{%base-services}, like
6605this:
401c53c4 6606
cf4a9129 6607@example
fa1e31b8 6608(cons* (avahi-service) (lsh-service) %base-services)
cf4a9129
LC
6609@end example
6610@end defvr
401c53c4 6611
be1c2c54 6612@deffn {Scheme Procedure} host-name-service @var{name}
cf4a9129
LC
6613Return a service that sets the host name to @var{name}.
6614@end deffn
401c53c4 6615
66e4f01c
LC
6616@deffn {Scheme Procedure} mingetty-service @var{config}
6617Return a service to run mingetty according to @var{config}, a
6618@code{<mingetty-configuration>} object, which specifies the tty to run, among
6619other things.
cf4a9129 6620@end deffn
401c53c4 6621
66e4f01c
LC
6622@deftp {Data Type} mingetty-configuration
6623This is the data type representing the configuration of Mingetty, which
6624implements console log-in.
6625
6626@table @asis
6627
6628@item @code{tty}
6629The name of the console this Mingetty runs on---e.g., @code{"tty1"}.
6630
6631@item @code{motd}
6632A file-like object containing the ``message of the day''.
6633
6634@item @code{auto-login} (default: @code{#f})
6635When true, this field must be a string denoting the user name under
f9b9a033 6636which the system automatically logs in. When it is @code{#f}, a
66e4f01c
LC
6637user name and password must be entered to log in.
6638
6639@item @code{login-program} (default: @code{#f})
6640This must be either @code{#f}, in which case the default log-in program
6641is used (@command{login} from the Shadow tool suite), or a gexp denoting
6642the name of the log-in program.
6643
6644@item @code{login-pause?} (default: @code{#f})
6645When set to @code{#t} in conjunction with @var{auto-login}, the user
6646will have to press a key before the log-in shell is launched.
6647
6648@item @code{mingetty} (default: @var{mingetty})
6649The Mingetty package to use.
6650
6651@end table
6652@end deftp
6653
6454b333
LC
6654@cindex name service cache daemon
6655@cindex nscd
be1c2c54 6656@deffn {Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @
4aee6e60 6657 [#:name-services '()]
b893f1ae
LC
6658Return a service that runs libc's name service cache daemon (nscd) with the
6659given @var{config}---an @code{<nscd-configuration>} object. @xref{Name
6660Service Switch}, for an example.
cf4a9129 6661@end deffn
401c53c4 6662
6454b333
LC
6663@defvr {Scheme Variable} %nscd-default-configuration
6664This is the default @code{<nscd-configuration>} value (see below) used
6665by @code{nscd-service}. This uses the caches defined by
6666@var{%nscd-default-caches}; see below.
6667@end defvr
6668
6669@deftp {Data Type} nscd-configuration
6670This is the type representing the name service cache daemon (nscd)
6671configuration.
6672
6673@table @asis
6674
b893f1ae
LC
6675@item @code{name-services} (default: @code{'()})
6676List of packages denoting @dfn{name services} that must be visible to
6677the nscd---e.g., @code{(list @var{nss-mdns})}.
6678
6679@item @code{glibc} (default: @var{glibc})
6680Package object denoting the GNU C Library providing the @command{nscd}
6681command.
6682
6454b333
LC
6683@item @code{log-file} (default: @code{"/var/log/nscd.log"})
6684Name of nscd's log file. This is where debugging output goes when
6685@code{debug-level} is strictly positive.
6686
6687@item @code{debug-level} (default: @code{0})
6688Integer denoting the debugging levels. Higher numbers mean more
6689debugging output is logged.
6690
6691@item @code{caches} (default: @var{%nscd-default-caches})
6692List of @code{<nscd-cache>} objects denoting things to be cached; see
6693below.
6694
6695@end table
6696@end deftp
6697
6698@deftp {Data Type} nscd-cache
6699Data type representing a cache database of nscd and its parameters.
6700
6701@table @asis
6702
6703@item @code{database}
6704This is a symbol representing the name of the database to be cached.
6705Valid values are @code{passwd}, @code{group}, @code{hosts}, and
6706@code{services}, which designate the corresponding NSS database
6707(@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual}).
6708
6709@item @code{positive-time-to-live}
6710@itemx @code{negative-time-to-live} (default: @code{20})
6711A number representing the number of seconds during which a positive or
6712negative lookup result remains in cache.
6713
6714@item @code{check-files?} (default: @code{#t})
6715Whether to check for updates of the files corresponding to
6716@var{database}.
6717
6718For instance, when @var{database} is @code{hosts}, setting this flag
6719instructs nscd to check for updates in @file{/etc/hosts} and to take
6720them into account.
6721
6722@item @code{persistent?} (default: @code{#t})
6723Whether the cache should be stored persistently on disk.
6724
6725@item @code{shared?} (default: @code{#t})
6726Whether the cache should be shared among users.
6727
6728@item @code{max-database-size} (default: 32@tie{}MiB)
6729Maximum size in bytes of the database cache.
6730
6731@c XXX: 'suggested-size' and 'auto-propagate?' seem to be expert
6732@c settings, so leave them out.
6733
6734@end table
6735@end deftp
6736
6737@defvr {Scheme Variable} %nscd-default-caches
6738List of @code{<nscd-cache>} objects used by default by
6739@code{nscd-configuration} (see above.)
6740
6741It enables persistent and aggressive caching of service and host name
6742lookups. The latter provides better host name lookup performance,
6743resilience in the face of unreliable name servers, and also better
6744privacy---often the result of host name lookups is in local cache, so
6745external name servers do not even need to be queried.
6746@end defvr
6747
6748
be1c2c54 6749@deffn {Scheme Procedure} syslog-service [#:config-file #f]
1bb76f75
AK
6750Return a service that runs @code{syslogd}. If configuration file name
6751@var{config-file} is not specified, use some reasonable default
cf4a9129
LC
6752settings.
6753@end deffn
401c53c4 6754
0adfe95a
LC
6755@anchor{guix-configuration-type}
6756@deftp {Data Type} guix-configuration
6757This data type represents the configuration of the Guix build daemon.
6758@xref{Invoking guix-daemon}, for more information.
6759
6760@table @asis
6761@item @code{guix} (default: @var{guix})
6762The Guix package to use.
401c53c4 6763
0adfe95a
LC
6764@item @code{build-group} (default: @code{"guixbuild"})
6765Name of the group for build user accounts.
401c53c4 6766
0adfe95a
LC
6767@item @code{build-accounts} (default: @code{10})
6768Number of build user accounts to create.
401c53c4 6769
0adfe95a
LC
6770@item @code{authorize-key?} (default: @code{#t})
6771Whether to authorize the substitute key for @code{hydra.gnu.org}
6772(@pxref{Substitutes}).
6773
6774@item @code{use-substitutes?} (default: @code{#t})
6775Whether to use substitutes.
6776
b0b9f6e0
LC
6777@item @code{substitute-urls} (default: @var{%default-substitute-urls})
6778The list of URLs where to look for substitutes by default.
6779
0adfe95a
LC
6780@item @code{extra-options} (default: @code{'()})
6781List of extra command-line options for @command{guix-daemon}.
6782
6783@item @code{lsof} (default: @var{lsof})
6784@itemx @code{lsh} (default: @var{lsh})
6785The lsof and lsh packages to use.
6786
6787@end table
6788@end deftp
6789
6790@deffn {Scheme Procedure} guix-service @var{config}
6791Return a service that runs the Guix build daemon according to
6792@var{config}.
cf4a9129 6793@end deffn
a1ba8475 6794
be1c2c54 6795@deffn {Scheme Procedure} udev-service [#:udev udev]
cf4a9129
LC
6796Run @var{udev}, which populates the @file{/dev} directory dynamically.
6797@end deffn
401c53c4 6798
be1c2c54 6799@deffn {Scheme Procedure} console-keymap-service @var{file}
5eca9459
AK
6800Return a service to load console keymap from @var{file} using
6801@command{loadkeys} command.
6802@end deffn
6803
8664cc88
LC
6804@deffn {Scheme Procedure} gpm-service-type [#:gpm @var{gpm}] @
6805 [#:options]
6806Run @var{gpm}, the general-purpose mouse daemon, with the given
6807command-line @var{options}. GPM allows users to use the mouse in the console,
6808notably to select, copy, and paste text. The default value of @var{options}
6809uses the @code{ps2} protocol, which works for both USB and PS/2 mice.
6810
6811This service is not part of @var{%base-services}.
6812@end deffn
6813
1c52181f
LC
6814@anchor{guix-publish-service}
6815@deffn {Scheme Procedure} guix-publish-service [#:guix @var{guix}] @
6816 [#:port 80] [#:host "localhost"]
6817Return a service that runs @command{guix publish} listening on @var{host}
6818and @var{port} (@pxref{Invoking guix publish}).
6819
6820This assumes that @file{/etc/guix} already contains a signing key pair as
6821created by @command{guix archive --generate-key} (@pxref{Invoking guix
6822archive}). If that is not the case, the service will fail to start.
6823@end deffn
6824
a69576ea 6825
cf4a9129
LC
6826@node Networking Services
6827@subsubsection Networking Services
401c53c4 6828
fa1e31b8 6829The @code{(gnu services networking)} module provides services to configure
cf4a9129 6830the network interface.
a1ba8475 6831
a023cca8 6832@cindex DHCP, networking service
be1c2c54 6833@deffn {Scheme Procedure} dhcp-client-service [#:dhcp @var{isc-dhcp}]
a023cca8
LC
6834Return a service that runs @var{dhcp}, a Dynamic Host Configuration
6835Protocol (DHCP) client, on all the non-loopback network interfaces.
6836@end deffn
6837
be1c2c54 6838@deffn {Scheme Procedure} static-networking-service @var{interface} @var{ip} @
cf4a9129
LC
6839 [#:gateway #f] [#:name-services @code{'()}]
6840Return a service that starts @var{interface} with address @var{ip}. If
6841@var{gateway} is true, it must be a string specifying the default network
6842gateway.
6843@end deffn
8b315a6d 6844
b7d0c494 6845@cindex wicd
87f40011 6846@cindex network management
be1c2c54 6847@deffn {Scheme Procedure} wicd-service [#:wicd @var{wicd}]
87f40011
LC
6848Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network
6849management daemon that aims to simplify wired and wireless networking.
6850
6851This service adds the @var{wicd} package to the global profile, providing
6852several commands to interact with the daemon and configure networking:
6853@command{wicd-client}, a graphical user interface, and the @command{wicd-cli}
6854and @command{wicd-curses} user interfaces.
b7d0c494
MW
6855@end deffn
6856
c0a9589d
SB
6857@cindex NetworkManager
6858@deffn {Scheme Procedure} network-manager-service @
6859 [#:network-manager @var{network-manager}]
6860Return a service that runs NetworkManager, a network connection manager
6861that attempting to keep active network connectivity when available.
6862@end deffn
6863
be1c2c54 6864@deffn {Scheme Procedure} ntp-service [#:ntp @var{ntp}] @
63854bcb
LC
6865 [#:name-service @var{%ntp-servers}]
6866Return a service that runs the daemon from @var{ntp}, the
6867@uref{http://www.ntp.org, Network Time Protocol package}. The daemon will
6868keep the system clock synchronized with that of @var{servers}.
6869@end deffn
6870
6871@defvr {Scheme Variable} %ntp-servers
6872List of host names used as the default NTP servers.
6873@end defvr
6874
375c6108
LC
6875@deffn {Scheme Procedure} tor-service [@var{config-file}] [#:tor @var{tor}]
6876Return a service to run the @uref{https://torproject.org, Tor} anonymous
6877networking daemon.
8b315a6d 6878
375c6108 6879The daemon runs as the @code{tor} unprivileged user. It is passed
6331bde7
LC
6880@var{config-file}, a file-like object, with an additional @code{User tor} line
6881and lines for hidden services added via @code{tor-hidden-service}. Run
6882@command{man tor} for information about the configuration file.
6883@end deffn
6884
24a8ef3b 6885@cindex hidden service
6331bde7
LC
6886@deffn {Scheme Procedure} tor-hidden-service @var{name} @var{mapping}
6887Define a new Tor @dfn{hidden service} called @var{name} and implementing
6888@var{mapping}. @var{mapping} is a list of port/host tuples, such as:
6889
6890@example
24a8ef3b
LC
6891 '((22 "127.0.0.1:22")
6892 (80 "127.0.0.1:8080"))
6331bde7
LC
6893@end example
6894
6895In this example, port 22 of the hidden service is mapped to local port 22, and
6896port 80 is mapped to local port 8080.
6897
6629099a
LC
6898This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where
6899the @file{hostname} file contains the @code{.onion} host name for the hidden
6331bde7
LC
6900service.
6901
6902See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor
6903project's documentation} for more information.
cf4a9129 6904@end deffn
8b315a6d 6905
be1c2c54 6906@deffn {Scheme Procedure} bitlbee-service [#:bitlbee bitlbee] @
4627a464
LC
6907 [#:interface "127.0.0.1"] [#:port 6667] @
6908 [#:extra-settings ""]
6909Return a service that runs @url{http://bitlbee.org,BitlBee}, a daemon that
6910acts as a gateway between IRC and chat networks.
6911
6912The daemon will listen to the interface corresponding to the IP address
6913specified in @var{interface}, on @var{port}. @code{127.0.0.1} means that only
6914local clients can connect, whereas @code{0.0.0.0} means that connections can
6915come from any networking interface.
6916
6917In addition, @var{extra-settings} specifies a string to append to the
6918configuration file.
6919@end deffn
6920
f4391bec 6921Furthermore, @code{(gnu services ssh)} provides the following service.
8b315a6d 6922
be1c2c54 6923@deffn {Scheme Procedure} lsh-service [#:host-key "/etc/lsh/host-key"] @
5833bf33 6924 [#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @
cf4a9129
LC
6925 [#:allow-empty-passwords? #f] [#:root-login? #f] @
6926 [#:syslog-output? #t] [#:x11-forwarding? #t] @
6927 [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @
21cc905a 6928 [#:public-key-authentication? #t] [#:initialize? #t]
cf4a9129
LC
6929Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}.
6930@var{host-key} must designate a file containing the host key, and readable
6931only by root.
72e25e35 6932
5833bf33
DP
6933When @var{daemonic?} is true, @command{lshd} will detach from the
6934controlling terminal and log its output to syslogd, unless one sets
6935@var{syslog-output?} to false. Obviously, it also makes lsh-service
6936depend on existence of syslogd service. When @var{pid-file?} is true,
6937@command{lshd} writes its PID to the file called @var{pid-file}.
6938
cf4a9129
LC
6939When @var{initialize?} is true, automatically create the seed and host key
6940upon service activation if they do not exist yet. This may take long and
6941require interaction.
8b315a6d 6942
20dd519c
LC
6943When @var{initialize?} is false, it is up to the user to initialize the
6944randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create
6945a key pair with the private key stored in file @var{host-key} (@pxref{lshd
6946basics,,, lsh, LSH Manual}).
6947
cf4a9129
LC
6948When @var{interfaces} is empty, lshd listens for connections on all the
6949network interfaces; otherwise, @var{interfaces} must be a list of host names
6950or addresses.
9bf3c1a7 6951
20dd519c
LC
6952@var{allow-empty-passwords?} specifies whether to accept log-ins with empty
6953passwords, and @var{root-login?} specifies whether to accept log-ins as
cf4a9129 6954root.
4af2447e 6955
cf4a9129
LC
6956The other options should be self-descriptive.
6957@end deffn
4af2447e 6958
fa0c1d61
LC
6959@defvr {Scheme Variable} %facebook-host-aliases
6960This variable contains a string for use in @file{/etc/hosts}
6961(@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each
6962line contains a entry that maps a known server name of the Facebook
6963on-line service---e.g., @code{www.facebook.com}---to the local
6964host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}.
6965
6966This variable is typically used in the @code{hosts-file} field of an
7313a52e
LC
6967@code{operating-system} declaration (@pxref{operating-system Reference,
6968@file{/etc/hosts}}):
fa0c1d61
LC
6969
6970@example
6971(use-modules (gnu) (guix))
6972
6973(operating-system
6974 (host-name "mymachine")
6975 ;; ...
6976 (hosts-file
6977 ;; Create a /etc/hosts file with aliases for "localhost"
6978 ;; and "mymachine", as well as for Facebook servers.
24e02c28
LC
6979 (plain-file "hosts"
6980 (string-append (local-host-aliases host-name)
6981 %facebook-host-aliases))))
fa0c1d61
LC
6982@end example
6983
6984This mechanism can prevent programs running locally, such as Web
6985browsers, from accessing Facebook.
6986@end defvr
6987
965a7332
LC
6988The @code{(gnu services avahi)} provides the following definition.
6989
be1c2c54 6990@deffn {Scheme Procedure} avahi-service [#:avahi @var{avahi}] @
965a7332
LC
6991 [#:host-name #f] [#:publish? #t] [#:ipv4? #t] @
6992 [#:ipv6? #t] [#:wide-area? #f] @
6993 [#:domains-to-browse '()]
6994Return a service that runs @command{avahi-daemon}, a system-wide
6995mDNS/DNS-SD responder that allows for service discovery and
cc9c1f39
LC
6996"zero-configuration" host name lookups (see @uref{http://avahi.org/}), and
6997extends the name service cache daemon (nscd) so that it can resolve
6998@code{.local} host names using
1065bed9
LC
6999@uref{http://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. Additionally,
7000add the @var{avahi} package to the system profile so that commands such as
7001@command{avahi-browse} are directly usable.
965a7332
LC
7002
7003If @var{host-name} is different from @code{#f}, use that as the host name to
7004publish for this machine; otherwise, use the machine's actual host name.
7005
7006When @var{publish?} is true, publishing of host names and services is allowed;
7007in particular, avahi-daemon will publish the machine's host name and IP
7008address via mDNS on the local network.
7009
7010When @var{wide-area?} is true, DNS-SD over unicast DNS is enabled.
7011
7012Boolean values @var{ipv4?} and @var{ipv6?} determine whether to use IPv4/IPv6
7013sockets.
7014@end deffn
7015
7016
cf4a9129
LC
7017@node X Window
7018@subsubsection X Window
68ad877c 7019
cf4a9129
LC
7020Support for the X Window graphical display system---specifically
7021Xorg---is provided by the @code{(gnu services xorg)} module. Note that
7022there is no @code{xorg-service} procedure. Instead, the X server is
7023started by the @dfn{login manager}, currently SLiM.
4af2447e 7024
be1c2c54 7025@deffn {Scheme Procedure} slim-service [#:allow-empty-passwords? #f] @
0ecc3bf3
LC
7026 [#:auto-login? #f] [#:default-user ""] [#:startx] @
7027 [#:theme @var{%default-slim-theme}] @
4bd43bbe 7028 [#:theme-name @var{%default-slim-theme-name}]
cf4a9129
LC
7029Return a service that spawns the SLiM graphical login manager, which in
7030turn starts the X display server with @var{startx}, a command as returned by
7031@code{xorg-start-command}.
4af2447e 7032
04e4e6ab
LC
7033@cindex X session
7034
7035SLiM automatically looks for session types described by the @file{.desktop}
7036files in @file{/run/current-system/profile/share/xsessions} and allows users
7037to choose a session from the log-in screen using @kbd{F1}. Packages such as
7038@var{xfce}, @var{sawfish}, and @var{ratpoison} provide @file{.desktop} files;
7039adding them to the system-wide set of packages automatically makes them
7040available at the log-in screen.
7041
7042In addition, @file{~/.xsession} files are honored. When available,
7043@file{~/.xsession} must be an executable that starts a window manager
7044and/or other X clients.
7045
cf4a9129
LC
7046When @var{allow-empty-passwords?} is true, allow logins with an empty
7047password. When @var{auto-login?} is true, log in automatically as
7048@var{default-user}.
0ecc3bf3
LC
7049
7050If @var{theme} is @code{#f}, the use the default log-in theme; otherwise
7051@var{theme} must be a gexp denoting the name of a directory containing the
7052theme to use. In that case, @var{theme-name} specifies the name of the
7053theme.
cf4a9129 7054@end deffn
4af2447e 7055
0ecc3bf3
LC
7056@defvr {Scheme Variable} %default-theme
7057@defvrx {Scheme Variable} %default-theme-name
7058The G-Expression denoting the default SLiM theme and its name.
7059@end defvr
7060
be1c2c54 7061@deffn {Scheme Procedure} xorg-start-command [#:guile] @
d1cdd7ba 7062 [#:configuration-file #f] [#:xorg-server @var{xorg-server}]
f703413e 7063Return a derivation that builds a @var{guile} script to start the X server
d1cdd7ba
LC
7064from @var{xorg-server}. @var{configuration-file} is the server configuration
7065file or a derivation that builds it; when omitted, the result of
7066@code{xorg-configuration-file} is used.
7067
7068Usually the X server is started by a login manager.
7069@end deffn
7070
be1c2c54 7071@deffn {Scheme Procedure} xorg-configuration-file @
12422c9d 7072 [#:drivers '()] [#:resolutions '()] [#:extra-config '()]
d1cdd7ba
LC
7073Return a configuration file for the Xorg server containing search paths for
7074all the common drivers.
f703413e
LC
7075
7076@var{drivers} must be either the empty list, in which case Xorg chooses a
7077graphics driver automatically, or a list of driver names that will be tried in
d1cdd7ba 7078this order---e.g., @code{(\"modesetting\" \"vesa\")}.
d2e59637
LC
7079
7080Likewise, when @var{resolutions} is the empty list, Xorg chooses an
7081appropriate screen resolution; otherwise, it must be a list of
7082resolutions---e.g., @code{((1024 768) (640 480))}.
12422c9d
LC
7083
7084Last, @var{extra-config} is a list of strings or objects appended to the
7085@code{text-file*} argument list. It is used to pass extra text to be added
7086verbatim to the configuration file.
f703413e 7087@end deffn
4af2447e 7088
6726282b
LC
7089@deffn {Scheme Procedure} screen-locker-service @var{package} [@var{name}]
7090Add @var{package}, a package for a screen-locker or screen-saver whose
7091command is @var{program}, to the set of setuid programs and add a PAM entry
7092for it. For example:
7093
7094@lisp
7095(screen-locker-service xlockmore "xlock")
7096@end lisp
7097
7098makes the good ol' XlockMore usable.
7099@end deffn
7100
7101
fe1a39d3
LC
7102@node Desktop Services
7103@subsubsection Desktop Services
aa4ed923 7104
fe1a39d3
LC
7105The @code{(gnu services desktop)} module provides services that are
7106usually useful in the context of a ``desktop'' setup---that is, on a
7107machine running a graphical display server, possibly with graphical user
7108interfaces, etc.
aa4ed923 7109
4467be21
LC
7110To simplify things, the module defines a variable containing the set of
7111services that users typically expect on a machine with a graphical
7112environment and networking:
7113
7114@defvr {Scheme Variable} %desktop-services
7115This is a list of services that builds upon @var{%base-services} and
7116adds or adjust services for a typical ``desktop'' setup.
7117
7118In particular, it adds a graphical login manager (@pxref{X Window,
6726282b
LC
7119@code{slim-service}}), screen lockers,
7120a network management tool (@pxref{Networking
4467be21 7121Services, @code{wicd-service}}), energy and color management services,
4650a77e 7122the @code{elogind} login and seat manager, the Polkit privilege service,
cee32ee4
AW
7123the GeoClue location service, an NTP client (@pxref{Networking
7124Services}), the Avahi daemon, and has the name service switch service
7125configured to be able to use @code{nss-mdns} (@pxref{Name Service
7126Switch, mDNS}).
4467be21
LC
7127@end defvr
7128
7129The @var{%desktop-services} variable can be used as the @code{services}
7130field of an @code{operating-system} declaration (@pxref{operating-system
7131Reference, @code{services}}).
7132
0adfe95a
LC
7133The actual service definitions provided by @code{(gnu services dbus)}
7134and @code{(gnu services desktop)} are described below.
4467be21 7135
0adfe95a 7136@deffn {Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]
fe1a39d3
LC
7137Return a service that runs the ``system bus'', using @var{dbus}, with
7138support for @var{services}.
aa4ed923 7139
fe1a39d3
LC
7140@uref{http://dbus.freedesktop.org/, D-Bus} is an inter-process communication
7141facility. Its system bus is used to allow system services to communicate
7142and be notified of system-wide events.
aa4ed923 7143
fe1a39d3
LC
7144@var{services} must be a list of packages that provide an
7145@file{etc/dbus-1/system.d} directory containing additional D-Bus configuration
7146and policy files. For example, to allow avahi-daemon to use the system bus,
7147@var{services} must be equal to @code{(list avahi)}.
aa4ed923
AK
7148@end deffn
7149
0adfe95a 7150@deffn {Scheme Procedure} elogind-service [#:config @var{config}]
4650a77e
AW
7151Return a service that runs the @code{elogind} login and
7152seat management daemon. @uref{https://github.com/andywingo/elogind,
7153Elogind} exposes a D-Bus interface that can be used to know which users
7154are logged in, know what kind of sessions they have open, suspend the
7155system, inhibit system suspend, reboot the system, and other tasks.
7156
7157Elogind handles most system-level power events for a computer, for
7158example suspending the system when a lid is closed, or shutting it down
7159when the power button is pressed.
7160
7161The @var{config} keyword argument specifies the configuration for
7162elogind, and should be the result of a @code{(elogind-configuration
7163(@var{parameter} @var{value})...)} invocation. Available parameters and
7164their default values are:
7165
7166@table @code
7167@item kill-user-processes?
7168@code{#f}
7169@item kill-only-users
7170@code{()}
7171@item kill-exclude-users
7172@code{("root")}
7173@item inhibit-delay-max-seconds
7174@code{5}
7175@item handle-power-key
7176@code{poweroff}
7177@item handle-suspend-key
7178@code{suspend}
7179@item handle-hibernate-key
7180@code{hibernate}
7181@item handle-lid-switch
7182@code{suspend}
7183@item handle-lid-switch-docked
7184@code{ignore}
7185@item power-key-ignore-inhibited?
7186@code{#f}
7187@item suspend-key-ignore-inhibited?
7188@code{#f}
7189@item hibernate-key-ignore-inhibited?
7190@code{#f}
7191@item lid-switch-ignore-inhibited?
7192@code{#t}
7193@item holdoff-timeout-seconds
7194@code{30}
7195@item idle-action
7196@code{ignore}
7197@item idle-action-seconds
7198@code{(* 30 60)}
7199@item runtime-directory-size-percent
7200@code{10}
7201@item runtime-directory-size
7202@code{#f}
7203@item remove-ipc?
7204@code{#t}
7205@item suspend-state
7206@code{("mem" "standby" "freeze")}
7207@item suspend-mode
7208@code{()}
7209@item hibernate-state
7210@code{("disk")}
7211@item hibernate-mode
7212@code{("platform" "shutdown")}
7213@item hybrid-sleep-state
7214@code{("disk")}
7215@item hybrid-sleep-mode
7216@code{("suspend" "platform" "shutdown")}
7217@end table
7218@end deffn
7219
be1c2c54 7220@deffn {Scheme Procedure} polkit-service @
4650a77e 7221 [#:polkit @var{polkit}]
222e3319
LC
7222Return a service that runs the
7223@uref{http://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege
7224management service}, which allows system administrators to grant access to
7225privileged operations in a structured way. By querying the Polkit service, a
7226privileged system component can know when it should grant additional
7227capabilities to ordinary users. For example, an ordinary user can be granted
7228the capability to suspend the system if the user is logged in locally.
4650a77e
AW
7229@end deffn
7230
be1c2c54 7231@deffn {Scheme Procedure} upower-service [#:upower @var{upower}] @
be234128
AW
7232 [#:watts-up-pro? #f] @
7233 [#:poll-batteries? #t] @
7234 [#:ignore-lid? #f] @
7235 [#:use-percentage-for-policy? #f] @
7236 [#:percentage-low 10] @
7237 [#:percentage-critical 3] @
7238 [#:percentage-action 2] @
7239 [#:time-low 1200] @
7240 [#:time-critical 300] @
7241 [#:time-action 120] @
7242 [#:critical-power-action 'hybrid-sleep]
7243Return a service that runs @uref{http://upower.freedesktop.org/,
7244@command{upowerd}}, a system-wide monitor for power consumption and battery
7245levels, with the given configuration settings. It implements the
7246@code{org.freedesktop.UPower} D-Bus interface, and is notably used by
7247GNOME.
7248@end deffn
7249
2b9e0a94
LC
7250@deffn {Scheme Procedure} udisks-service [#:udisks @var{udisks}]
7251Return a service for @uref{http://udisks.freedesktop.org/docs/latest/,
7252UDisks}, a @dfn{disk management} daemon that provides user interfaces with
7253notifications and ways to mount/unmount disks. Programs that talk to UDisks
7254include the @command{udisksctl} command, part of UDisks, and GNOME Disks.
7255@end deffn
7256
be1c2c54 7257@deffn {Scheme Procedure} colord-service [#:colord @var{colord}]
7ce597ff
AW
7258Return a service that runs @command{colord}, a system service with a D-Bus
7259interface to manage the color profiles of input and output devices such as
7260screens and scanners. It is notably used by the GNOME Color Manager graphical
7261tool. See @uref{http://www.freedesktop.org/software/colord/, the colord web
7262site} for more information.
7263@end deffn
7264
cee32ee4
AW
7265@deffn {Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]
7266Return an configuration allowing an application to access GeoClue
7267location data. @var{name} is the Desktop ID of the application, without
7268the @code{.desktop} part. If @var{allowed?} is true, the application
7269will have access to location information by default. The boolean
7270@var{system?} value indicates that an application is a system component
7271or not. Finally @var{users} is a list of UIDs of all users for which
7272this application is allowed location info access. An empty users list
7273means that all users are allowed.
7274@end deffn
7275
7276@defvr {Scheme Variable} %standard-geoclue-applications
7277The standard list of well-known GeoClue application configurations,
7278granting authority to GNOME's date-and-time utility to ask for the
7279current location in order to set the time zone, and allowing the Firefox
7280(IceCat) and Epiphany web browsers to request location information.
7281Firefox and Epiphany both query the user before allowing a web page to
7282know the user's location.
7283@end defvr
7284
be1c2c54 7285@deffn {Scheme Procedure} geoclue-service [#:colord @var{colord}] @
cee32ee4
AW
7286 [#:whitelist '()] @
7287 [#:wifi-geolocation-url "https://location.services.mozilla.com/v1/geolocate?key=geoclue"] @
7288 [#:submit-data? #f]
7289 [#:wifi-submission-url "https://location.services.mozilla.com/v1/submit?key=geoclue"] @
7290 [#:submission-nick "geoclue"] @
7291 [#:applications %standard-geoclue-applications]
7292Return a service that runs the GeoClue location service. This service
7293provides a D-Bus interface to allow applications to request access to a
7294user's physical location, and optionally to add information to online
7295location databases. See
7296@uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue
7297web site} for more information.
7298@end deffn
7299
105369a4
DT
7300@node Database Services
7301@subsubsection Database Services
7302
7303The @code{(gnu services databases)} module provides the following service.
7304
be1c2c54 7305@deffn {Scheme Procedure} postgresql-service [#:postgresql postgresql] @
105369a4
DT
7306 [#:config-file] [#:data-directory ``/var/lib/postgresql/data'']
7307Return a service that runs @var{postgresql}, the PostgreSQL database
7308server.
7309
7310The PostgreSQL daemon loads its runtime configuration from
7311@var{config-file} and stores the database cluster in
7312@var{data-directory}.
7313@end deffn
fe1a39d3 7314
d8c18af8
AW
7315@node Mail Services
7316@subsubsection Mail Services
7317
7318The @code{(gnu services mail)} module provides Guix service definitions
7319for mail services. Currently the only implemented service is Dovecot,
7320an IMAP, POP3, and LMTP server.
7321
7322Guix does not yet have a mail transfer agent (MTA), although for some
7323lightweight purposes the @code{esmtp} relay-only MTA may suffice. Help
7324is needed to properly integrate a full MTA, such as Postfix. Patches
7325welcome!
7326
7327To add an IMAP/POP3 server to a GuixSD system, add a
7328@code{dovecot-service} to the operating system definition:
7329
7330@deffn {Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]
7331Return a service that runs the Dovecot IMAP/POP3/LMTP mail server.
7332@end deffn
7333
7334By default, Dovecot doesn't need much configuration; the default
7335configuration object created by @code{(dovecot-configuration)} will
7336suffice if your mail is delivered to @code{~/Maildir}. A self-signed
7337certificate will be generated for TLS-protected connections, though
7338Dovecot will also listen on cleartext ports by default. There are a
7339number of options though which mail administrators might need to change,
7340and as is the case with other services, Guix allows the system
7341administrator to specify these parameters via a uniform Scheme interface.
7342
7343For example, to specify that mail is located at @code{maildir~/.mail},
7344one would instantiate the Dovecot service like this:
7345
7346@example
7347(dovecot-service #:config
7348 (dovecot-configuration
7349 (mail-location "maildir:~/.mail")))
7350@end example
7351
7352The available configuration parameters follow. Each parameter
7353definition is preceded by its type; for example, @samp{string-list foo}
7354indicates that the @code{foo} parameter should be specified as a list of
7355strings. There is also a way to specify the configuration as a string,
7356if you have an old @code{dovecot.conf} file that you want to port over
7357from some other system; see the end for more details.
7358
7359@c The following documentation was initially generated by
7360@c (generate-documentation) in (gnu services mail). Manually maintained
7361@c documentation is better, so we shouldn't hesitate to edit below as
7362@c needed. However if the change you want to make to this documentation
7363@c can be done in an automated way, it's probably easier to change
7364@c (generate-documentation) than to make it below and have to deal with
7365@c the churn as dovecot updates.
7366
7367Available @code{dovecot-configuration} fields are:
7368
7369@deftypevr {@code{dovecot-configuration} parameter} package dovecot
7370The dovecot package.
7371@end deftypevr
7372
7373@deftypevr {@code{dovecot-configuration} parameter} comma-separated-string-list listen
7374A list of IPs or hosts where to listen in for connections. @samp{*}
7375listens in all IPv4 interfaces, @samp{::} listens in all IPv6
7376interfaces. If you want to specify non-default ports or anything more
7377complex, customize the address and port fields of the
7378@samp{inet-listener} of the specific services you are interested in.
7379@end deftypevr
7380
7381@deftypevr {@code{dovecot-configuration} parameter} protocol-configuration-list protocols
7382List of protocols we want to serve. Available protocols include
7383@samp{imap}, @samp{pop3}, and @samp{lmtp}.
7384
7385Available @code{protocol-configuration} fields are:
7386
7387@deftypevr {@code{protocol-configuration} parameter} string name
7388The name of the protocol.
7389@end deftypevr
7390
7391@deftypevr {@code{protocol-configuration} parameter} string auth-socket-path
7392UNIX socket path to master authentication server to find users.
7393This is used by imap (for shared users) and lda.
7394Defaults to @samp{"/var/run/dovecot/auth-userdb"}.
7395@end deftypevr
7396
7397@deftypevr {@code{protocol-configuration} parameter} space-separated-string-list mail-plugins
7398Space separated list of plugins to load.
7399@end deftypevr
7400
7401@deftypevr {@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections
7402Maximum number of IMAP connections allowed for a user from each IP
7403address. NOTE: The username is compared case-sensitively.
7404Defaults to @samp{10}.
7405@end deftypevr
7406
7407@end deftypevr
7408
7409@deftypevr {@code{dovecot-configuration} parameter} service-configuration-list services
7410List of services to enable. Available services include @samp{imap},
7411@samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and
7412@samp{lmtp}.
7413
7414Available @code{service-configuration} fields are:
7415
7416@deftypevr {@code{service-configuration} parameter} string kind
7417The service kind. Valid values include @code{director},
7418@code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap},
7419@code{pop3}, @code{auth}, @code{auth-worker}, @code{dict},
7420@code{tcpwrap}, @code{quota-warning}, or anything else.
7421@end deftypevr
7422
7423@deftypevr {@code{service-configuration} parameter} listener-configuration-list listeners
7424Listeners for the service. A listener is either an
7425@code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or
7426an @code{inet-listener-configuration}.
7427Defaults to @samp{()}.
7428
7429Available @code{unix-listener-configuration} fields are:
7430
7431@deftypevr {@code{unix-listener-configuration} parameter} file-name path
7432The file name on which to listen.
7433@end deftypevr
7434
7435@deftypevr {@code{unix-listener-configuration} parameter} string mode
7436The access mode for the socket.
7437Defaults to @samp{"0600"}.
7438@end deftypevr
7439
7440@deftypevr {@code{unix-listener-configuration} parameter} string user
f9b9a033 7441The user to own the socket.
d8c18af8
AW
7442Defaults to @samp{""}.
7443@end deftypevr
7444
7445@deftypevr {@code{unix-listener-configuration} parameter} string group
7446The group to own the socket.
7447Defaults to @samp{""}.
7448@end deftypevr
7449
7450
7451Available @code{fifo-listener-configuration} fields are:
7452
7453@deftypevr {@code{fifo-listener-configuration} parameter} file-name path
7454The file name on which to listen.
7455@end deftypevr
7456
7457@deftypevr {@code{fifo-listener-configuration} parameter} string mode
7458The access mode for the socket.
7459Defaults to @samp{"0600"}.
7460@end deftypevr
7461
7462@deftypevr {@code{fifo-listener-configuration} parameter} string user
f9b9a033 7463The user to own the socket.
d8c18af8
AW
7464Defaults to @samp{""}.
7465@end deftypevr
7466
7467@deftypevr {@code{fifo-listener-configuration} parameter} string group
7468The group to own the socket.
7469Defaults to @samp{""}.
7470@end deftypevr
7471
7472
7473Available @code{inet-listener-configuration} fields are:
7474
7475@deftypevr {@code{inet-listener-configuration} parameter} string protocol
7476The protocol to listen for.
7477@end deftypevr
7478
7479@deftypevr {@code{inet-listener-configuration} parameter} string address
7480The address on which to listen, or empty for all addresses.
7481Defaults to @samp{""}.
7482@end deftypevr
7483
7484@deftypevr {@code{inet-listener-configuration} parameter} non-negative-integer port
7485The port on which to listen.
7486@end deftypevr
7487
7488@deftypevr {@code{inet-listener-configuration} parameter} boolean ssl?
7489Whether to use SSL for this service; @samp{yes}, @samp{no}, or
7490@samp{required}.
7491Defaults to @samp{#t}.
7492@end deftypevr
7493
7494@end deftypevr
7495
7496@deftypevr {@code{service-configuration} parameter} non-negative-integer service-count
7497Number of connections to handle before starting a new process.
7498Typically the only useful values are 0 (unlimited) or 1. 1 is more
7499secure, but 0 is faster. <doc/wiki/LoginProcess.txt>.
7500Defaults to @samp{1}.
7501@end deftypevr
7502
7503@deftypevr {@code{service-configuration} parameter} non-negative-integer process-min-avail
7504Number of processes to always keep waiting for more connections.
7505Defaults to @samp{0}.
7506@end deftypevr
7507
7508@deftypevr {@code{service-configuration} parameter} non-negative-integer vsz-limit
7509If you set @samp{service-count 0}, you probably need to grow
7510this.
7511Defaults to @samp{256000000}.
7512@end deftypevr
7513
7514@end deftypevr
7515
7516@deftypevr {@code{dovecot-configuration} parameter} dict-configuration dict
7517Dict configuration, as created by the @code{dict-configuration}
7518constructor.
7519
7520Available @code{dict-configuration} fields are:
7521
7522@deftypevr {@code{dict-configuration} parameter} free-form-fields entries
7523A list of key-value pairs that this dict should hold.
7524Defaults to @samp{()}.
7525@end deftypevr
7526
7527@end deftypevr
7528
7529@deftypevr {@code{dovecot-configuration} parameter} passdb-configuration-list passdbs
7530List of passdb configurations, each one created by the
7531@code{passdb-configuration} constructor.
7532
7533Available @code{passdb-configuration} fields are:
7534
7535@deftypevr {@code{passdb-configuration} parameter} string driver
7536The driver that the passdb should use. Valid values include
7537@samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and
7538@samp{static}.
7539Defaults to @samp{"pam"}.
7540@end deftypevr
7541
7542@deftypevr {@code{passdb-configuration} parameter} free-form-args args
7543A list of key-value args to the passdb driver.
7544Defaults to @samp{()}.
7545@end deftypevr
7546
7547@end deftypevr
7548
7549@deftypevr {@code{dovecot-configuration} parameter} userdb-configuration-list userdbs
7550List of userdb configurations, each one created by the
7551@code{userdb-configuration} constructor.
7552
7553Available @code{userdb-configuration} fields are:
7554
7555@deftypevr {@code{userdb-configuration} parameter} string driver
7556The driver that the userdb should use. Valid values include
7557@samp{passwd} and @samp{static}.
7558Defaults to @samp{"passwd"}.
7559@end deftypevr
7560
7561@deftypevr {@code{userdb-configuration} parameter} free-form-args args
7562A list of key-value args to the userdb driver.
7563Defaults to @samp{()}.
7564@end deftypevr
7565
7566@deftypevr {@code{userdb-configuration} parameter} free-form-args override-fields
7567Override fields from passwd.
7568Defaults to @samp{()}.
7569@end deftypevr
7570
7571@end deftypevr
7572
7573@deftypevr {@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration
7574Plug-in configuration, created by the @code{plugin-configuration}
7575constructor.
7576@end deftypevr
7577
7578@deftypevr {@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces
7579List of namespaces. Each item in the list is created by the
7580@code{namespace-configuration} constructor.
7581
7582Available @code{namespace-configuration} fields are:
7583
7584@deftypevr {@code{namespace-configuration} parameter} string name
7585Name for this namespace.
7586@end deftypevr
7587
7588@deftypevr {@code{namespace-configuration} parameter} string type
7589Namespace type: @samp{private}, @samp{shared} or @samp{public}.
7590Defaults to @samp{"private"}.
7591@end deftypevr
7592
7593@deftypevr {@code{namespace-configuration} parameter} string separator
7594Hierarchy separator to use. You should use the same separator for
7595all namespaces or some clients get confused. @samp{/} is usually a good
7596one. The default however depends on the underlying mail storage
7597format.
7598Defaults to @samp{""}.
7599@end deftypevr
7600
7601@deftypevr {@code{namespace-configuration} parameter} string prefix
7602Prefix required to access this namespace. This needs to be
7603different for all namespaces. For example @samp{Public/}.
7604Defaults to @samp{""}.
7605@end deftypevr
7606
7607@deftypevr {@code{namespace-configuration} parameter} string location
7608Physical location of the mailbox. This is in same format as
7609mail_location, which is also the default for it.
7610Defaults to @samp{""}.
7611@end deftypevr
7612
7613@deftypevr {@code{namespace-configuration} parameter} boolean inbox?
7614There can be only one INBOX, and this setting defines which
7615namespace has it.
7616Defaults to @samp{#f}.
7617@end deftypevr
7618
7619@deftypevr {@code{namespace-configuration} parameter} boolean hidden?
7620If namespace is hidden, it's not advertised to clients via NAMESPACE
7621extension. You'll most likely also want to set @samp{list? #f}. This is mostly
7622useful when converting from another server with different namespaces
7623which you want to deprecate but still keep working. For example you can
7624create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/}
7625and @samp{mail/}.
7626Defaults to @samp{#f}.
7627@end deftypevr
7628
7629@deftypevr {@code{namespace-configuration} parameter} boolean list?
7630Show the mailboxes under this namespace with LIST command. This
7631makes the namespace visible for clients that don't support NAMESPACE
7632extension. The special @code{children} value lists child mailboxes, but
7633hides the namespace prefix.
7634Defaults to @samp{#t}.
7635@end deftypevr
7636
7637@deftypevr {@code{namespace-configuration} parameter} boolean subscriptions?
7638Namespace handles its own subscriptions. If set to @code{#f}, the
7639parent namespace handles them. The empty prefix should always have this
7640as @code{#t}.)
7641Defaults to @samp{#t}.
7642@end deftypevr
7643
7644@deftypevr {@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes
7645List of predefined mailboxes in this namespace.
7646Defaults to @samp{()}.
7647
7648Available @code{mailbox-configuration} fields are:
7649
7650@deftypevr {@code{mailbox-configuration} parameter} string name
7651Name for this mailbox.
7652@end deftypevr
7653
7654@deftypevr {@code{mailbox-configuration} parameter} string auto
7655@samp{create} will automatically create this mailbox.
7656@samp{subscribe} will both create and subscribe to the mailbox.
7657Defaults to @samp{"no"}.
7658@end deftypevr
7659
7660@deftypevr {@code{mailbox-configuration} parameter} space-separated-string-list special-use
7661List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154.
7662Valid values are @code{\All}, @code{\Archive}, @code{\Drafts},
7663@code{\Flagged}, @code{\Junk}, @code{\Sent}, and @code{\Trash}.
7664Defaults to @samp{()}.
7665@end deftypevr
7666
7667@end deftypevr
7668
7669@end deftypevr
7670
7671@deftypevr {@code{dovecot-configuration} parameter} file-name base-dir
7672Base directory where to store runtime data.
7673Defaults to @samp{"/var/run/dovecot/"}.
7674@end deftypevr
7675
7676@deftypevr {@code{dovecot-configuration} parameter} string login-greeting
7677Greeting message for clients.
7678Defaults to @samp{"Dovecot ready."}.
7679@end deftypevr
7680
7681@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks
7682List of trusted network ranges. Connections from these IPs are
7683allowed to override their IP addresses and ports (for logging and for
7684authentication checks). @samp{disable-plaintext-auth} is also ignored
7685for these networks. Typically you'd specify your IMAP proxy servers
7686here.
7687Defaults to @samp{()}.
7688@end deftypevr
7689
7690@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets
7691List of login access check sockets (e.g. tcpwrap).
7692Defaults to @samp{()}.
7693@end deftypevr
7694
7695@deftypevr {@code{dovecot-configuration} parameter} boolean verbose-proctitle?
7696Show more verbose process titles (in ps). Currently shows user name
7697and IP address. Useful for seeing who are actually using the IMAP
7698processes (e.g. shared mailboxes or if same uid is used for multiple
7699accounts).
7700Defaults to @samp{#f}.
7701@end deftypevr
7702
7703@deftypevr {@code{dovecot-configuration} parameter} boolean shutdown-clients?
7704Should all processes be killed when Dovecot master process shuts down.
7705Setting this to @code{#f} means that Dovecot can be upgraded without
7706forcing existing client connections to close (although that could also
7707be a problem if the upgrade is e.g. because of a security fix).
7708Defaults to @samp{#t}.
7709@end deftypevr
7710
7711@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count
7712If non-zero, run mail commands via this many connections to doveadm
7713server, instead of running them directly in the same process.
7714Defaults to @samp{0}.
7715@end deftypevr
7716
7717@deftypevr {@code{dovecot-configuration} parameter} string doveadm-socket-path
7718UNIX socket or host:port used for connecting to doveadm server.
7719Defaults to @samp{"doveadm-server"}.
7720@end deftypevr
7721
7722@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list import-environment
7723List of environment variables that are preserved on Dovecot startup
7724and passed down to all of its child processes. You can also give
7725key=value pairs to always set specific settings.
7726@end deftypevr
7727
7728@deftypevr {@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?
7729Disable LOGIN command and all other plaintext authentications unless
7730SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP
7731matches the local IP (i.e. you're connecting from the same computer),
7732the connection is considered secure and plaintext authentication is
7733allowed. See also ssl=required setting.
7734Defaults to @samp{#t}.
7735@end deftypevr
7736
7737@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size
7738Authentication cache size (e.g. @samp{#e10e6}). 0 means it's disabled.
7739Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set
7740for caching to be used.
7741Defaults to @samp{0}.
7742@end deftypevr
7743
7744@deftypevr {@code{dovecot-configuration} parameter} string auth-cache-ttl
7745Time to live for cached data. After TTL expires the cached record
7746is no longer used, *except* if the main database lookup returns internal
7747failure. We also try to handle password changes automatically: If
7748user's previous authentication was successful, but this one wasn't, the
7749cache isn't used. For now this works only with plaintext
7750authentication.
7751Defaults to @samp{"1 hour"}.
7752@end deftypevr
7753
7754@deftypevr {@code{dovecot-configuration} parameter} string auth-cache-negative-ttl
7755TTL for negative hits (user not found, password mismatch).
77560 disables caching them completely.
7757Defaults to @samp{"1 hour"}.
7758@end deftypevr
7759
7760@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-realms
7761List of realms for SASL authentication mechanisms that need them.
7762You can leave it empty if you don't want to support multiple realms.
7763Many clients simply use the first one listed here, so keep the default
7764realm first.
7765Defaults to @samp{()}.
7766@end deftypevr
7767
7768@deftypevr {@code{dovecot-configuration} parameter} string auth-default-realm
7769Default realm/domain to use if none was specified. This is used for
7770both SASL realms and appending @@domain to username in plaintext
7771logins.
7772Defaults to @samp{""}.
7773@end deftypevr
7774
7775@deftypevr {@code{dovecot-configuration} parameter} string auth-username-chars
7776List of allowed characters in username. If the user-given username
7777contains a character not listed in here, the login automatically fails.
7778This is just an extra check to make sure user can't exploit any
7779potential quote escaping vulnerabilities with SQL/LDAP databases. If
7780you want to allow all characters, set this value to empty.
7781Defaults to @samp{"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@"}.
7782@end deftypevr
7783
7784@deftypevr {@code{dovecot-configuration} parameter} string auth-username-translation
7785Username character translations before it's looked up from
7786databases. The value contains series of from -> to characters. For
7787example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are
7788translated to @samp{@@}.
7789Defaults to @samp{""}.
7790@end deftypevr
7791
7792@deftypevr {@code{dovecot-configuration} parameter} string auth-username-format
7793Username formatting before it's looked up from databases. You can
7794use the standard variables here, e.g. %Lu would lowercase the username,
7795%n would drop away the domain if it was given, or @samp{%n-AT-%d} would
7796change the @samp{@@} into @samp{-AT-}. This translation is done after
7797@samp{auth-username-translation} changes.
7798Defaults to @samp{"%Lu"}.
7799@end deftypevr
7800
7801@deftypevr {@code{dovecot-configuration} parameter} string auth-master-user-separator
7802If you want to allow master users to log in by specifying the master
7803username within the normal username string (i.e. not using SASL
7804mechanism's support for it), you can specify the separator character
7805here. The format is then <username><separator><master username>.
7806UW-IMAP uses @samp{*} as the separator, so that could be a good
7807choice.
7808Defaults to @samp{""}.
7809@end deftypevr
7810
7811@deftypevr {@code{dovecot-configuration} parameter} string auth-anonymous-username
7812Username to use for users logging in with ANONYMOUS SASL
7813mechanism.
7814Defaults to @samp{"anonymous"}.
7815@end deftypevr
7816
7817@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count
7818Maximum number of dovecot-auth worker processes. They're used to
7819execute blocking passdb and userdb queries (e.g. MySQL and PAM).
7820They're automatically created and destroyed as needed.
7821Defaults to @samp{30}.
7822@end deftypevr
7823
7824@deftypevr {@code{dovecot-configuration} parameter} string auth-gssapi-hostname
7825Host name to use in GSSAPI principal names. The default is to use
7826the name returned by gethostname(). Use @samp{$ALL} (with quotes) to
7827allow all keytab entries.
7828Defaults to @samp{""}.
7829@end deftypevr
7830
7831@deftypevr {@code{dovecot-configuration} parameter} string auth-krb5-keytab
7832Kerberos keytab to use for the GSSAPI mechanism. Will use the
7833system default (usually /etc/krb5.keytab) if not specified. You may
7834need to change the auth service to run as root to be able to read this
7835file.
7836Defaults to @samp{""}.
7837@end deftypevr
7838
7839@deftypevr {@code{dovecot-configuration} parameter} boolean auth-use-winbind?
7840Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon
7841and @samp{ntlm-auth} helper.
7842<doc/wiki/Authentication/Mechanisms/Winbind.txt>.
7843Defaults to @samp{#f}.
7844@end deftypevr
7845
7846@deftypevr {@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path
7847Path for Samba's @samp{ntlm-auth} helper binary.
7848Defaults to @samp{"/usr/bin/ntlm_auth"}.
7849@end deftypevr
7850
7851@deftypevr {@code{dovecot-configuration} parameter} string auth-failure-delay
7852Time to delay before replying to failed authentications.
7853Defaults to @samp{"2 secs"}.
7854@end deftypevr
7855
7856@deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?
7857Require a valid SSL client certificate or the authentication
7858fails.
7859Defaults to @samp{#f}.
7860@end deftypevr
7861
7862@deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?
7863Take the username from client's SSL certificate, using
7864@code{X509_NAME_get_text_by_NID()} which returns the subject's DN's
7865CommonName.
7866Defaults to @samp{#f}.
7867@end deftypevr
7868
7869@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms
7870List of wanted authentication mechanisms. Supported mechanisms are:
7871@samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5},
7872@samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi},
7873@samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also
7874@samp{disable-plaintext-auth} setting.
7875@end deftypevr
7876
7877@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-servers
7878List of IPs or hostnames to all director servers, including ourself.
7879Ports can be specified as ip:port. The default port is the same as what
7880director service's @samp{inet-listener} is using.
7881Defaults to @samp{()}.
7882@end deftypevr
7883
7884@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers
7885List of IPs or hostnames to all backend mail servers. Ranges are
7886allowed too, like 10.0.0.10-10.0.0.30.
7887Defaults to @samp{()}.
7888@end deftypevr
7889
7890@deftypevr {@code{dovecot-configuration} parameter} string director-user-expire
7891How long to redirect users to a specific server after it no longer
7892has any connections.
7893Defaults to @samp{"15 min"}.
7894@end deftypevr
7895
7896@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer director-doveadm-port
7897TCP/IP port that accepts doveadm connections (instead of director
7898connections) If you enable this, you'll also need to add
7899@samp{inet-listener} for the port.
7900Defaults to @samp{0}.
7901@end deftypevr
7902
7903@deftypevr {@code{dovecot-configuration} parameter} string director-username-hash
7904How the username is translated before being hashed. Useful values
7905include %Ln if user can log in with or without @@domain, %Ld if mailboxes
7906are shared within domain.
7907Defaults to @samp{"%Lu"}.
7908@end deftypevr
7909
7910@deftypevr {@code{dovecot-configuration} parameter} string log-path
7911Log file to use for error messages. @samp{syslog} logs to syslog,
7912@samp{/dev/stderr} logs to stderr.
7913Defaults to @samp{"syslog"}.
7914@end deftypevr
7915
7916@deftypevr {@code{dovecot-configuration} parameter} string info-log-path
7917Log file to use for informational messages. Defaults to
7918@samp{log-path}.
7919Defaults to @samp{""}.
7920@end deftypevr
7921
7922@deftypevr {@code{dovecot-configuration} parameter} string debug-log-path
7923Log file to use for debug messages. Defaults to
7924@samp{info-log-path}.
7925Defaults to @samp{""}.
7926@end deftypevr
7927
7928@deftypevr {@code{dovecot-configuration} parameter} string syslog-facility
7929Syslog facility to use if you're logging to syslog. Usually if you
7930don't want to use @samp{mail}, you'll use local0..local7. Also other
7931standard facilities are supported.
7932Defaults to @samp{"mail"}.
7933@end deftypevr
7934
7935@deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose?
7936Log unsuccessful authentication attempts and the reasons why they
7937failed.
7938Defaults to @samp{#f}.
7939@end deftypevr
7940
7941@deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose-passwords?
7942In case of password mismatches, log the attempted password. Valid
7943values are no, plain and sha1. sha1 can be useful for detecting brute
7944force password attempts vs. user simply trying the same password over
7945and over again. You can also truncate the value to n chars by appending
7946":n" (e.g. sha1:6).
7947Defaults to @samp{#f}.
7948@end deftypevr
7949
7950@deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug?
7951Even more verbose logging for debugging purposes. Shows for example
7952SQL queries.
7953Defaults to @samp{#f}.
7954@end deftypevr
7955
7956@deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug-passwords?
7957In case of password mismatches, log the passwords and used scheme so
7958the problem can be debugged. Enabling this also enables
7959@samp{auth-debug}.
7960Defaults to @samp{#f}.
7961@end deftypevr
7962
7963@deftypevr {@code{dovecot-configuration} parameter} boolean mail-debug?
7964Enable mail process debugging. This can help you figure out why
7965Dovecot isn't finding your mails.
7966Defaults to @samp{#f}.
7967@end deftypevr
7968
7969@deftypevr {@code{dovecot-configuration} parameter} boolean verbose-ssl?
7970Show protocol level SSL errors.
7971Defaults to @samp{#f}.
7972@end deftypevr
7973
7974@deftypevr {@code{dovecot-configuration} parameter} string log-timestamp
7975Prefix for each line written to log file. % codes are in
7976strftime(3) format.
7977Defaults to @samp{"\"%b %d %H:%M:%S \""}.
7978@end deftypevr
7979
7980@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements
7981List of elements we want to log. The elements which have a
7982non-empty variable value are joined together to form a comma-separated
7983string.
7984@end deftypevr
7985
7986@deftypevr {@code{dovecot-configuration} parameter} string login-log-format
7987Login log format. %s contains @samp{login-log-format-elements}
7988string, %$ contains the data we want to log.
7989Defaults to @samp{"%$: %s"}.
7990@end deftypevr
7991
7992@deftypevr {@code{dovecot-configuration} parameter} string mail-log-prefix
7993Log prefix for mail processes. See doc/wiki/Variables.txt for list
7994of possible variables you can use.
7995Defaults to @samp{"\"%s(%u): \""}.
7996@end deftypevr
7997
7998@deftypevr {@code{dovecot-configuration} parameter} string deliver-log-format
7999Format to use for logging mail deliveries. You can use variables:
8000@table @code
8001@item %$
8002Delivery status message (e.g. @samp{saved to INBOX})
8003@item %m
8004Message-ID
8005@item %s
8006Subject
8007@item %f
8008From address
8009@item %p
8010Physical size
8011@item %w
8012Virtual size.
8013@end table
8014Defaults to @samp{"msgid=%m: %$"}.
8015@end deftypevr
8016
8017@deftypevr {@code{dovecot-configuration} parameter} string mail-location
8018Location for users' mailboxes. The default is empty, which means
8019that Dovecot tries to find the mailboxes automatically. This won't work
8020if the user doesn't yet have any mail, so you should explicitly tell
8021Dovecot the full location.
8022
8023If you're using mbox, giving a path to the INBOX
8024file (e.g. /var/mail/%u) isn't enough. You'll also need to tell Dovecot
8025where the other mailboxes are kept. This is called the "root mail
8026directory", and it must be the first path given in the
8027@samp{mail-location} setting.
8028
8029There are a few special variables you can use, eg.:
8030
8031@table @samp
8032@item %u
8033username
8034@item %n
8035user part in user@@domain, same as %u if there's no domain
8036@item %d
8037domain part in user@@domain, empty if there's no domain
8038@item %h
8039home director
8040@end table
8041
8042See doc/wiki/Variables.txt for full list. Some examples:
8043@table @samp
8044@item maildir:~/Maildir
8045@item mbox:~/mail:INBOX=/var/mail/%u
8046@item mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%
8047@end table
8048Defaults to @samp{""}.
8049@end deftypevr
8050
8051@deftypevr {@code{dovecot-configuration} parameter} string mail-uid
8052System user and group used to access mails. If you use multiple,
8053userdb can override these by returning uid or gid fields. You can use
8054either numbers or names. <doc/wiki/UserIds.txt>.
8055Defaults to @samp{""}.
8056@end deftypevr
8057
8058@deftypevr {@code{dovecot-configuration} parameter} string mail-gid
8059
8060Defaults to @samp{""}.
8061@end deftypevr
8062
8063@deftypevr {@code{dovecot-configuration} parameter} string mail-privileged-group
8064Group to enable temporarily for privileged operations. Currently
8065this is used only with INBOX when either its initial creation or
8066dotlocking fails. Typically this is set to "mail" to give access to
8067/var/mail.
8068Defaults to @samp{""}.
8069@end deftypevr
8070
8071@deftypevr {@code{dovecot-configuration} parameter} string mail-access-groups
8072Grant access to these supplementary groups for mail processes.
8073Typically these are used to set up access to shared mailboxes. Note
8074that it may be dangerous to set these if users can create
8075symlinks (e.g. if "mail" group is set here, ln -s /var/mail ~/mail/var
8076could allow a user to delete others' mailboxes, or ln -s
8077/secret/shared/box ~/mail/mybox would allow reading it).
8078Defaults to @samp{""}.
8079@end deftypevr
8080
8081@deftypevr {@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?
8082Allow full filesystem access to clients. There's no access checks
8083other than what the operating system does for the active UID/GID. It
8084works with both maildir and mboxes, allowing you to prefix mailboxes
8085names with e.g. /path/ or ~user/.
8086Defaults to @samp{#f}.
8087@end deftypevr
8088
8089@deftypevr {@code{dovecot-configuration} parameter} boolean mmap-disable?
8090Don't use mmap() at all. This is required if you store indexes to
8091shared filesystems (NFS or clustered filesystem).
8092Defaults to @samp{#f}.
8093@end deftypevr
8094
8095@deftypevr {@code{dovecot-configuration} parameter} boolean dotlock-use-excl?
8096Rely on @samp{O_EXCL} to work when creating dotlock files. NFS
8097supports @samp{O_EXCL} since version 3, so this should be safe to use
8098nowadays by default.
8099Defaults to @samp{#t}.
8100@end deftypevr
8101
8102@deftypevr {@code{dovecot-configuration} parameter} string mail-fsync
8103When to use fsync() or fdatasync() calls:
8104@table @code
8105@item optimized
8106Whenever necessary to avoid losing important data
8107@item always
8108Useful with e.g. NFS when write()s are delayed
8109@item never
8110Never use it (best performance, but crashes can lose data).
8111@end table
8112Defaults to @samp{"optimized"}.
8113@end deftypevr
8114
8115@deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-storage?
8116Mail storage exists in NFS. Set this to yes to make Dovecot flush
8117NFS caches whenever needed. If you're using only a single mail server
8118this isn't needed.
8119Defaults to @samp{#f}.
8120@end deftypevr
8121
8122@deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-index?
8123Mail index files also exist in NFS. Setting this to yes requires
8124@samp{mmap-disable? #t} and @samp{fsync-disable? #f}.
8125Defaults to @samp{#f}.
8126@end deftypevr
8127
8128@deftypevr {@code{dovecot-configuration} parameter} string lock-method
8129Locking method for index files. Alternatives are fcntl, flock and
8130dotlock. Dotlocking uses some tricks which may create more disk I/O
8131than other locking methods. NFS users: flock doesn't work, remember to
8132change @samp{mmap-disable}.
8133Defaults to @samp{"fcntl"}.
8134@end deftypevr
8135
8136@deftypevr {@code{dovecot-configuration} parameter} file-name mail-temp-dir
8137Directory in which LDA/LMTP temporarily stores incoming mails >128
8138kB.
8139Defaults to @samp{"/tmp"}.
8140@end deftypevr
8141
8142@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid
8143Valid UID range for users. This is mostly to make sure that users can't
8144log in as daemons or other system users. Note that denying root logins is
8145hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid}
8146is set to 0.
8147Defaults to @samp{500}.
8148@end deftypevr
8149
8150@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid
8151
8152Defaults to @samp{0}.
8153@end deftypevr
8154
8155@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid
8156Valid GID range for users. Users having non-valid GID as primary group ID
8157aren't allowed to log in. If user belongs to supplementary groups with
8158non-valid GIDs, those groups are not set.
8159Defaults to @samp{1}.
8160@end deftypevr
8161
8162@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid
8163
8164Defaults to @samp{0}.
8165@end deftypevr
8166
8167@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length
8168Maximum allowed length for mail keyword name. It's only forced when
8169trying to create new keywords.
8170Defaults to @samp{50}.
8171@end deftypevr
8172
8173@deftypevr {@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs
8174List of directories under which chrooting is allowed for mail
8175processes (i.e. /var/mail will allow chrooting to /var/mail/foo/bar
8176too). This setting doesn't affect @samp{login-chroot}
8177@samp{mail-chroot} or auth chroot settings. If this setting is empty,
8178"/./" in home dirs are ignored. WARNING: Never add directories here
8179which local users can modify, that may lead to root exploit. Usually
8180this should be done only if you don't allow shell access for users.
8181<doc/wiki/Chrooting.txt>.
8182Defaults to @samp{()}.
8183@end deftypevr
8184
8185@deftypevr {@code{dovecot-configuration} parameter} string mail-chroot
8186Default chroot directory for mail processes. This can be overridden
8187for specific users in user database by giving /./ in user's home
8188directory (e.g. /home/./user chroots into /home). Note that usually
8189there is no real need to do chrooting, Dovecot doesn't allow users to
8190access files outside their mail directory anyway. If your home
8191directories are prefixed with the chroot directory, append "/." to
8192@samp{mail-chroot}. <doc/wiki/Chrooting.txt>.
8193Defaults to @samp{""}.
8194@end deftypevr
8195
8196@deftypevr {@code{dovecot-configuration} parameter} file-name auth-socket-path
8197UNIX socket path to master authentication server to find users.
8198This is used by imap (for shared users) and lda.
8199Defaults to @samp{"/var/run/dovecot/auth-userdb"}.
8200@end deftypevr
8201
8202@deftypevr {@code{dovecot-configuration} parameter} file-name mail-plugin-dir
8203Directory where to look up mail plugins.
8204Defaults to @samp{"/usr/lib/dovecot"}.
8205@end deftypevr
8206
8207@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins
8208List of plugins to load for all services. Plugins specific to IMAP,
8209LDA, etc. are added to this list in their own .conf files.
8210Defaults to @samp{()}.
8211@end deftypevr
8212
8213@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count
8214The minimum number of mails in a mailbox before updates are done to
8215cache file. This allows optimizing Dovecot's behavior to do less disk
8216writes at the cost of more disk reads.
8217Defaults to @samp{0}.
8218@end deftypevr
8219
8220@deftypevr {@code{dovecot-configuration} parameter} string mailbox-idle-check-interval
8221When IDLE command is running, mailbox is checked once in a while to
8222see if there are any new mails or other changes. This setting defines
8223the minimum time to wait between those checks. Dovecot can also use
8224dnotify, inotify and kqueue to find out immediately when changes
8225occur.
8226Defaults to @samp{"30 secs"}.
8227@end deftypevr
8228
8229@deftypevr {@code{dovecot-configuration} parameter} boolean mail-save-crlf?
8230Save mails with CR+LF instead of plain LF. This makes sending those
8231mails take less CPU, especially with sendfile() syscall with Linux and
8232FreeBSD. But it also creates a bit more disk I/O which may just make it
8233slower. Also note that if other software reads the mboxes/maildirs,
8234they may handle the extra CRs wrong and cause problems.
8235Defaults to @samp{#f}.
8236@end deftypevr
8237
8238@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?
8239By default LIST command returns all entries in maildir beginning
8240with a dot. Enabling this option makes Dovecot return only entries
8241which are directories. This is done by stat()ing each entry, so it
8242causes more disk I/O.
8243 (For systems setting struct @samp{dirent->d_type} this check is free
8244and it's done always regardless of this setting).
8245Defaults to @samp{#f}.
8246@end deftypevr
8247
8248@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?
8249When copying a message, do it with hard links whenever possible.
8250This makes the performance much better, and it's unlikely to have any
8251side effects.
8252Defaults to @samp{#t}.
8253@end deftypevr
8254
8255@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?
8256Assume Dovecot is the only MUA accessing Maildir: Scan cur/
8257directory only when its mtime changes unexpectedly or when we can't find
8258the mail otherwise.
8259Defaults to @samp{#f}.
8260@end deftypevr
8261
8262@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks
8263Which locking methods to use for locking mbox. There are four
8264available:
8265
8266@table @code
8267@item dotlock
8268Create <mailbox>.lock file. This is the oldest and most NFS-safe
8269solution. If you want to use /var/mail/ like directory, the users will
8270need write access to that directory.
8271@item dotlock-try
8272Same as dotlock, but if it fails because of permissions or because there
8273isn't enough disk space, just skip it.
8274@item fcntl
8275Use this if possible. Works with NFS too if lockd is used.
8276@item flock
8277May not exist in all systems. Doesn't work with NFS.
8278@item lockf
8279May not exist in all systems. Doesn't work with NFS.
8280@end table
8281
8282You can use multiple locking methods; if you do the order they're declared
8283in is important to avoid deadlocks if other MTAs/MUAs are using multiple
8284locking methods as well. Some operating systems don't allow using some of
8285them simultaneously.
8286@end deftypevr
8287
8288@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks
8289
8290@end deftypevr
8291
8292@deftypevr {@code{dovecot-configuration} parameter} string mbox-lock-timeout
8293Maximum time to wait for lock (all of them) before aborting.
8294Defaults to @samp{"5 mins"}.
8295@end deftypevr
8296
8297@deftypevr {@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout
8298If dotlock exists but the mailbox isn't modified in any way,
8299override the lock file after this much time.
8300Defaults to @samp{"2 mins"}.
8301@end deftypevr
8302
8303@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?
8304When mbox changes unexpectedly we have to fully read it to find out
8305what changed. If the mbox is large this can take a long time. Since
8306the change is usually just a newly appended mail, it'd be faster to
8307simply read the new mails. If this setting is enabled, Dovecot does
8308this but still safely fallbacks to re-reading the whole mbox file
8309whenever something in mbox isn't how it's expected to be. The only real
8310downside to this setting is that if some other MUA changes message
8311flags, Dovecot doesn't notice it immediately. Note that a full sync is
8312done with SELECT, EXAMINE, EXPUNGE and CHECK commands.
8313Defaults to @samp{#t}.
8314@end deftypevr
8315
8316@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?
8317Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT,
8318EXAMINE, EXPUNGE or CHECK commands. If this is set,
8319@samp{mbox-dirty-syncs} is ignored.
8320Defaults to @samp{#f}.
8321@end deftypevr
8322
8323@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?
8324Delay writing mbox headers until doing a full write sync (EXPUNGE
8325and CHECK commands and when closing the mailbox). This is especially
8326useful for POP3 where clients often delete all mails. The downside is
8327that our changes aren't immediately visible to other MUAs.
8328Defaults to @samp{#t}.
8329@end deftypevr
8330
8331@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size
8332If mbox size is smaller than this (e.g. 100k), don't write index
8333files. If an index file already exists it's still read, just not
8334updated.
8335Defaults to @samp{0}.
8336@end deftypevr
8337
8338@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size
8339Maximum dbox file size until it's rotated.
8340Defaults to @samp{2000000}.
8341@end deftypevr
8342
8343@deftypevr {@code{dovecot-configuration} parameter} string mdbox-rotate-interval
8344Maximum dbox file age until it's rotated. Typically in days. Day
8345begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check
8346disabled.
8347Defaults to @samp{"1d"}.
8348@end deftypevr
8349
8350@deftypevr {@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?
8351When creating new mdbox files, immediately preallocate their size to
8352@samp{mdbox-rotate-size}. This setting currently works only in Linux
8353with some filesystems (ext4, xfs).
8354Defaults to @samp{#f}.
8355@end deftypevr
8356
8357@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-dir
8358sdbox and mdbox support saving mail attachments to external files,
8359which also allows single instance storage for them. Other backends
8360don't support this for now.
8361
8362WARNING: This feature hasn't been tested much yet. Use at your own risk.
8363
8364Directory root where to store mail attachments. Disabled, if empty.
8365Defaults to @samp{""}.
8366@end deftypevr
8367
8368@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size
8369Attachments smaller than this aren't saved externally. It's also
8370possible to write a plugin to disable saving specific attachments
8371externally.
8372Defaults to @samp{128000}.
8373@end deftypevr
8374
8375@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-fs
8376Filesystem backend to use for saving attachments:
8377@table @code
8378@item posix
8379No SiS done by Dovecot (but this might help FS's own deduplication)
8380@item sis posix
8381SiS with immediate byte-by-byte comparison during saving
8382@item sis-queue posix
8383SiS with delayed comparison and deduplication.
8384@end table
8385Defaults to @samp{"sis posix"}.
8386@end deftypevr
8387
8388@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-hash
8389Hash format to use in attachment filenames. You can add any text and
8390variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}},
8391@code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be
8392truncated, e.g. @code{%@{sha256:80@}} returns only first 80 bits.
8393Defaults to @samp{"%@{sha1@}"}.
8394@end deftypevr
8395
8396@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-process-limit
8397
8398Defaults to @samp{100}.
8399@end deftypevr
8400
8401@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-client-limit
8402
8403Defaults to @samp{1000}.
8404@end deftypevr
8405
8406@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit
8407Default VSZ (virtual memory size) limit for service processes.
8408This is mainly intended to catch and kill processes that leak memory
8409before they eat up everything.
8410Defaults to @samp{256000000}.
8411@end deftypevr
8412
8413@deftypevr {@code{dovecot-configuration} parameter} string default-login-user
8414Login user is internally used by login processes. This is the most
8415untrusted user in Dovecot system. It shouldn't have access to anything
8416at all.
8417Defaults to @samp{"dovenull"}.
8418@end deftypevr
8419
8420@deftypevr {@code{dovecot-configuration} parameter} string default-internal-user
8421Internal user is used by unprivileged processes. It should be
8422separate from login user, so that login processes can't disturb other
8423processes.
8424Defaults to @samp{"dovecot"}.
8425@end deftypevr
8426
8427@deftypevr {@code{dovecot-configuration} parameter} string ssl?
8428SSL/TLS support: yes, no, required. <doc/wiki/SSL.txt>.
8429Defaults to @samp{"required"}.
8430@end deftypevr
8431
8432@deftypevr {@code{dovecot-configuration} parameter} string ssl-cert
8433PEM encoded X.509 SSL/TLS certificate (public key).
8434Defaults to @samp{"</etc/dovecot/default.pem"}.
8435@end deftypevr
8436
8437@deftypevr {@code{dovecot-configuration} parameter} string ssl-key
8438PEM encoded SSL/TLS private key. The key is opened before
8439dropping root privileges, so keep the key file unreadable by anyone but
8440root.
8441Defaults to @samp{"</etc/dovecot/private/default.pem"}.
8442@end deftypevr
8443
8444@deftypevr {@code{dovecot-configuration} parameter} string ssl-key-password
8445If key file is password protected, give the password here.
8446Alternatively give it when starting dovecot with -p parameter. Since
8447this file is often world-readable, you may want to place this setting
8448instead to a different.
8449Defaults to @samp{""}.
8450@end deftypevr
8451
8452@deftypevr {@code{dovecot-configuration} parameter} string ssl-ca
8453PEM encoded trusted certificate authority. Set this only if you
8454intend to use @samp{ssl-verify-client-cert? #t}. The file should
8455contain the CA certificate(s) followed by the matching
8456CRL(s). (e.g. @samp{ssl-ca </etc/ssl/certs/ca.pem}).
8457Defaults to @samp{""}.
8458@end deftypevr
8459
8460@deftypevr {@code{dovecot-configuration} parameter} boolean ssl-require-crl?
8461Require that CRL check succeeds for client certificates.
8462Defaults to @samp{#t}.
8463@end deftypevr
8464
8465@deftypevr {@code{dovecot-configuration} parameter} boolean ssl-verify-client-cert?
8466Request client to send a certificate. If you also want to require
8467it, set @samp{auth-ssl-require-client-cert? #t} in auth section.
8468Defaults to @samp{#f}.
8469@end deftypevr
8470
8471@deftypevr {@code{dovecot-configuration} parameter} string ssl-cert-username-field
8472Which field from certificate to use for username. commonName and
8473x500UniqueIdentifier are the usual choices. You'll also need to set
8474@samp{auth-ssl-username-from-cert? #t}.
8475Defaults to @samp{"commonName"}.
8476@end deftypevr
8477
8478@deftypevr {@code{dovecot-configuration} parameter} hours ssl-parameters-regenerate
8479How often to regenerate the SSL parameters file. Generation is
8480quite CPU intensive operation. The value is in hours, 0 disables
8481regeneration entirely.
8482Defaults to @samp{168}.
8483@end deftypevr
8484
8485@deftypevr {@code{dovecot-configuration} parameter} string ssl-protocols
8486SSL protocols to use.
8487Defaults to @samp{"!SSLv2"}.
8488@end deftypevr
8489
8490@deftypevr {@code{dovecot-configuration} parameter} string ssl-cipher-list
8491SSL ciphers to use.
8492Defaults to @samp{"ALL:!LOW:!SSLv2:!EXP:!aNULL"}.
8493@end deftypevr
8494
8495@deftypevr {@code{dovecot-configuration} parameter} string ssl-crypto-device
8496SSL crypto device to use, for valid values run "openssl engine".
8497Defaults to @samp{""}.
8498@end deftypevr
8499
8500@deftypevr {@code{dovecot-configuration} parameter} string postmaster-address
8501Address to use when sending rejection mails.
8502Default is postmaster@@<your domain>. %d expands to recipient domain.
8503Defaults to @samp{""}.
8504@end deftypevr
8505
8506@deftypevr {@code{dovecot-configuration} parameter} string hostname
8507Hostname to use in various parts of sent mails (e.g. in Message-Id)
8508and in LMTP replies. Default is the system's real hostname@@domain.
8509Defaults to @samp{""}.
8510@end deftypevr
8511
8512@deftypevr {@code{dovecot-configuration} parameter} boolean quota-full-tempfail?
8513If user is over quota, return with temporary failure instead of
8514bouncing the mail.
8515Defaults to @samp{#f}.
8516@end deftypevr
8517
8518@deftypevr {@code{dovecot-configuration} parameter} file-name sendmail-path
8519Binary to use for sending mails.
8520Defaults to @samp{"/usr/sbin/sendmail"}.
8521@end deftypevr
8522
8523@deftypevr {@code{dovecot-configuration} parameter} string submission-host
8524If non-empty, send mails via this SMTP host[:port] instead of
8525sendmail.
8526Defaults to @samp{""}.
8527@end deftypevr
8528
8529@deftypevr {@code{dovecot-configuration} parameter} string rejection-subject
8530Subject: header to use for rejection mails. You can use the same
8531variables as for @samp{rejection-reason} below.
8532Defaults to @samp{"Rejected: %s"}.
8533@end deftypevr
8534
8535@deftypevr {@code{dovecot-configuration} parameter} string rejection-reason
8536Human readable error message for rejection mails. You can use
8537variables:
8538
8539@table @code
8540@item %n
8541CRLF
8542@item %r
8543reason
8544@item %s
8545original subject
8546@item %t
8547recipient
8548@end table
8549Defaults to @samp{"Your message to <%t> was automatically rejected:%n%r"}.
8550@end deftypevr
8551
8552@deftypevr {@code{dovecot-configuration} parameter} string recipient-delimiter
8553Delimiter character between local-part and detail in email
8554address.
8555Defaults to @samp{"+"}.
8556@end deftypevr
8557
8558@deftypevr {@code{dovecot-configuration} parameter} string lda-original-recipient-header
8559Header where the original recipient address (SMTP's RCPT TO:
8560address) is taken from if not available elsewhere. With dovecot-lda -a
8561parameter overrides this. A commonly used header for this is
8562X-Original-To.
8563Defaults to @samp{""}.
8564@end deftypevr
8565
8566@deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?
8567Should saving a mail to a nonexistent mailbox automatically create
8568it?.
8569Defaults to @samp{#f}.
8570@end deftypevr
8571
8572@deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?
8573Should automatically created mailboxes be also automatically
8574subscribed?.
8575Defaults to @samp{#f}.
8576@end deftypevr
8577
8578@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length
8579Maximum IMAP command line length. Some clients generate very long
8580command lines with huge mailboxes, so you may need to raise this if you
8581get "Too long argument" or "IMAP command line too large" errors
8582often.
8583Defaults to @samp{64000}.
8584@end deftypevr
8585
8586@deftypevr {@code{dovecot-configuration} parameter} string imap-logout-format
8587IMAP logout format string:
8588@table @code
8589@item %i
8590total number of bytes read from client
8591@item %o
8592total number of bytes sent to client.
8593@end table
8594Defaults to @samp{"in=%i out=%o"}.
8595@end deftypevr
8596
8597@deftypevr {@code{dovecot-configuration} parameter} string imap-capability
8598Override the IMAP CAPABILITY response. If the value begins with '+',
8599add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
8600Defaults to @samp{""}.
8601@end deftypevr
8602
8603@deftypevr {@code{dovecot-configuration} parameter} string imap-idle-notify-interval
8604How long to wait between "OK Still here" notifications when client
8605is IDLEing.
8606Defaults to @samp{"2 mins"}.
8607@end deftypevr
8608
8609@deftypevr {@code{dovecot-configuration} parameter} string imap-id-send
8610ID field names and values to send to clients. Using * as the value
8611makes Dovecot use the default value. The following fields have default
8612values currently: name, version, os, os-version, support-url,
8613support-email.
8614Defaults to @samp{""}.
8615@end deftypevr
8616
8617@deftypevr {@code{dovecot-configuration} parameter} string imap-id-log
8618ID fields sent by client to log. * means everything.
8619Defaults to @samp{""}.
8620@end deftypevr
8621
8622@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds
8623Workarounds for various client bugs:
8624
8625@table @code
8626@item delay-newmail
8627Send EXISTS/RECENT new mail notifications only when replying to NOOP and
8628CHECK commands. Some clients ignore them otherwise, for example OSX
8629Mail (<v2.1). Outlook Express breaks more badly though, without this it
8630may show user "Message no longer in server" errors. Note that OE6
8631still breaks even with this workaround if synchronization is set to
8632"Headers Only".
8633
8634@item tb-extra-mailbox-sep
8635Thunderbird gets somehow confused with LAYOUT=fs (mbox and dbox) and
8636adds extra @samp{/} suffixes to mailbox names. This option causes Dovecot to
8637ignore the extra @samp{/} instead of treating it as invalid mailbox name.
8638
8639@item tb-lsub-flags
8640Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
8641This makes Thunderbird realize they aren't selectable and show them
8642greyed out, instead of only later giving "not selectable" popup error.
8643@end table
8644Defaults to @samp{()}.
8645@end deftypevr
8646
8647@deftypevr {@code{dovecot-configuration} parameter} string imap-urlauth-host
8648Host allowed in URLAUTH URLs sent by client. "*" allows all.
8649Defaults to @samp{""}.
8650@end deftypevr
8651
8652
8653Whew! Lots of configuration options. The nice thing about it though is
8654that GuixSD has a complete interface to Dovecot's configuration
8655language. This allows not only a nice way to declare configurations,
8656but also offers reflective capabilities as well: users can write code to
8657inspect and transform configurations from within Scheme.
8658
8659However, it could be that you just want to get a @code{dovecot.conf} up
8660and running. In that case, you can pass an
8661@code{opaque-dovecot-configuration} as the @code{#:config} paramter to
8662@code{dovecot-service}. As its name indicates, an opaque configuration
8663does not have easy reflective capabilities.
8664
8665Available @code{opaque-dovecot-configuration} fields are:
8666
8667@deftypevr {@code{opaque-dovecot-configuration} parameter} package dovecot
8668The dovecot package.
8669@end deftypevr
8670
8671@deftypevr {@code{opaque-dovecot-configuration} parameter} string string
8672The contents of the @code{dovecot.conf}, as a string.
8673@end deftypevr
8674
8675For example, if your @code{dovecot.conf} is just the empty string, you
8676could instantiate a dovecot service like this:
8677
8678@example
8679(dovecot-service #:config
8680 (opaque-dovecot-configuration
8681 (string "")))
8682@end example
8683
58724c48
DT
8684@node Web Services
8685@subsubsection Web Services
8686
8687The @code{(gnu services web)} module provides the following service:
8688
be1c2c54 8689@deffn {Scheme Procedure} nginx-service [#:nginx nginx] @
58724c48
DT
8690 [#:log-directory ``/var/log/nginx''] @
8691 [#:run-directory ``/var/run/nginx''] @
8692 [#:config-file]
8693
8694Return a service that runs @var{nginx}, the nginx web server.
8695
8696The nginx daemon loads its runtime configuration from @var{config-file}.
8697Log files are written to @var{log-directory} and temporary runtime data
8698files are written to @var{run-directory}. For proper operation, these
8699arguments should match what is in @var{config-file} to ensure that the
8700directories are created when the service is activated.
8701
8702@end deffn
8703
fe1a39d3
LC
8704@node Various Services
8705@subsubsection Various Services
8706
8707The @code{(gnu services lirc)} module provides the following service.
8708
be1c2c54 8709@deffn {Scheme Procedure} lirc-service [#:lirc lirc] @
fe1a39d3
LC
8710 [#:device #f] [#:driver #f] [#:config-file #f] @
8711 [#:extra-options '()]
8712Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that
8713decodes infrared signals from remote controls.
8714
8715Optionally, @var{device}, @var{driver} and @var{config-file}
8716(configuration file name) may be specified. See @command{lircd} manual
8717for details.
8718
8719Finally, @var{extra-options} is a list of additional command-line options
8720passed to @command{lircd}.
8721@end deffn
8722
8723
0ae8c15a
LC
8724@node Setuid Programs
8725@subsection Setuid Programs
8726
8727@cindex setuid programs
8728Some programs need to run with ``root'' privileges, even when they are
8729launched by unprivileged users. A notorious example is the
4d40227c
LC
8730@command{passwd} program, which users can run to change their
8731password, and which needs to access the @file{/etc/passwd} and
0ae8c15a
LC
8732@file{/etc/shadow} files---something normally restricted to root, for
8733obvious security reasons. To address that, these executables are
8734@dfn{setuid-root}, meaning that they always run with root privileges
8735(@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual},
f7e4ae7f 8736for more info about the setuid mechanism.)
0ae8c15a
LC
8737
8738The store itself @emph{cannot} contain setuid programs: that would be a
8739security issue since any user on the system can write derivations that
8740populate the store (@pxref{The Store}). Thus, a different mechanism is
8741used: instead of changing the setuid bit directly on files that are in
8742the store, we let the system administrator @emph{declare} which programs
8743should be setuid root.
8744
8745The @code{setuid-programs} field of an @code{operating-system}
8746declaration contains a list of G-expressions denoting the names of
8747programs to be setuid-root (@pxref{Using the Configuration System}).
8748For instance, the @command{passwd} program, which is part of the Shadow
8749package, can be designated by this G-expression (@pxref{G-Expressions}):
8750
8751@example
8752#~(string-append #$shadow "/bin/passwd")
8753@end example
8754
8755A default set of setuid programs is defined by the
8756@code{%setuid-programs} variable of the @code{(gnu system)} module.
8757
8758@defvr {Scheme Variable} %setuid-programs
8759A list of G-expressions denoting common programs that are setuid-root.
8760
8761The list includes commands such as @command{passwd}, @command{ping},
8762@command{su}, and @command{sudo}.
8763@end defvr
8764
8765Under the hood, the actual setuid programs are created in the
8766@file{/run/setuid-programs} directory at system activation time. The
8767files in this directory refer to the ``real'' binaries, which are in the
8768store.
8769
efb5e833
LC
8770@node X.509 Certificates
8771@subsection X.509 Certificates
8772
8773@cindex HTTPS, certificates
8774@cindex X.509 certificates
8775@cindex TLS
8776Web servers available over HTTPS (that is, HTTP over the transport-layer
8777security mechanism, TLS) send client programs an @dfn{X.509 certificate}
8778that the client can then use to @emph{authenticate} the server. To do
8779that, clients verify that the server's certificate is signed by a
8780so-called @dfn{certificate authority} (CA). But to verify the CA's
8781signature, clients must have first acquired the CA's certificate.
8782
8783Web browsers such as GNU@tie{}IceCat include their own set of CA
8784certificates, such that they are able to verify CA signatures
8785out-of-the-box.
8786
8787However, most other programs that can talk HTTPS---@command{wget},
8788@command{git}, @command{w3m}, etc.---need to be told where CA
8789certificates can be found.
8790
8791@cindex @code{nss-certs}
8792In GuixSD, this is done by adding a package that provides certificates
8793to the @code{packages} field of the @code{operating-system} declaration
8794(@pxref{operating-system Reference}). GuixSD includes one such package,
8795@code{nss-certs}, which is a set of CA certificates provided as part of
8796Mozilla's Network Security Services.
8797
8798Note that it is @emph{not} part of @var{%base-packages}, so you need to
8799explicitly add it. The @file{/etc/ssl/certs} directory, which is where
8800most applications and libraries look for certificates by default, points
8801to the certificates installed globally.
8802
8803Unprivileged users can also install their own certificate package in
8804their profile. A number of environment variables need to be defined so
8805that applications and libraries know where to find them. Namely, the
8806OpenSSL library honors the @code{SSL_CERT_DIR} and @code{SSL_CERT_FILE}
8807variables. Some applications add their own environment variables; for
8808instance, the Git version control system honors the certificate bundle
8809pointed to by the @code{GIT_SSL_CAINFO} environment variable.
8810
8811
996ed739
LC
8812@node Name Service Switch
8813@subsection Name Service Switch
8814
8815@cindex name service switch
8816@cindex NSS
8817The @code{(gnu system nss)} module provides bindings to the
8818configuration file of libc's @dfn{name service switch} or @dfn{NSS}
8819(@pxref{NSS Configuration File,,, libc, The GNU C Library Reference
8820Manual}). In a nutshell, the NSS is a mechanism that allows libc to be
8821extended with new ``name'' lookup methods for system databases, which
8822includes host names, service names, user accounts, and more (@pxref{Name
8823Service Switch, System Databases and Name Service Switch,, libc, The GNU
8824C Library Reference Manual}).
8825
8826The NSS configuration specifies, for each system database, which lookup
8827method is to be used, and how the various methods are chained
8828together---for instance, under which circumstances NSS should try the
8829next method in the list. The NSS configuration is given in the
8830@code{name-service-switch} field of @code{operating-system} declarations
8831(@pxref{operating-system Reference, @code{name-service-switch}}).
8832
4c9050c6
LC
8833@cindex nss-mdns
8834@cindex .local, host name lookup
996ed739 8835As an example, the declaration below configures the NSS to use the
4c9050c6
LC
8836@uref{http://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns}
8837back-end}, which supports host name lookups over multicast DNS (mDNS)
8838for host names ending in @code{.local}:
996ed739
LC
8839
8840@example
8841(name-service-switch
8842 (hosts (list %files ;first, check /etc/hosts
8843
8844 ;; If the above did not succeed, try
8845 ;; with 'mdns_minimal'.
8846 (name-service
8847 (name "mdns_minimal")
8848
8849 ;; 'mdns_minimal' is authoritative for
8850 ;; '.local'. When it returns "not found",
8851 ;; no need to try the next methods.
8852 (reaction (lookup-specification
8853 (not-found => return))))
8854
8855 ;; Then fall back to DNS.
8856 (name-service
8857 (name "dns"))
8858
8859 ;; Finally, try with the "full" 'mdns'.
8860 (name-service
8861 (name "mdns")))))
8862@end example
8863
15137a29
LC
8864Don't worry: the @code{%mdns-host-lookup-nss} variable (see below)
8865contains this configuration, so you won't have to type it if all you
8866want is to have @code{.local} host lookup working.
8867
4c9050c6
LC
8868Note that, in this case, in addition to setting the
8869@code{name-service-switch} of the @code{operating-system} declaration,
cc9c1f39
LC
8870you also need to use @code{avahi-service} (@pxref{Networking Services,
8871@code{avahi-service}}), or @var{%desktop-services}, which includes it
8872(@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible
8873to the name service cache daemon (@pxref{Base Services,
8874@code{nscd-service}}).
15137a29
LC
8875
8876For convenience, the following variables provide typical NSS
8877configurations.
8878
8879@defvr {Scheme Variable} %default-nss
8880This is the default name service switch configuration, a
8881@code{name-service-switch} object.
8882@end defvr
8883
8884@defvr {Scheme Variable} %mdns-host-lookup-nss
8885This is the name service switch configuration with support for host name
8886lookup over multicast DNS (mDNS) for host names ending in @code{.local}.
8887@end defvr
4c9050c6 8888
996ed739
LC
8889The reference for name service switch configuration is given below. It
8890is a direct mapping of the C library's configuration file format, so
8891please refer to the C library manual for more information (@pxref{NSS
8892Configuration File,,, libc, The GNU C Library Reference Manual}).
8893Compared to libc's NSS configuration file format, it has the advantage
8894not only of adding this warm parenthetic feel that we like, but also
8895static checks: you'll know about syntax errors and typos as soon as you
8896run @command{guix system}.
8897
996ed739
LC
8898@deftp {Data Type} name-service-switch
8899
8900This is the data type representation the configuration of libc's name
8901service switch (NSS). Each field below represents one of the supported
8902system databases.
8903
8904@table @code
8905@item aliases
8906@itemx ethers
8907@itemx group
8908@itemx gshadow
8909@itemx hosts
8910@itemx initgroups
8911@itemx netgroup
8912@itemx networks
8913@itemx password
8914@itemx public-key
8915@itemx rpc
8916@itemx services
8917@itemx shadow
8918The system databases handled by the NSS. Each of these fields must be a
8919list of @code{<name-service>} objects (see below.)
8920@end table
8921@end deftp
8922
8923@deftp {Data Type} name-service
8924
8925This is the data type representing an actual name service and the
8926associated lookup action.
8927
8928@table @code
8929@item name
8930A string denoting the name service (@pxref{Services in the NSS
8931configuration,,, libc, The GNU C Library Reference Manual}).
8932
4aee6e60
LC
8933Note that name services listed here must be visible to nscd. This is
8934achieved by passing the @code{#:name-services} argument to
8935@code{nscd-service} the list of packages providing the needed name
8936services (@pxref{Base Services, @code{nscd-service}}).
8937
996ed739
LC
8938@item reaction
8939An action specified using the @code{lookup-specification} macro
8940(@pxref{Actions in the NSS configuration,,, libc, The GNU C Library
8941Reference Manual}). For example:
8942
8943@example
8944(lookup-specification (unavailable => continue)
8945 (success => return))
8946@end example
8947@end table
8948@end deftp
0ae8c15a 8949
fd1b1fa2
LC
8950@node Initial RAM Disk
8951@subsection Initial RAM Disk
8952
8953@cindex initial RAM disk (initrd)
8954@cindex initrd (initial RAM disk)
8955For bootstrapping purposes, the Linux-Libre kernel is passed an
8956@dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary
8957root file system, as well as an initialization script. The latter is
8958responsible for mounting the real root file system, and for loading any
8959kernel modules that may be needed to achieve that.
8960
8961The @code{initrd} field of an @code{operating-system} declaration allows
8962you to specify which initrd you would like to use. The @code{(gnu
8963system linux-initrd)} module provides two ways to build an initrd: the
8964high-level @code{base-initrd} procedure, and the low-level
8965@code{expression->initrd} procedure.
8966
8967The @code{base-initrd} procedure is intended to cover most common uses.
8968For example, if you want to add a bunch of kernel modules to be loaded
8969at boot time, you can define the @code{initrd} field of the operating
8970system declaration like this:
8971
8972@example
52ac153e 8973(initrd (lambda (file-systems . rest)
027981d6
LC
8974 ;; Create a standard initrd that has modules "foo.ko"
8975 ;; and "bar.ko", as well as their dependencies, in
8976 ;; addition to the modules available by default.
52ac153e 8977 (apply base-initrd file-systems
027981d6 8978 #:extra-modules '("foo" "bar")
52ac153e 8979 rest)))
fd1b1fa2
LC
8980@end example
8981
52ac153e
LC
8982The @code{base-initrd} procedure also handles common use cases that
8983involves using the system as a QEMU guest, or as a ``live'' system whose
8984root file system is volatile.
fd1b1fa2 8985
e90cf6c1
LC
8986The initial RAM disk produced by @code{base-initrd} honors several
8987options passed on the Linux kernel command line (that is, arguments
8988passed @i{via} GRUB's @code{linux} command, or with QEMU's
8989@code{-append} option), notably:
8990
8991@table @code
8992@item --load=@var{boot}
8993Tell the initial RAM disk to load @var{boot}, a file containing a Scheme
8994program, once it has mounted the root file system.
8995
8996GuixSD uses this option to yield control to a boot program that runs the
dd17bc38 8997service activation programs and then spawns the GNU@tie{}Shepherd, the
e90cf6c1
LC
8998initialization system.
8999
9000@item --root=@var{root}
9001Mount @var{root} as the root file system. @var{root} can be a device
9002device name like @code{/dev/sda1}, a partition label, or a partition
9003UUID.
9004
9005@item --system=@var{system}
9006Have @file{/run/booted-system} and @file{/run/current-system} point to
9007@var{system}.
9008
9009@item modprobe.blacklist=@var{modules}@dots{}
9010@cindex module, black-listing
9011@cindex black list, of kernel modules
9012Instruct the initial RAM disk as well as the @command{modprobe} command
9013(from the kmod package) to refuse to load @var{modules}. @var{modules}
9014must be a comma-separated list of module names---e.g.,
9015@code{usbkbd,9pnet}.
9016
9017@item --repl
9018Start a read-eval-print loop (REPL) from the initial RAM disk before it
9019tries to load kernel modules and to mount the root file system. Our
9020marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will
9021love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference
9022Manual}, for more information on Guile's REPL.
9023
9024@end table
9025
9026Now that you know all the features that initial RAM disks produced by
9027@code{base-initrd} provide, here is how to use it and customize it
9028further.
9029
fd1b1fa2 9030@deffn {Monadic Procedure} base-initrd @var{file-systems} @
9059b97d 9031 [#:qemu-networking? #f] [#:virtio? #t] [#:volatile-root? #f] @
52ac153e 9032 [#:extra-modules '()] [#:mapped-devices '()]
fd1b1fa2
LC
9033Return a monadic derivation that builds a generic initrd. @var{file-systems} is
9034a list of file-systems to be mounted by the initrd, possibly in addition to
9035the root file system specified on the kernel command line via @code{--root}.
52ac153e
LC
9036@var{mapped-devices} is a list of device mappings to realize before
9037@var{file-systems} are mounted (@pxref{Mapped Devices}).
fd1b1fa2
LC
9038
9039When @var{qemu-networking?} is true, set up networking with the standard QEMU
9040parameters. When @var{virtio?} is true, load additional modules so the initrd can
9041be used as a QEMU guest with para-virtualized I/O drivers.
9042
9043When @var{volatile-root?} is true, the root file system is writable but any changes
9044to it are lost.
9045
9046The initrd is automatically populated with all the kernel modules necessary
9047for @var{file-systems} and for the given options. However, additional kernel
9048modules can be listed in @var{extra-modules}. They will be added to the initrd, and
9049loaded at boot time in the order in which they appear.
9050@end deffn
9051
9052Needless to say, the initrds we produce and use embed a
9053statically-linked Guile, and the initialization program is a Guile
9054program. That gives a lot of flexibility. The
9055@code{expression->initrd} procedure builds such an initrd, given the
9056program to run in that initrd.
9057
9058@deffn {Monadic Procedure} expression->initrd @var{exp} @
9059 [#:guile %guile-static-stripped] [#:name "guile-initrd"] @
42d10464 9060 [#:modules '()]
fd1b1fa2
LC
9061Return a derivation that builds a Linux initrd (a gzipped cpio archive)
9062containing @var{guile} and that evaluates @var{exp}, a G-expression,
df650fa8
LC
9063upon booting. All the derivations referenced by @var{exp} are
9064automatically copied to the initrd.
fd1b1fa2 9065
42d10464
LC
9066@var{modules} is a list of Guile module names to be embedded in the
9067initrd.
fd1b1fa2
LC
9068@end deffn
9069
88faf933
LC
9070@node GRUB Configuration
9071@subsection GRUB Configuration
9072
9073@cindex GRUB
9074@cindex boot loader
9075
9076The operating system uses GNU@tie{}GRUB as its boot loader
9077(@pxref{Overview, overview of GRUB,, grub, GNU GRUB Manual}). It is
9078configured using @code{grub-configuration} declarations. This data type
9079is exported by the @code{(gnu system grub)} module, and described below.
9080
9081@deftp {Data Type} grub-configuration
9082The type of a GRUB configuration declaration.
9083
9084@table @asis
9085
9086@item @code{device}
9087This is a string denoting the boot device. It must be a device name
9088understood by the @command{grub-install} command, such as
9089@code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub,
9090GNU GRUB Manual}).
9091
9092@item @code{menu-entries} (default: @code{()})
9093A possibly empty list of @code{menu-entry} objects (see below), denoting
9094entries to appear in the GRUB boot menu, in addition to the current
9095system entry and the entry pointing to previous system generations.
9096
9097@item @code{default-entry} (default: @code{0})
9098The index of the default boot menu entry. Index 0 is for the current
9099system's entry.
9100
9101@item @code{timeout} (default: @code{5})
9102The number of seconds to wait for keyboard input before booting. Set to
91030 to boot immediately, and to -1 to wait indefinitely.
9104
9105@item @code{theme} (default: @var{%default-theme})
9106The @code{grub-theme} object describing the theme to use.
9107@end table
9108
9109@end deftp
9110
9111Should you want to list additional boot menu entries @i{via} the
9112@code{menu-entries} field above, you will need to create them with the
9113@code{menu-entry} form:
9114
9115@deftp {Data Type} menu-entry
9116The type of an entry in the GRUB boot menu.
9117
9118@table @asis
9119
9120@item @code{label}
35ed9306 9121The label to show in the menu---e.g., @code{"GNU"}.
88faf933
LC
9122
9123@item @code{linux}
9124The Linux kernel to boot.
9125
9126@item @code{linux-arguments} (default: @code{()})
9127The list of extra Linux kernel command-line arguments---e.g.,
9128@code{("console=ttyS0")}.
9129
9130@item @code{initrd}
9131A G-Expression or string denoting the file name of the initial RAM disk
9132to use (@pxref{G-Expressions}).
9133
9134@end table
9135@end deftp
9136
9137@c FIXME: Write documentation once it's stable.
9138Themes are created using the @code{grub-theme} form, which is not
9139documented yet.
9140
9141@defvr {Scheme Variable} %default-theme
9142This is the default GRUB theme used by the operating system, with a
9143fancy background image displaying the GNU and Guix logos.
9144@end defvr
9145
9146
cf4a9129
LC
9147@node Invoking guix system
9148@subsection Invoking @code{guix system}
0918e64a 9149
cf4a9129
LC
9150Once you have written an operating system declaration, as seen in the
9151previous section, it can be @dfn{instantiated} using the @command{guix
9152system} command. The synopsis is:
4af2447e 9153
cf4a9129
LC
9154@example
9155guix system @var{options}@dots{} @var{action} @var{file}
9156@end example
4af2447e 9157
cf4a9129
LC
9158@var{file} must be the name of a file containing an
9159@code{operating-system} declaration. @var{action} specifies how the
9160operating system is instantiate. Currently the following values are
9161supported:
4af2447e 9162
cf4a9129
LC
9163@table @code
9164@item reconfigure
9165Build the operating system described in @var{file}, activate it, and
9166switch to it@footnote{This action is usable only on systems already
65797bff 9167running GuixSD.}.
4af2447e 9168
cf4a9129
LC
9169This effects all the configuration specified in @var{file}: user
9170accounts, system services, global package list, setuid programs, etc.
4af2447e 9171
cf4a9129
LC
9172It also adds a GRUB menu entry for the new OS configuration, and moves
9173entries for older configurations to a submenu---unless
9174@option{--no-grub} is passed.
4af2447e 9175
bf2479c7
LC
9176@c The paragraph below refers to the problem discussed at
9177@c <http://lists.gnu.org/archive/html/guix-devel/2014-08/msg00057.html>.
9178It is highly recommended to run @command{guix pull} once before you run
9179@command{guix system reconfigure} for the first time (@pxref{Invoking
9180guix pull}). Failing to do that you would see an older version of Guix
9181once @command{reconfigure} has completed.
9182
cf4a9129
LC
9183@item build
9184Build the operating system's derivation, which includes all the
9185configuration files and programs needed to boot and run the system.
9186This action does not actually install anything.
113daf62 9187
cf4a9129
LC
9188@item init
9189Populate the given directory with all the files necessary to run the
9190operating system specified in @var{file}. This is useful for first-time
4705641f 9191installations of GuixSD. For instance:
113daf62
LC
9192
9193@example
cf4a9129 9194guix system init my-os-config.scm /mnt
113daf62
LC
9195@end example
9196
cf4a9129
LC
9197copies to @file{/mnt} all the store items required by the configuration
9198specified in @file{my-os-config.scm}. This includes configuration
9199files, packages, and so on. It also creates other essential files
9200needed for the system to operate correctly---e.g., the @file{/etc},
9201@file{/var}, and @file{/run} directories, and the @file{/bin/sh} file.
113daf62 9202
cf4a9129
LC
9203This command also installs GRUB on the device specified in
9204@file{my-os-config}, unless the @option{--no-grub} option was passed.
113daf62 9205
cf4a9129
LC
9206@item vm
9207@cindex virtual machine
0276f697 9208@cindex VM
f535dcbe 9209@anchor{guix system vm}
cf4a9129
LC
9210Build a virtual machine that contain the operating system declared in
9211@var{file}, and return a script to run that virtual machine (VM).
810568b3 9212Arguments given to the script are passed as is to QEMU.
113daf62 9213
cf4a9129 9214The VM shares its store with the host system.
113daf62 9215
0276f697
LC
9216Additional file systems can be shared between the host and the VM using
9217the @code{--share} and @code{--expose} command-line options: the former
9218specifies a directory to be shared with write access, while the latter
9219provides read-only access to the shared directory.
9220
9221The example below creates a VM in which the user's home directory is
9222accessible read-only, and where the @file{/exchange} directory is a
9223read-write mapping of the host's @file{$HOME/tmp}:
9224
9225@example
9226guix system vm my-config.scm \
9227 --expose=$HOME --share=$HOME/tmp=/exchange
9228@end example
9229
6aa260af
LC
9230On GNU/Linux, the default is to boot directly to the kernel; this has
9231the advantage of requiring only a very tiny root disk image since the
9232host's store can then be mounted.
9233
9234The @code{--full-boot} option forces a complete boot sequence, starting
9235with the bootloader. This requires more disk space since a root image
9236containing at least the kernel, initrd, and bootloader data files must
9237be created. The @code{--image-size} option can be used to specify the
9238image's size.
ab11f0be 9239
cf4a9129
LC
9240@item vm-image
9241@itemx disk-image
9242Return a virtual machine or disk image of the operating system declared
9243in @var{file} that stands alone. Use the @option{--image-size} option
9244to specify the size of the image.
113daf62 9245
cf4a9129 9246When using @code{vm-image}, the returned image is in qcow2 format, which
97d76250
LF
9247the QEMU emulator can efficiently use. @xref{Running GuixSD in a VM},
9248for more information on how to run the image in a virtual machine.
113daf62 9249
cf4a9129
LC
9250When using @code{disk-image}, a raw disk image is produced; it can be
9251copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is
9252the device corresponding to a USB stick, one can copy the image on it
9253using the following command:
113daf62 9254
cf4a9129
LC
9255@example
9256# dd if=$(guix system disk-image my-os.scm) of=/dev/sdc
9257@end example
113daf62 9258
1c8a81b1
DT
9259@item container
9260Return a script to run the operating system declared in @var{file}
9261within a container. Containers are a set of lightweight isolation
9262mechanisms provided by the kernel Linux-libre. Containers are
9263substantially less resource-demanding than full virtual machines since
9264the kernel, shared objects, and other resources can be shared with the
9265host system; this also means they provide thinner isolation.
9266
9267Currently, the script must be run as root in order to support more than
9268a single user and group. The container shares its store with the host
9269system.
9270
9271As with the @code{vm} action (@pxref{guix system vm}), additional file
9272systems to be shared between the host and container can be specified
9273using the @option{--share} and @option{--expose} options:
9274
9275@example
9276guix system container my-config.scm \
9277 --expose=$HOME --share=$HOME/tmp=/exchange
9278@end example
9279
0f252e26 9280@quotation Note
cfd35b4e 9281This option requires Linux-libre 3.19 or newer.
0f252e26
DT
9282@end quotation
9283
cf4a9129 9284@end table
113daf62 9285
ccd7158d
LC
9286@var{options} can contain any of the common build options (@pxref{Common
9287Build Options}). In addition, @var{options} can contain one of the
9288following:
113daf62 9289
cf4a9129
LC
9290@table @option
9291@item --system=@var{system}
9292@itemx -s @var{system}
9293Attempt to build for @var{system} instead of the host's system type.
9294This works as per @command{guix build} (@pxref{Invoking guix build}).
113daf62 9295
f3f427c2
LC
9296@item --derivation
9297@itemx -d
9298Return the derivation file name of the given operating system without
9299building anything.
9300
cf4a9129
LC
9301@item --image-size=@var{size}
9302For the @code{vm-image} and @code{disk-image} actions, create an image
9303of the given @var{size}. @var{size} may be a number of bytes, or it may
4a44d7bb
LC
9304include a unit as a suffix (@pxref{Block size, size specifications,,
9305coreutils, GNU Coreutils}).
db030303
LC
9306
9307@item --on-error=@var{strategy}
9308Apply @var{strategy} when an error occurs when reading @var{file}.
9309@var{strategy} may be one of the following:
9310
9311@table @code
9312@item nothing-special
9313Report the error concisely and exit. This is the default strategy.
9314
9315@item backtrace
9316Likewise, but also display a backtrace.
9317
9318@item debug
9319Report the error and enter Guile's debugger. From there, you can run
9320commands such as @code{,bt} to get a backtrace, @code{,locals} to
9321display local variable values, and more generally inspect the program's
9322state. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for
9323a list of available debugging commands.
9324@end table
113daf62 9325@end table
113daf62 9326
cf4a9129
LC
9327Note that all the actions above, except @code{build} and @code{init},
9328rely on KVM support in the Linux-Libre kernel. Specifically, the
9329machine should have hardware virtualization support, the corresponding
9330KVM kernel module should be loaded, and the @file{/dev/kvm} device node
9331must exist and be readable and writable by the user and by the daemon's
9332build users.
8451a568 9333
65797bff
LC
9334Once you have built, configured, re-configured, and re-re-configured
9335your GuixSD installation, you may find it useful to list the operating
9336system generations available on disk---and that you can choose from the
9337GRUB boot menu:
9338
9339@table @code
9340
9341@item list-generations
9342List a summary of each generation of the operating system available on
9343disk, in a human-readable way. This is similar to the
9344@option{--list-generations} option of @command{guix package}
9345(@pxref{Invoking guix package}).
9346
9347Optionally, one can specify a pattern, with the same syntax that is used
9348in @command{guix package --list-generations}, to restrict the list of
9349generations displayed. For instance, the following command displays
9350generations up to 10-day old:
9351
9352@example
9353$ guix system list-generations 10d
9354@end example
9355
9356@end table
9357
d6c3267a
LC
9358The @command{guix system} command has even more to offer! The following
9359sub-commands allow you to visualize how your system services relate to
9360each other:
9361
9362@anchor{system-extension-graph}
9363@table @code
9364
9365@item extension-graph
9366Emit in Dot/Graphviz format to standard output the @dfn{service
9367extension graph} of the operating system defined in @var{file}
9368(@pxref{Service Composition}, for more information on service
9369extensions.)
9370
9371The command:
9372
9373@example
9374$ guix system extension-graph @var{file} | dot -Tpdf > services.pdf
9375@end example
9376
9377produces a PDF file showing the extension relations among services.
9378
710fa231
AK
9379@anchor{system-shepherd-graph}
9380@item shepherd-graph
6f305ea5 9381Emit in Dot/Graphviz format to standard output the @dfn{dependency
dd17bc38
AK
9382graph} of shepherd services of the operating system defined in
9383@var{file}. @xref{Shepherd Services}, for more information and for an
9384example graph.
6f305ea5 9385
d6c3267a
LC
9386@end table
9387
97d76250
LF
9388@node Running GuixSD in a VM
9389@subsection Running GuixSD in a virtual machine
9390
9391One way to run GuixSD in a virtual machine (VM) is to build a GuixSD
9392virtual machine image using @command{guix system vm-image}
9393(@pxref{Invoking guix system}). The returned image is in qcow2 format,
9394which the @uref{http://qemu.org/, QEMU emulator} can efficiently use.
9395
9396To run the image in QEMU, copy it out of the store (@pxref{The Store})
9397and give yourself permission to write to the copy. When invoking QEMU,
9398you must choose a system emulator that is suitable for your hardware
9399platform. Here is a minimal QEMU invocation that will boot the result
9400of @command{guix system vm-image} on x86_64 hardware:
9401
9402@example
9403$ qemu-system-x86_64 \
9404 -net user -net nic,model=virtio \
9405 -enable-kvm -m 256 /tmp/qemu-image
9406@end example
9407
9408Here is what each of these options means:
9409
9410@table @code
9411@item qemu-system-x86_64
9412This specifies the hardware platform to emulate. This should match the
9413host.
9414
9415@item -net user
9416Enable the unprivileged user-mode network stack. The guest OS can
9417access the host but not vice versa. This is the simplest way to get the
9418guest OS online. If you don't choose a network stack, the boot will
9419fail.
9420
9421@item -net nic,model=virtio
9422You must create a network interface of a given model. If you don't
9423create a NIC, the boot will fail. Assuming your hardware platform is
9424x86_64, you can get a list of available NIC models by running
9425@command{qemu-system-x86_64 -net nic,model=help}.
9426
9427@item -enable-kvm
9428If your system has hardware virtualization extensions, enabling the
9429Linux kernel's virtual machine support (KVM) will make things run
9430faster.
9431
9432@item -m 256
9433RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB,
9434which may be insufficent for some operations.
9435
9436@item /tmp/qemu-image
9437The file name of the qcow2 image.
9438@end table
d6c3267a 9439
cf4a9129
LC
9440@node Defining Services
9441@subsection Defining Services
8451a568 9442
eb524192 9443The previous sections show the available services and how one can combine
0adfe95a
LC
9444them in an @code{operating-system} declaration. But how do we define
9445them in the first place? And what is a service anyway?
8451a568 9446
0adfe95a
LC
9447@menu
9448* Service Composition:: The model for composing services.
9449* Service Types and Services:: Types and services.
9450* Service Reference:: API reference.
dd17bc38 9451* Shepherd Services:: A particular type of service.
0adfe95a
LC
9452@end menu
9453
9454@node Service Composition
9455@subsubsection Service Composition
9456
9457@cindex services
9458@cindex daemons
9459Here we define a @dfn{service} as, broadly, something that extends the
9460operating system's functionality. Often a service is a process---a
9461@dfn{daemon}---started when the system boots: a secure shell server, a
9462Web server, the Guix build daemon, etc. Sometimes a service is a daemon
9463whose execution can be triggered by another daemon---e.g., an FTP server
9464started by @command{inetd} or a D-Bus service activated by
9465@command{dbus-daemon}. Occasionally, a service does not map to a
9466daemon. For instance, the ``account'' service collects user accounts
9467and makes sure they exist when the system runs; the ``udev'' service
9468collects device management rules and makes them available to the eudev
9469daemon; the @file{/etc} service populates the system's @file{/etc}
9470directory.
9471
d6c3267a 9472@cindex service extensions
0adfe95a 9473GuixSD services are connected by @dfn{extensions}. For instance, the
dd17bc38
AK
9474secure shell service @emph{extends} the Shepherd---GuixSD's
9475initialization system, running as PID@tie{}1---by giving it the command
9476lines to start and stop the secure shell daemon (@pxref{Networking
9477Services, @code{lsh-service}}); the UPower service extends the D-Bus
9478service by passing it its @file{.service} specification, and extends the
9479udev service by passing it device management rules (@pxref{Desktop
9480Services, @code{upower-service}}); the Guix daemon service extends the
9481Shepherd by passing it the command lines to start and stop the daemon,
9482and extends the account service by passing it a list of required build
9483user accounts (@pxref{Base Services}).
0adfe95a
LC
9484
9485All in all, services and their ``extends'' relations form a directed
9486acyclic graph (DAG). If we represent services as boxes and extensions
9487as arrows, a typical system might provide something like this:
9488
9489@image{images/service-graph,,5in,Typical service extension graph.}
9490
d62e201c
LC
9491@cindex system service
9492At the bottom, we see the @dfn{system service}, which produces the
9493directory containing everything to run and boot the system, as returned
9494by the @command{guix system build} command. @xref{Service Reference},
9495to learn about the other service types shown here.
d6c3267a
LC
9496@xref{system-extension-graph, the @command{guix system extension-graph}
9497command}, for information on how to generate this representation for a
9498particular operating system definition.
0adfe95a
LC
9499
9500@cindex service types
9501Technically, developers can define @dfn{service types} to express these
9502relations. There can be any number of services of a given type on the
9503system---for instance, a system running two instances of the GNU secure
9504shell server (lsh) has two instances of @var{lsh-service-type}, with
9505different parameters.
9506
9507The following section describes the programming interface for service
9508types and services.
9509
9510@node Service Types and Services
9511@subsubsection Service Types and Services
9512
9513A @dfn{service type} is a node in the DAG described above. Let us start
9514with a simple example, the service type for the Guix build daemon
9515(@pxref{Invoking guix-daemon}):
9516
9517@example
9518(define guix-service-type
9519 (service-type
9520 (name 'guix)
9521 (extensions
d4053c71 9522 (list (service-extension shepherd-root-service-type guix-shepherd-service)
0adfe95a
LC
9523 (service-extension account-service-type guix-accounts)
9524 (service-extension activation-service-type guix-activation)))))
9525@end example
8451a568 9526
cf4a9129 9527@noindent
0adfe95a
LC
9528It defines a two things:
9529
9530@enumerate
9531@item
9532A name, whose sole purpose is to make inspection and debugging easier.
9533
9534@item
9535A list of @dfn{service extensions}, where each extension designates the
9536target service type and a procedure that, given the service's
9537parameters, returns a list of object to extend the service of that type.
9538
9539Every service type has at least one service extension. The only
9540exception is the @dfn{boot service type}, which is the ultimate service.
9541@end enumerate
9542
9543In this example, @var{guix-service-type} extends three services:
9544
9545@table @var
d4053c71
AK
9546@item shepherd-root-service-type
9547The @var{guix-shepherd-service} procedure defines how the Shepherd
9548service is extended. Namely, it returns a @code{<shepherd-service>}
9549object that defines how @command{guix-daemon} is started and stopped
9550(@pxref{Shepherd Services}).
0adfe95a
LC
9551
9552@item account-service-type
9553This extension for this service is computed by @var{guix-accounts},
9554which returns a list of @code{user-group} and @code{user-account}
9555objects representing the build user accounts (@pxref{Invoking
9556guix-daemon}).
9557
9558@item activation-service-type
9559Here @var{guix-activation} is a procedure that returns a gexp, which is
9560a code snippet to run at ``activation time''---e.g., when the service is
9561booted.
9562@end table
9563
9564A service of this type is instantiated like this:
9565
9566@example
9567(service guix-service-type
9568 (guix-configuration
9569 (build-accounts 5)
9570 (use-substitutes? #f)))
9571@end example
9572
9573The second argument to the @code{service} form is a value representing
9574the parameters of this specific service instance.
9575@xref{guix-configuration-type, @code{guix-configuration}}, for
9576information about the @code{guix-configuration} data type.
9577
9578@var{guix-service-type} is quite simple because it extends other
9579services but is not extensible itself.
9580
9581@c @subsubsubsection Extensible Service Types
9582
9583The service type for an @emph{extensible} service looks like this:
9584
9585@example
9586(define udev-service-type
9587 (service-type (name 'udev)
9588 (extensions
d4053c71
AK
9589 (list (service-extension shepherd-root-service-type
9590 udev-shepherd-service)))
0adfe95a
LC
9591
9592 (compose concatenate) ;concatenate the list of rules
9593 (extend (lambda (config rules)
9594 (match config
9595 (($ <udev-configuration> udev initial-rules)
9596 (udev-configuration
9597 (udev udev) ;the udev package to use
9598 (rules (append initial-rules rules)))))))))
9599@end example
9600
9601This is the service type for the
9602@uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device
9603management daemon}. Compared to the previous example, in addition to an
d4053c71 9604extension of @var{shepherd-root-service-type}, we see two new fields:
0adfe95a
LC
9605
9606@table @code
9607@item compose
9608This is the procedure to @dfn{compose} the list of extensions to
9609services of this type.
9610
9611Services can extend the udev service by passing it lists of rules; we
9612compose those extensions simply by concatenating them.
9613
9614@item extend
9615This procedure defines how the service's value is @dfn{extended} with
9616the composition of the extensions.
9617
9618Udev extensions are composed into a list of rules, but the udev service
9619value is itself a @code{<udev-configuration>} record. So here, we
9620extend that record by appending the list of rules is contains to the
9621list of contributed rules.
9622@end table
9623
9624There can be only one instance of an extensible service type such as
9625@var{udev-service-type}. If there were more, the
9626@code{service-extension} specifications would be ambiguous.
9627
9628Still here? The next section provides a reference of the programming
9629interface for services.
9630
9631@node Service Reference
9632@subsubsection Service Reference
9633
9634We have seen an overview of service types (@pxref{Service Types and
9635Services}). This section provides a reference on how to manipulate
9636services and service types. This interface is provided by the
9637@code{(gnu services)} module.
9638
9639@deffn {Scheme Procedure} service @var{type} @var{value}
9640Return a new service of @var{type}, a @code{<service-type>} object (see
9641below.) @var{value} can be any object; it represents the parameters of
9642this particular service instance.
9643@end deffn
9644
9645@deffn {Scheme Procedure} service? @var{obj}
9646Return true if @var{obj} is a service.
9647@end deffn
8451a568 9648
0adfe95a
LC
9649@deffn {Scheme Procedure} service-kind @var{service}
9650Return the type of @var{service}---i.e., a @code{<service-type>} object.
9651@end deffn
9652
9653@deffn {Scheme Procedure} service-parameters @var{service}
9654Return the value associated with @var{service}. It represents its
9655parameters.
9656@end deffn
9657
9658Here is an example of how a service is created and manipulated:
9659
9660@example
9661(define s
9662 (service nginx-service-type
9663 (nginx-configuration
9664 (nginx nginx)
9665 (log-directory log-directory)
9666 (run-directory run-directory)
9667 (file config-file))))
9668
9669(service? s)
9670@result{} #t
9671
9672(eq? (service-kind s) nginx-service-type)
9673@result{} #t
9674@end example
9675
cd6f6c22
LC
9676The @code{modify-services} form provides a handy way to change the
9677parameters of some of the services of a list such as
9678@var{%base-services} (@pxref{Base Services, @code{%base-services}}). Of
9679course, you could always use standard list combinators such as
9680@code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,,
9681guile, GNU Guile Reference Manual}); @code{modify-services} simply
9682provides a more concise form for this common pattern.
9683
9684@deffn {Scheme Syntax} modify-services @var{services} @
9685 (@var{type} @var{variable} => @var{body}) @dots{}
9686
9687Modify the services listed in @var{services} according to the given
9688clauses. Each clause has the form:
9689
9690@example
9691(@var{type} @var{variable} => @var{body})
9692@end example
9693
9694where @var{type} is a service type, such as @var{guix-service-type}, and
9695@var{variable} is an identifier that is bound within @var{body} to the
9696value of the service of that @var{type}. @xref{Using the Configuration
9697System}, for an example.
9698
9699This is a shorthand for:
9700
9701@example
9702(map (lambda (service) @dots{}) @var{services})
9703@end example
9704@end deffn
9705
9706Next comes the programming interface for service types. This is
9707something you want to know when writing new service definitions, but not
9708necessarily when simply looking for ways to customize your
9709@code{operating-system} declaration.
9710
0adfe95a
LC
9711@deftp {Data Type} service-type
9712@cindex service type
9713This is the representation of a @dfn{service type} (@pxref{Service Types
9714and Services}).
9715
9716@table @asis
9717@item @code{name}
9718This is a symbol, used only to simplify inspection and debugging.
9719
9720@item @code{extensions}
9721A non-empty list of @code{<service-extension>} objects (see below.)
9722
9723@item @code{compose} (default: @code{#f})
9724If this is @code{#f}, then the service type denotes services that cannot
9725be extended---i.e., services that do not receive ``values'' from other
9726services.
9727
9728Otherwise, it must be a one-argument procedure. The procedure is called
9729by @code{fold-services} and is passed a list of values collected from
9730extensions. It must return a value that is a valid parameter value for
9731the service instance.
9732
9733@item @code{extend} (default: @code{#f})
9734If this is @code{#f}, services of this type cannot be extended.
9735
9736Otherwise, it must be a two-argument procedure: @code{fold-services}
9737calls it, passing it the service's initial value as the first argument
9738and the result of applying @code{compose} to the extension values as the
9739second argument.
9740@end table
9741
9742@xref{Service Types and Services}, for examples.
9743@end deftp
9744
9745@deffn {Scheme Procedure} service-extension @var{target-type} @
9746 @var{compute}
9747Return a new extension for services of type @var{target-type}.
9748@var{compute} must be a one-argument procedure: @code{fold-services}
9749calls it, passing it the value associated with the service that provides
9750the extension; it must return a valid value for the target service.
9751@end deffn
9752
9753@deffn {Scheme Procedure} service-extension? @var{obj}
9754Return true if @var{obj} is a service extension.
9755@end deffn
9756
9757At the core of the service abstraction lies the @code{fold-services}
9758procedure, which is responsible for ``compiling'' a list of services
d62e201c
LC
9759down to a single directory that contains everything needed to boot and
9760run the system---the directory shown by the @command{guix system build}
9761command (@pxref{Invoking guix system}). In essence, it propagates
9762service extensions down the service graph, updating each node parameters
9763on the way, until it reaches the root node.
0adfe95a
LC
9764
9765@deffn {Scheme Procedure} fold-services @var{services} @
d62e201c 9766 [#:target-type @var{system-service-type}]
0adfe95a
LC
9767Fold @var{services} by propagating their extensions down to the root of
9768type @var{target-type}; return the root service adjusted accordingly.
9769@end deffn
9770
9771Lastly, the @code{(gnu services)} module also defines several essential
9772service types, some of which are listed below.
9773
d62e201c
LC
9774@defvr {Scheme Variable} system-service-type
9775This is the root of the service graph. It produces the system directory
9776as returned by the @command{guix system build} command.
9777@end defvr
9778
0adfe95a 9779@defvr {Scheme Variable} boot-service-type
d62e201c
LC
9780The type of the ``boot service'', which produces the @dfn{boot script}.
9781The boot script is what the initial RAM disk runs when booting.
0adfe95a
LC
9782@end defvr
9783
9784@defvr {Scheme Variable} etc-service-type
9785The type of the @file{/etc} service. This service can be extended by
9786passing it name/file tuples such as:
9787
9788@example
9789(list `("issue" ,(plain-file "issue" "Welcome!\n")))
9790@end example
9791
9792In this example, the effect would be to add an @file{/etc/issue} file
9793pointing to the given file.
9794@end defvr
9795
9796@defvr {Scheme Variable} setuid-program-service-type
9797Type for the ``setuid-program service''. This service collects lists of
9798executable file names, passed as gexps, and adds them to the set of
9799setuid-root programs on the system (@pxref{Setuid Programs}).
9800@end defvr
9801
af4c3fd5
LC
9802@defvr {Scheme Variable} profile-service-type
9803Type of the service that populates the @dfn{system profile}---i.e., the
9804programs under @file{/run/current-system/profile}. Other services can
9805extend it by passing it lists of packages to add to the system profile.
9806@end defvr
9807
0adfe95a 9808
dd17bc38
AK
9809@node Shepherd Services
9810@subsubsection Shepherd Services
0adfe95a
LC
9811
9812@cindex PID 1
9813@cindex init system
0190c1c0
AK
9814The @code{(gnu services shepherd)} provides a way to define services
9815managed by the GNU@tie{}Shepherd, which is GuixSD initialization
9816system---the first process that is started when the system boots,
9817aka. PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd
9818Manual}).
6f305ea5 9819
dd17bc38
AK
9820Services in the Shepherd can depend on each other. For instance, the
9821SSH daemon may need to be started after the syslog daemon has been
9822started, which in turn can only happen once all the file systems have
9823been mounted. The simple operating system defined earlier (@pxref{Using
9824the Configuration System}) results in a service graph like this:
6f305ea5 9825
710fa231 9826@image{images/shepherd-graph,,5in,Typical shepherd service graph.}
6f305ea5
LC
9827
9828You can actually generate such a graph for any operating system
710fa231
AK
9829definition using the @command{guix system shepherd-graph} command
9830(@pxref{system-shepherd-graph, @command{guix system shepherd-graph}}).
6f305ea5 9831
d4053c71
AK
9832The @var{%shepherd-root-service} is a service object representing
9833PID@tie{}1, of type @var{shepherd-root-service-type}; it can be extended
9834by passing it lists of @code{<shepherd-service>} objects.
0adfe95a 9835
d4053c71 9836@deftp {Data Type} shepherd-service
dd17bc38 9837The data type representing a service managed by the Shepherd.
0adfe95a
LC
9838
9839@table @asis
9840@item @code{provision}
9841This is a list of symbols denoting what the service provides.
9842
dd17bc38
AK
9843These are the names that may be passed to @command{herd start},
9844@command{herd status}, and similar commands (@pxref{Invoking herd,,,
9845shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the
9846@code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details.
0adfe95a
LC
9847
9848@item @code{requirements} (default: @code{'()})
dd17bc38 9849List of symbols denoting the Shepherd services this one depends on.
0adfe95a
LC
9850
9851@item @code{respawn?} (default: @code{#t})
9852Whether to restart the service when it stops, for instance when the
9853underlying process dies.
9854
9855@item @code{start}
9856@itemx @code{stop} (default: @code{#~(const #f)})
dd17bc38
AK
9857The @code{start} and @code{stop} fields refer to the Shepherd's
9858facilities to start and stop processes (@pxref{Service De- and
9859Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as
9860G-expressions that get expanded in the Shepherd configuration file
9861(@pxref{G-Expressions}).
0adfe95a
LC
9862
9863@item @code{documentation}
9864A documentation string, as shown when running:
9865
9866@example
dd17bc38 9867herd doc @var{service-name}
0adfe95a
LC
9868@end example
9869
9870where @var{service-name} is one of the symbols in @var{provision}
dd17bc38 9871(@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}).
fae685b9
LC
9872
9873@item @code{modules} (default: @var{%default-modules})
9874This is the list of modules that must be in scope when @code{start} and
9875@code{stop} are evaluated.
9876
9877@item @code{imported-modules} (default: @var{%default-imported-modules})
9878This is the list of modules to import in the execution environment of
dd17bc38 9879the Shepherd.
fae685b9 9880
0adfe95a
LC
9881@end table
9882@end deftp
9883
d4053c71 9884@defvr {Scheme Variable} shepherd-root-service-type
dd17bc38 9885The service type for the Shepherd ``root service''---i.e., PID@tie{}1.
0adfe95a
LC
9886
9887This is the service type that extensions target when they want to create
dd17bc38 9888shepherd services (@pxref{Service Types and Services}, for an example).
d4053c71 9889Each extension must pass a list of @code{<shepherd-service>}.
0adfe95a
LC
9890@end defvr
9891
d4053c71 9892@defvr {Scheme Variable} %shepherd-root-service
0adfe95a
LC
9893This service represents PID@tie{}1.
9894@end defvr
8451a568 9895
8451a568 9896
cf4a9129
LC
9897@node Installing Debugging Files
9898@section Installing Debugging Files
8451a568 9899
cf4a9129
LC
9900@cindex debugging files
9901Program binaries, as produced by the GCC compilers for instance, are
9902typically written in the ELF format, with a section containing
9903@dfn{debugging information}. Debugging information is what allows the
9904debugger, GDB, to map binary code to source code; it is required to
9905debug a compiled program in good conditions.
8451a568 9906
cf4a9129
LC
9907The problem with debugging information is that is takes up a fair amount
9908of disk space. For example, debugging information for the GNU C Library
9909weighs in at more than 60 MiB. Thus, as a user, keeping all the
9910debugging info of all the installed programs is usually not an option.
9911Yet, space savings should not come at the cost of an impediment to
9912debugging---especially in the GNU system, which should make it easier
9913for users to exert their computing freedom (@pxref{GNU Distribution}).
8451a568 9914
cf4a9129
LC
9915Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a
9916mechanism that allows users to get the best of both worlds: debugging
9917information can be stripped from the binaries and stored in separate
9918files. GDB is then able to load debugging information from those files,
9919when they are available (@pxref{Separate Debug Files,,, gdb, Debugging
9920with GDB}).
8451a568 9921
cf4a9129
LC
9922The GNU distribution takes advantage of this by storing debugging
9923information in the @code{lib/debug} sub-directory of a separate package
9924output unimaginatively called @code{debug} (@pxref{Packages with
9925Multiple Outputs}). Users can choose to install the @code{debug} output
9926of a package when they need it. For instance, the following command
9927installs the debugging information for the GNU C Library and for GNU
9928Guile:
8451a568
LC
9929
9930@example
cf4a9129 9931guix package -i glibc:debug guile:debug
8451a568
LC
9932@end example
9933
cf4a9129
LC
9934GDB must then be told to look for debug files in the user's profile, by
9935setting the @code{debug-file-directory} variable (consider setting it
9936from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with
9937GDB}):
8451a568 9938
cf4a9129
LC
9939@example
9940(gdb) set debug-file-directory ~/.guix-profile/lib/debug
9941@end example
8451a568 9942
cf4a9129
LC
9943From there on, GDB will pick up debugging information from the
9944@code{.debug} files under @file{~/.guix-profile/lib/debug}.
8451a568 9945
cf4a9129
LC
9946In addition, you will most likely want GDB to be able to show the source
9947code being debugged. To do that, you will have to unpack the source
9948code of the package of interest (obtained with @code{guix build
9949--source}, @pxref{Invoking guix build}), and to point GDB to that source
9950directory using the @code{directory} command (@pxref{Source Path,
9951@code{directory},, gdb, Debugging with GDB}).
8451a568 9952
cf4a9129
LC
9953@c XXX: keep me up-to-date
9954The @code{debug} output mechanism in Guix is implemented by the
9955@code{gnu-build-system} (@pxref{Build Systems}). Currently, it is
9956opt-in---debugging information is available only for those packages
9957whose definition explicitly declares a @code{debug} output. This may be
9958changed to opt-out in the future, if our build farm servers can handle
9959the load. To check whether a package has a @code{debug} output, use
9960@command{guix package --list-available} (@pxref{Invoking guix package}).
8451a568 9961
8451a568 9962
05962f29
LC
9963@node Security Updates
9964@section Security Updates
9965
843858b8
LC
9966@quotation Note
9967As of version @value{VERSION}, the feature described in this section is
9968experimental.
9969@end quotation
05962f29
LC
9970
9971@cindex security updates
9972Occasionally, important security vulnerabilities are discovered in core
9973software packages and must be patched. Guix follows a functional
9974package management discipline (@pxref{Introduction}), which implies
9975that, when a package is changed, @emph{every package that depends on it}
9976must be rebuilt. This can significantly slow down the deployment of
9977fixes in core packages such as libc or Bash, since basically the whole
9978distribution would need to be rebuilt. Using pre-built binaries helps
9979(@pxref{Substitutes}), but deployment may still take more time than
9980desired.
9981
9982@cindex grafts
9983To address that, Guix implements @dfn{grafts}, a mechanism that allows
9984for fast deployment of critical updates without the costs associated
9985with a whole-distribution rebuild. The idea is to rebuild only the
9986package that needs to be patched, and then to ``graft'' it onto packages
9987explicitly installed by the user and that were previously referring to
9988the original package. The cost of grafting is typically very low, and
9989order of magnitudes lower than a full rebuild of the dependency chain.
9990
9991@cindex replacements of packages, for grafts
9992For instance, suppose a security update needs to be applied to Bash.
9993Guix developers will provide a package definition for the ``fixed''
9994Bash, say @var{bash-fixed}, in the usual way (@pxref{Defining
9995Packages}). Then, the original package definition is augmented with a
9996@code{replacement} field pointing to the package containing the bug fix:
9997
9998@example
9999(define bash
10000 (package
10001 (name "bash")
10002 ;; @dots{}
10003 (replacement bash-fixed)))
10004@end example
10005
10006From there on, any package depending directly or indirectly on Bash that
10007is installed will automatically be ``rewritten'' to refer to
10008@var{bash-fixed} instead of @var{bash}. This grafting process takes
10009time proportional to the size of the package, but expect less than a
10010minute for an ``average'' package on a recent machine.
10011
10012Currently, the graft and the package it replaces (@var{bash-fixed} and
10013@var{bash} in the example above) must have the exact same @code{name}
10014and @code{version} fields. This restriction mostly comes from the fact
10015that grafting works by patching files, including binary files, directly.
10016Other restrictions may apply: for instance, when adding a graft to a
10017package providing a shared library, the original shared library and its
10018replacement must have the same @code{SONAME} and be binary-compatible.
10019
10020
cf4a9129
LC
10021@node Package Modules
10022@section Package Modules
8451a568 10023
cf4a9129
LC
10024From a programming viewpoint, the package definitions of the
10025GNU distribution are provided by Guile modules in the @code{(gnu packages
10026@dots{})} name space@footnote{Note that packages under the @code{(gnu
10027packages @dots{})} module name space are not necessarily ``GNU
10028packages''. This module naming scheme follows the usual Guile module
10029naming convention: @code{gnu} means that these modules are distributed
10030as part of the GNU system, and @code{packages} identifies modules that
10031define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile
10032Reference Manual}). For instance, the @code{(gnu packages emacs)}
10033module exports a variable named @code{emacs}, which is bound to a
10034@code{<package>} object (@pxref{Defining Packages}).
113daf62 10035
300868ba 10036The @code{(gnu packages @dots{})} module name space is
cf4a9129
LC
10037automatically scanned for packages by the command-line tools. For
10038instance, when running @code{guix package -i emacs}, all the @code{(gnu
10039packages @dots{})} modules are scanned until one that exports a package
10040object whose name is @code{emacs} is found. This package search
10041facility is implemented in the @code{(gnu packages)} module.
113daf62 10042
300868ba 10043@cindex customization, of packages
8689901f 10044@cindex package module search path
cf4a9129 10045Users can store package definitions in modules with different
60142854 10046names---e.g., @code{(my-packages emacs)}@footnote{Note that the file
c95ded7e
LC
10047name and module name must match. For instance, the @code{(my-packages
10048emacs)} module must be stored in a @file{my-packages/emacs.scm} file
10049relative to the load path specified with @option{--load-path} or
10050@code{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,,
10051guile, GNU Guile Reference Manual}, for details.}. These package definitions
300868ba
LC
10052will not be visible by default. Thus, users can invoke commands such as
10053@command{guix package} and @command{guix build} have to be used with the
c95ded7e
LC
10054@code{-e} option so that they know where to find the package. Better
10055yet, they can use the
300868ba 10056@code{-L} option of these commands to make those modules visible
8689901f
LC
10057(@pxref{Invoking guix build, @code{--load-path}}), or define the
10058@code{GUIX_PACKAGE_PATH} environment variable. This environment
10059variable makes it easy to extend or customize the distribution and is
10060honored by all the user interfaces.
10061
10062@defvr {Environment Variable} GUIX_PACKAGE_PATH
10063This is a colon-separated list of directories to search for package
10064modules. Directories listed in this variable take precedence over the
10065distribution's own modules.
10066@end defvr
ef5dd60a 10067
cf4a9129
LC
10068The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}:
10069each package is built based solely on other packages in the
10070distribution. The root of this dependency graph is a small set of
10071@dfn{bootstrap binaries}, provided by the @code{(gnu packages
10072bootstrap)} module. For more information on bootstrapping,
081145cf 10073@pxref{Bootstrapping}.
ef5dd60a 10074
cf4a9129
LC
10075@node Packaging Guidelines
10076@section Packaging Guidelines
ef5dd60a 10077
cf4a9129
LC
10078The GNU distribution is nascent and may well lack some of your favorite
10079packages. This section describes how you can help make the distribution
10080grow. @xref{Contributing}, for additional information on how you can
10081help.
ef5dd60a 10082
cf4a9129
LC
10083Free software packages are usually distributed in the form of
10084@dfn{source code tarballs}---typically @file{tar.gz} files that contain
10085all the source files. Adding a package to the distribution means
10086essentially two things: adding a @dfn{recipe} that describes how to
10087build the package, including a list of other packages required to build
10088it, and adding @dfn{package meta-data} along with that recipe, such as a
10089description and licensing information.
ef5dd60a 10090
cf4a9129
LC
10091In Guix all this information is embodied in @dfn{package definitions}.
10092Package definitions provide a high-level view of the package. They are
10093written using the syntax of the Scheme programming language; in fact,
10094for each package we define a variable bound to the package definition,
10095and export that variable from a module (@pxref{Package Modules}).
10096However, in-depth Scheme knowledge is @emph{not} a prerequisite for
10097creating packages. For more information on package definitions,
081145cf 10098@pxref{Defining Packages}.
ef5dd60a 10099
cf4a9129
LC
10100Once a package definition is in place, stored in a file in the Guix
10101source tree, it can be tested using the @command{guix build} command
10102(@pxref{Invoking guix build}). For example, assuming the new package is
c71979f4
LC
10103called @code{gnew}, you may run this command from the Guix build tree
10104(@pxref{Running Guix Before It Is Installed}):
ef5dd60a
LC
10105
10106@example
cf4a9129 10107./pre-inst-env guix build gnew --keep-failed
ef5dd60a 10108@end example
ef5dd60a 10109
cf4a9129
LC
10110Using @code{--keep-failed} makes it easier to debug build failures since
10111it provides access to the failed build tree. Another useful
10112command-line option when debugging is @code{--log-file}, to access the
10113build log.
ef5dd60a 10114
cf4a9129
LC
10115If the package is unknown to the @command{guix} command, it may be that
10116the source file contains a syntax error, or lacks a @code{define-public}
10117clause to export the package variable. To figure it out, you may load
10118the module from Guile to get more information about the actual error:
ef5dd60a 10119
cf4a9129
LC
10120@example
10121./pre-inst-env guile -c '(use-modules (gnu packages gnew))'
10122@end example
ef5dd60a 10123
cf4a9129
LC
10124Once your package builds correctly, please send us a patch
10125(@pxref{Contributing}). Well, if you need help, we will be happy to
10126help you too. Once the patch is committed in the Guix repository, the
10127new package automatically gets built on the supported platforms by
2b1cee21 10128@url{http://hydra.gnu.org/jobset/gnu/master, our continuous integration
cf4a9129 10129system}.
ef5dd60a 10130
cf4a9129
LC
10131@cindex substituter
10132Users can obtain the new package definition simply by running
10133@command{guix pull} (@pxref{Invoking guix pull}). When
10134@code{hydra.gnu.org} is done building the package, installing the
10135package automatically downloads binaries from there
10136(@pxref{Substitutes}). The only place where human intervention is
10137needed is to review and apply the patch.
ef5dd60a 10138
ef5dd60a 10139
cf4a9129 10140@menu
ec0339cd
LC
10141* Software Freedom:: What may go into the distribution.
10142* Package Naming:: What's in a name?
10143* Version Numbers:: When the name is not enough.
cbd02397 10144* Synopses and Descriptions:: Helping users find the right package.
ec0339cd
LC
10145* Python Modules:: Taming the snake.
10146* Perl Modules:: Little pearls.
10147* Fonts:: Fond of fonts.
cf4a9129 10148@end menu
ef5dd60a 10149
cf4a9129
LC
10150@node Software Freedom
10151@subsection Software Freedom
ef5dd60a 10152
cf4a9129 10153@c Adapted from http://www.gnu.org/philosophy/philosophy.html.
c11a6eb1 10154
cf4a9129
LC
10155The GNU operating system has been developed so that users can have
10156freedom in their computing. GNU is @dfn{free software}, meaning that
10157users have the @url{http://www.gnu.org/philosophy/free-sw.html,four
10158essential freedoms}: to run the program, to study and change the program
10159in source code form, to redistribute exact copies, and to distribute
10160modified versions. Packages found in the GNU distribution provide only
10161software that conveys these four freedoms.
c11a6eb1 10162
cf4a9129
LC
10163In addition, the GNU distribution follow the
10164@url{http://www.gnu.org/distros/free-system-distribution-guidelines.html,free
10165software distribution guidelines}. Among other things, these guidelines
10166reject non-free firmware, recommendations of non-free software, and
10167discuss ways to deal with trademarks and patents.
ef5dd60a 10168
cf4a9129
LC
10169Some packages contain a small and optional subset that violates the
10170above guidelines, for instance because this subset is itself non-free
10171code. When that happens, the offending items are removed with
10172appropriate patches or code snippets in the package definition's
10173@code{origin} form (@pxref{Defining Packages}). That way, @code{guix
10174build --source} returns the ``freed'' source rather than the unmodified
10175upstream source.
ef5dd60a 10176
ef5dd60a 10177
cf4a9129
LC
10178@node Package Naming
10179@subsection Package Naming
ef5dd60a 10180
cf4a9129
LC
10181A package has actually two names associated with it:
10182First, there is the name of the @emph{Scheme variable}, the one following
10183@code{define-public}. By this name, the package can be made known in the
10184Scheme code, for instance as input to another package. Second, there is
10185the string in the @code{name} field of a package definition. This name
10186is used by package management commands such as
10187@command{guix package} and @command{guix build}.
ef5dd60a 10188
cf4a9129
LC
10189Both are usually the same and correspond to the lowercase conversion of
10190the project name chosen upstream, with underscores replaced with
10191hyphens. For instance, GNUnet is available as @code{gnunet}, and
10192SDL_net as @code{sdl-net}.
927097ef 10193
cf4a9129 10194We do not add @code{lib} prefixes for library packages, unless these are
081145cf 10195already part of the official project name. But @pxref{Python
cf4a9129
LC
10196Modules} and @ref{Perl Modules} for special rules concerning modules for
10197the Python and Perl languages.
927097ef 10198
1b366ee4 10199Font package names are handled differently, @pxref{Fonts}.
7fec52b7 10200
ef5dd60a 10201
cf4a9129
LC
10202@node Version Numbers
10203@subsection Version Numbers
ef5dd60a 10204
cf4a9129
LC
10205We usually package only the latest version of a given free software
10206project. But sometimes, for instance for incompatible library versions,
10207two (or more) versions of the same package are needed. These require
10208different Scheme variable names. We use the name as defined
10209in @ref{Package Naming}
10210for the most recent version; previous versions use the same name, suffixed
10211by @code{-} and the smallest prefix of the version number that may
10212distinguish the two versions.
ef5dd60a 10213
cf4a9129
LC
10214The name inside the package definition is the same for all versions of a
10215package and does not contain any version number.
ef5dd60a 10216
cf4a9129 10217For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:
ef5dd60a 10218
cf4a9129
LC
10219@example
10220(define-public gtk+
10221 (package
17d8e33f
ML
10222 (name "gtk+")
10223 (version "3.9.12")
10224 ...))
cf4a9129
LC
10225(define-public gtk+-2
10226 (package
17d8e33f
ML
10227 (name "gtk+")
10228 (version "2.24.20")
10229 ...))
cf4a9129
LC
10230@end example
10231If we also wanted GTK+ 3.8.2, this would be packaged as
10232@example
10233(define-public gtk+-3.8
10234 (package
17d8e33f
ML
10235 (name "gtk+")
10236 (version "3.8.2")
10237 ...))
cf4a9129 10238@end example
ef5dd60a 10239
880d647d
LC
10240@c See <https://lists.gnu.org/archive/html/guix-devel/2016-01/msg00425.html>,
10241@c for a discussion of what follows.
10242@cindex version number, for VCS snapshots
10243Occasionally, we package snapshots of upstream's version control system
10244(VCS) instead of formal releases. This should remain exceptional,
10245because it is up to upstream developers to clarify what the stable
10246release is. Yet, it is sometimes necessary. So, what should we put in
10247the @code{version} field?
10248
10249Clearly, we need to make the commit identifier of the VCS snapshot
10250visible in the version string, but we also need to make sure that the
10251version string is monotonically increasing so that @command{guix package
10252--upgrade} can determine which version is newer. Since commit
10253identifiers, notably with Git, are not monotonically increasing, we add
10254a revision number that we increase each time we upgrade to a newer
10255snapshot. The resulting version string looks like this:
10256
10257@example
102582.0.11-3.cabba9e
10259 ^ ^ ^
10260 | | `-- upstream commit ID
10261 | |
10262 | `--- Guix package revision
10263 |
10264latest upstream version
10265@end example
10266
10267It is a good idea to strip commit identifiers in the @code{version}
10268field to, say, 7 digits. It avoids an aesthetic annoyance (assuming
10269aesthetics have a role to play here) as well as problems related to OS
10270limits such as the maximum shebang length (127 bytes for the Linux
10271kernel.) It is best to use the full commit identifiers in
10272@code{origin}s, though, to avoid ambiguities.
10273
cbd02397
LC
10274@node Synopses and Descriptions
10275@subsection Synopses and Descriptions
10276
10277As we have seen before, each package in GNU@tie{}Guix includes a
10278synopsis and a description (@pxref{Defining Packages}). Synopses and
10279descriptions are important: They are what @command{guix package
10280--search} searches, and a crucial piece of information to help users
10281determine whether a given package suits their needs. Consequently,
10282packagers should pay attention to what goes into them.
10283
10284Synopses must start with a capital letter and must not end with a
10285period. They must not start with ``a'' or ``the'', which usually does
10286not bring anything; for instance, prefer ``File-frobbing tool'' over ``A
10287tool that frobs files''. The synopsis should say what the package
10288is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is
10289used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines
10290matching a pattern''.
10291
10292Keep in mind that the synopsis must be meaningful for a very wide
10293audience. For example, ``Manipulate alignments in the SAM format''
10294might make sense for a seasoned bioinformatics researcher, but might be
10295fairly unhelpful or even misleading to a non-specialized audience. It
10296is a good idea to come up with a synopsis that gives an idea of the
10297application domain of the package. In this example, this might give
10298something like ``Manipulate nucleotide sequence alignments'', which
10299hopefully gives the user a better idea of whether this is what they are
10300looking for.
10301
10302@cindex Texinfo markup, in package descriptions
10303Descriptions should take between five and ten lines. Use full
10304sentences, and avoid using acronyms without first introducing them.
10305Descriptions can include Texinfo markup, which is useful to introduce
10306ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or
ba7d6c76
ML
10307hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you
10308should be careful when using some characters for example @samp{@@} and
10309curly braces which are the basic special characters in Texinfo
10310(@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces
10311such as @command{guix package --show} take care of rendering it
10312appropriately.
cbd02397
LC
10313
10314Synopses and descriptions are translated by volunteers
10315@uref{http://translationproject.org/domain/guix-packages.html, at the
10316Translation Project} so that as many users as possible can read them in
10317their native language. User interfaces search them and display them in
10318the language specified by the current locale.
10319
10320Translation is a lot of work so, as a packager, please pay even more
10321attention to your synopses and descriptions as every change may entail
ba7d6c76 10322additional work for translators. In order to help them, it is possible
36743e71 10323to make recommendations or instructions visible to them by inserting
ba7d6c76
ML
10324special comments like this (@pxref{xgettext Invocation,,, gettext, GNU
10325Gettext}):
10326
10327@example
10328;; TRANSLATORS: "X11 resize-and-rotate" should not be translated.
10329(description "ARandR is designed to provide a simple visual front end
10330for the X11 resize-and-rotate (RandR) extension. @dots{}")
10331@end example
cbd02397 10332
ef5dd60a 10333
cf4a9129
LC
10334@node Python Modules
10335@subsection Python Modules
ef5dd60a 10336
cf4a9129
LC
10337We currently package Python 2 and Python 3, under the Scheme variable names
10338@code{python-2} and @code{python} as explained in @ref{Version Numbers}.
10339To avoid confusion and naming clashes with other programming languages, it
10340seems desirable that the name of a package for a Python module contains
10341the word @code{python}.
ef5dd60a 10342
cf4a9129
LC
10343Some modules are compatible with only one version of Python, others with both.
10344If the package Foo compiles only with Python 3, we name it
10345@code{python-foo}; if it compiles only with Python 2, we name it
10346@code{python2-foo}. If it is compatible with both versions, we create two
10347packages with the corresponding names.
ef5dd60a 10348
cf4a9129
LC
10349If a project already contains the word @code{python}, we drop this;
10350for instance, the module python-dateutil is packaged under the names
10351@code{python-dateutil} and @code{python2-dateutil}.
113daf62 10352
523e4896 10353
cf4a9129
LC
10354@node Perl Modules
10355@subsection Perl Modules
523e4896 10356
cf4a9129
LC
10357Perl programs standing for themselves are named as any other package,
10358using the lowercase upstream name.
10359For Perl packages containing a single class, we use the lowercase class name,
10360replace all occurrences of @code{::} by dashes and prepend the prefix
10361@code{perl-}.
10362So the class @code{XML::Parser} becomes @code{perl-xml-parser}.
10363Modules containing several classes keep their lowercase upstream name and
10364are also prepended by @code{perl-}. Such modules tend to have the word
10365@code{perl} somewhere in their name, which gets dropped in favor of the
10366prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}.
523e4896 10367
523e4896 10368
7fec52b7
AE
10369@node Fonts
10370@subsection Fonts
10371
10372For fonts that are in general not installed by a user for typesetting
10373purposes, or that are distributed as part of a larger software package,
10374we rely on the general packaging rules for software; for instance, this
10375applies to the fonts delivered as part of the X.Org system or fonts that
10376are part of TeX Live.
10377
10378To make it easier for a user to search for fonts, names for other packages
10379containing only fonts are constructed as follows, independently of the
10380upstream package name.
10381
10382The name of a package containing only one font family starts with
10383@code{font-}; it is followed by the foundry name and a dash @code{-}
10384if the foundry is known, and the font family name, in which spaces are
10385replaced by dashes (and as usual, all upper case letters are transformed
10386to lower case).
10387For example, the Gentium font family by SIL is packaged under the name
10388@code{font-sil-gentium}.
10389
10390For a package containing several font families, the name of the collection
10391is used in the place of the font family name.
10392For instance, the Liberation fonts consist of three families,
10393Liberation Sans, Liberation Serif and Liberation Mono.
10394These could be packaged separately under the names
10395@code{font-liberation-sans} and so on; but as they are distributed together
10396under a common name, we prefer to package them together as
10397@code{font-liberation}.
10398
10399In the case where several formats of the same font family or font collection
10400are packaged separately, a short form of the format, prepended by a dash,
10401is added to the package name. We use @code{-ttf} for TrueType fonts,
1b366ee4 10402@code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1
7fec52b7
AE
10403fonts.
10404
10405
b25937e3 10406
cf4a9129
LC
10407@node Bootstrapping
10408@section Bootstrapping
b25937e3 10409
cf4a9129 10410@c Adapted from the ELS 2013 paper.
b25937e3 10411
cf4a9129 10412@cindex bootstrapping
7889394e 10413
cf4a9129
LC
10414Bootstrapping in our context refers to how the distribution gets built
10415``from nothing''. Remember that the build environment of a derivation
10416contains nothing but its declared inputs (@pxref{Introduction}). So
10417there's an obvious chicken-and-egg problem: how does the first package
10418get built? How does the first compiler get compiled? Note that this is
10419a question of interest only to the curious hacker, not to the regular
10420user, so you can shamelessly skip this section if you consider yourself
10421a ``regular user''.
72b9d60d 10422
cf4a9129
LC
10423@cindex bootstrap binaries
10424The GNU system is primarily made of C code, with libc at its core. The
10425GNU build system itself assumes the availability of a Bourne shell and
10426command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and
10427`grep'. Furthermore, build programs---programs that run
10428@code{./configure}, @code{make}, etc.---are written in Guile Scheme
10429(@pxref{Derivations}). Consequently, to be able to build anything at
10430all, from scratch, Guix relies on pre-built binaries of Guile, GCC,
10431Binutils, libc, and the other packages mentioned above---the
10432@dfn{bootstrap binaries}.
72b9d60d 10433
cf4a9129
LC
10434These bootstrap binaries are ``taken for granted'', though we can also
10435re-create them if needed (more on that later).
72b9d60d 10436
cf4a9129 10437@unnumberedsubsec Preparing to Use the Bootstrap Binaries
c79d54fe 10438
cf4a9129
LC
10439@c As of Emacs 24.3, Info-mode displays the image, but since it's a
10440@c large image, it's hard to scroll. Oh well.
10441@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}
523e4896 10442
cf4a9129
LC
10443The figure above shows the very beginning of the dependency graph of the
10444distribution, corresponding to the package definitions of the @code{(gnu
d33fa0c7
LC
10445packages bootstrap)} module. A similar figure can be generated with
10446@command{guix graph} (@pxref{Invoking guix graph}), along the lines of:
10447
10448@example
10449guix graph -t derivation \
10450 -e '(@@@@ (gnu packages bootstrap) %bootstrap-gcc)' \
10451 | dot -Tps > t.ps
10452@end example
10453
10454At this level of detail, things are
cf4a9129
LC
10455slightly complex. First, Guile itself consists of an ELF executable,
10456along with many source and compiled Scheme files that are dynamically
10457loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz}
10458tarball shown in this graph. This tarball is part of Guix's ``source''
10459distribution, and gets inserted into the store with @code{add-to-store}
10460(@pxref{The Store}).
2e7b5cea 10461
cf4a9129
LC
10462But how do we write a derivation that unpacks this tarball and adds it
10463to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv}
10464derivation---the first one that gets built---uses @code{bash} as its
10465builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls
10466@code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar},
10467@file{xz}, and @file{mkdir} are statically-linked binaries, also part of
10468the Guix source distribution, whose sole purpose is to allow the Guile
10469tarball to be unpacked.
fb729425 10470
cf4a9129
LC
10471Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning
10472Guile that can be used to run subsequent build programs. Its first task
10473is to download tarballs containing the other pre-built binaries---this
10474is what the @code{.tar.xz.drv} derivations do. Guix modules such as
10475@code{ftp-client.scm} are used for this purpose. The
10476@code{module-import.drv} derivations import those modules in a directory
10477in the store, using the original layout. The
10478@code{module-import-compiled.drv} derivations compile those modules, and
10479write them in an output directory with the right layout. This
10480corresponds to the @code{#:modules} argument of
10481@code{build-expression->derivation} (@pxref{Derivations}).
fb729425 10482
cf4a9129
LC
10483Finally, the various tarballs are unpacked by the
10484derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv},
10485etc., at which point we have a working C tool chain.
fb729425 10486
fb729425 10487
cf4a9129 10488@unnumberedsubsec Building the Build Tools
523e4896 10489
cf4a9129
LC
10490Bootstrapping is complete when we have a full tool chain that does not
10491depend on the pre-built bootstrap tools discussed above. This
10492no-dependency requirement is verified by checking whether the files of
10493the final tool chain contain references to the @file{/gnu/store}
10494directories of the bootstrap inputs. The process that leads to this
10495``final'' tool chain is described by the package definitions found in
1f6f57df 10496the @code{(gnu packages commencement)} module.
df2ce343 10497
d33fa0c7
LC
10498The @command{guix graph} command allows us to ``zoom out'' compared to
10499the graph above, by looking at the level of package objects instead of
10500individual derivations---remember that a package may translate to
10501several derivations, typically one derivation to download its source,
10502one to build the Guile modules it needs, and one to actually build the
10503package from source. The command:
10504
10505@example
10506guix graph -t bag \
10507 -e '(@@@@ (gnu packages commencement)
10508 glibc-final-with-bootstrap-bash)' | dot -Tps > t.ps
10509@end example
10510
10511@noindent
10512produces the dependency graph leading to the ``final'' C
10513library@footnote{You may notice the @code{glibc-intermediate} label,
10514suggesting that it is not @emph{quite} final, but as a good
10515approximation, we will consider it final.}, depicted below.
10516
10517@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}
10518
cf4a9129
LC
10519@c See <http://lists.gnu.org/archive/html/gnu-system-discuss/2012-10/msg00000.html>.
10520The first tool that gets built with the bootstrap binaries is
d33fa0c7
LC
10521GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite
10522for all the following packages. From there Findutils and Diffutils get
10523built.
523e4896 10524
cf4a9129
LC
10525Then come the first-stage Binutils and GCC, built as pseudo cross
10526tools---i.e., with @code{--target} equal to @code{--host}. They are
10527used to build libc. Thanks to this cross-build trick, this libc is
10528guaranteed not to hold any reference to the initial tool chain.
4af2447e 10529
d33fa0c7
LC
10530From there the final Binutils and GCC (not shown above) are built.
10531GCC uses @code{ld}
cf4a9129
LC
10532from the final Binutils, and links programs against the just-built libc.
10533This tool chain is used to build the other packages used by Guix and by
10534the GNU Build System: Guile, Bash, Coreutils, etc.
4af2447e 10535
cf4a9129
LC
10536And voilà! At this point we have the complete set of build tools that
10537the GNU Build System expects. These are in the @code{%final-inputs}
dd164244
MW
10538variable of the @code{(gnu packages commencement)} module, and are
10539implicitly used by any package that uses @code{gnu-build-system}
1f6f57df 10540(@pxref{Build Systems, @code{gnu-build-system}}).
4af2447e 10541
4af2447e 10542
cf4a9129 10543@unnumberedsubsec Building the Bootstrap Binaries
4af2447e 10544
cf4a9129
LC
10545Because the final tool chain does not depend on the bootstrap binaries,
10546those rarely need to be updated. Nevertheless, it is useful to have an
10547automated way to produce them, should an update occur, and this is what
10548the @code{(gnu packages make-bootstrap)} module provides.
4af2447e 10549
cf4a9129
LC
10550The following command builds the tarballs containing the bootstrap
10551binaries (Guile, Binutils, GCC, libc, and a tarball containing a mixture
10552of Coreutils and other basic command-line tools):
4b2615e1 10553
cf4a9129
LC
10554@example
10555guix build bootstrap-tarballs
10556@end example
10557
10558The generated tarballs are those that should be referred to in the
10559@code{(gnu packages bootstrap)} module mentioned at the beginning of
10560this section.
10561
10562Still here? Then perhaps by now you've started to wonder: when do we
10563reach a fixed point? That is an interesting question! The answer is
10564unknown, but if you would like to investigate further (and have
10565significant computational and storage resources to do so), then let us
10566know.
10567
10568@node Porting
10569@section Porting to a New Platform
10570
10571As discussed above, the GNU distribution is self-contained, and
10572self-containment is achieved by relying on pre-built ``bootstrap
10573binaries'' (@pxref{Bootstrapping}). These binaries are specific to an
10574operating system kernel, CPU architecture, and application binary
10575interface (ABI). Thus, to port the distribution to a platform that is
10576not yet supported, one must build those bootstrap binaries, and update
10577the @code{(gnu packages bootstrap)} module to use them on that platform.
10578
10579Fortunately, Guix can @emph{cross compile} those bootstrap binaries.
10580When everything goes well, and assuming the GNU tool chain supports the
10581target platform, this can be as simple as running a command like this
10582one:
10583
10584@example
10585guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs
10586@end example
10587
1c0c417d
LC
10588For this to work, the @code{glibc-dynamic-linker} procedure in
10589@code{(gnu packages bootstrap)} must be augmented to return the right
10590file name for libc's dynamic linker on that platform; likewise,
10591@code{system->linux-architecture} in @code{(gnu packages linux)} must be
10592taught about the new platform.
10593
cf4a9129 10594Once these are built, the @code{(gnu packages bootstrap)} module needs
1c0c417d
LC
10595to be updated to refer to these binaries on the target platform. That
10596is, the hashes and URLs of the bootstrap tarballs for the new platform
10597must be added alongside those of the currently supported platforms. The
10598bootstrap Guile tarball is treated specially: it is expected to be
10599available locally, and @file{gnu-system.am} has rules do download it for
10600the supported architectures; a rule for the new platform must be added
10601as well.
cf4a9129
LC
10602
10603In practice, there may be some complications. First, it may be that the
10604extended GNU triplet that specifies an ABI (like the @code{eabi} suffix
10605above) is not recognized by all the GNU tools. Typically, glibc
10606recognizes some of these, whereas GCC uses an extra @code{--with-abi}
10607configure flag (see @code{gcc.scm} for examples of how to handle this).
10608Second, some of the required packages could fail to build for that
10609platform. Lastly, the generated binaries could be broken for some
10610reason.
4af2447e 10611
9bf3c1a7 10612@c *********************************************************************
8c01b9d0 10613@include contributing.texi
c78bd12b 10614
568717fd
LC
10615@c *********************************************************************
10616@node Acknowledgments
10617@chapter Acknowledgments
10618
136787cb
LC
10619Guix is based on the @uref{http://nixos.org/nix/, Nix package manager},
10620which was designed and
4c7ac9aa
LC
10621implemented by Eelco Dolstra, with contributions from other people (see
10622the @file{nix/AUTHORS} file in Guix.) Nix pioneered functional package
568717fd
LC
10623management, and promoted unprecedented features, such as transactional
10624package upgrades and rollbacks, per-user profiles, and referentially
10625transparent build processes. Without this work, Guix would not exist.
10626
10627The Nix-based software distributions, Nixpkgs and NixOS, have also been
10628an inspiration for Guix.
10629
4c7ac9aa
LC
10630GNU@tie{}Guix itself is a collective work with contributions from a
10631number of people. See the @file{AUTHORS} file in Guix for more
10632information on these fine people. The @file{THANKS} file lists people
10633who have helped by reporting bugs, taking care of the infrastructure,
10634providing artwork and themes, making suggestions, and more---thank you!
10635
10636
568717fd
LC
10637@c *********************************************************************
10638@node GNU Free Documentation License
10639@appendix GNU Free Documentation License
10640
10641@include fdl-1.3.texi
10642
10643@c *********************************************************************
10644@node Concept Index
10645@unnumbered Concept Index
10646@printindex cp
10647
a85b83d2
LC
10648@node Programming Index
10649@unnumbered Programming Index
10650@syncodeindex tp fn
10651@syncodeindex vr fn
568717fd
LC
10652@printindex fn
10653
10654@bye
10655
10656@c Local Variables:
10657@c ispell-local-dictionary: "american";
10658@c End: