store: 'path-info-deriver' is #f when there is no deriver.
[jackhill/guix/guix.git] / doc / guix.texi
CommitLineData
568717fd
LC
1\input texinfo
2@c -*-texinfo-*-
3
4@c %**start of header
5@setfilename guix.info
6@documentencoding UTF-8
f8348b91 7@settitle GNU Guix Reference Manual
568717fd
LC
8@c %**end of header
9
10@include version.texi
7df7a74e
NK
11
12@copying
db5a9444 13Copyright @copyright{} 2012, 2013, 2014, 2015, 2016 Ludovic Courtès@*
f97c9175 14Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@*
87eafdbd 15Copyright @copyright{} 2013 Nikita Karetnikov@*
8c01b9d0
ML
16Copyright @copyright{} 2015 Mathieu Lirzin@*
17Copyright @copyright{} 2014 Pierre-Antoine Rault@*
97d76250
LF
18Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@*
19Copyright @copyright{} 2015, 2016 Leo Famulari
7df7a74e
NK
20
21Permission is granted to copy, distribute and/or modify this document
22under the terms of the GNU Free Documentation License, Version 1.3 or
23any later version published by the Free Software Foundation; with no
24Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
25copy of the license is included in the section entitled ``GNU Free
26Documentation License''.
27@end copying
568717fd 28
eeaf4427 29@dircategory Package management
568717fd
LC
30@direntry
31* guix: (guix). Guix, the functional package manager.
e49951eb 32* guix package: (guix)Invoking guix package
eeaf4427 33 Managing packages with Guix.
e49951eb 34* guix build: (guix)Invoking guix build
568717fd 35 Building packages with Guix.
054e8576
LC
36* guix system: (guix)Invoking guix system
37 Managing the operating system configuration.
568717fd 38@end direntry
568717fd 39
372c4bbc
DT
40@dircategory Software development
41@direntry
42* guix environment: (guix)Invoking guix environment
43 Building development environments with Guix.
44@end direntry
45
568717fd 46@titlepage
7730d112
LC
47@title GNU Guix Reference Manual
48@subtitle Using the GNU Guix Functional Package Manager
2cbed07e 49@author The GNU Guix Developers
568717fd
LC
50
51@page
52@vskip 0pt plus 1filll
53Edition @value{EDITION} @*
54@value{UPDATED} @*
55
7df7a74e 56@insertcopying
568717fd
LC
57@end titlepage
58
568717fd
LC
59@contents
60
61@c *********************************************************************
62@node Top
f8348b91 63@top GNU Guix
568717fd 64
f8348b91
LC
65This document describes GNU Guix version @value{VERSION}, a functional
66package management tool written for the GNU system.
568717fd
LC
67
68@menu
69* Introduction:: What is Guix about?
bd5e766b 70* Installation:: Installing Guix.
eeaf4427 71* Package Management:: Package installation, upgrade, etc.
c554de89 72* Emacs Interface:: Using Guix from Emacs.
568717fd
LC
73* Programming Interface:: Using Guix in Scheme.
74* Utilities:: Package management commands.
a1ba8475 75* GNU Distribution:: Software for your friendly GNU system.
9bf3c1a7 76* Contributing:: Your help needed!
568717fd
LC
77
78* Acknowledgments:: Thanks!
79* GNU Free Documentation License:: The license of this manual.
80* Concept Index:: Concepts.
a85b83d2 81* Programming Index:: Data types, functions, and variables.
aaa3eaa9
LC
82
83@detailmenu
84 --- The Detailed Node Listing ---
85
86Installation
87
1b2b8177 88* Binary Installation:: Getting Guix running in no time!
aaa3eaa9 89* Requirements:: Software needed to build and run Guix.
ec0339cd 90* Running the Test Suite:: Testing Guix.
aaa3eaa9
LC
91* Setting Up the Daemon:: Preparing the build daemon's environment.
92* Invoking guix-daemon:: Running the build daemon.
0e2d0213 93* Application Setup:: Application-specific setup.
aaa3eaa9
LC
94
95Setting Up the Daemon
96
97* Build Environment Setup:: Preparing the isolated build environment.
98* Daemon Offload Setup:: Offloading builds to remote machines.
99
100Package Management
101
102* Features:: How Guix will make your life brighter.
103* Invoking guix package:: Package installation, removal, etc.
aaa3eaa9
LC
104* Substitutes:: Downloading pre-built binaries.
105* Packages with Multiple Outputs:: Single source package, multiple outputs.
106* Invoking guix gc:: Running the garbage collector.
107* Invoking guix pull:: Fetching the latest Guix and distribution.
108* Invoking guix archive:: Exporting and importing store files.
109
c554de89
AK
110Emacs Interface
111
112* Initial Setup: Emacs Initial Setup. Preparing @file{~/.emacs}.
113* Package Management: Emacs Package Management. Managing packages and generations.
687c9bc0 114* Licenses: Emacs Licenses. Interface for licenses of Guix packages.
9b0afb0d 115* Popup Interface: Emacs Popup Interface. Magit-like interface for guix commands.
c554de89 116* Prettify Mode: Emacs Prettify. Abbreviating @file{/gnu/store/@dots{}} file names.
34850cd5 117* Build Log Mode: Emacs Build Log. Highlighting Guix build logs.
187f80c6
AK
118* Completions: Emacs Completions. Completing @command{guix} shell command.
119* Development: Emacs Development. Tools for Guix developers.
32950fc8 120* Hydra: Emacs Hydra. Interface for Guix build farm.
c554de89 121
aaa3eaa9
LC
122Programming Interface
123
124* Defining Packages:: Defining new packages.
125* Build Systems:: Specifying how packages are built.
126* The Store:: Manipulating the package store.
127* Derivations:: Low-level interface to package derivations.
128* The Store Monad:: Purely functional interface to the store.
129* G-Expressions:: Manipulating build expressions.
130
92492b23
LC
131Defining Packages
132
133* package Reference:: The package data type.
134* origin Reference:: The origin data type.
135
aaa3eaa9
LC
136Utilities
137
138* Invoking guix build:: Building packages from the command line.
fcc58db6 139* Invoking guix edit:: Editing package definitions.
aaa3eaa9
LC
140* Invoking guix download:: Downloading a file and printing its hash.
141* Invoking guix hash:: Computing the cryptographic hash of a file.
142* Invoking guix import:: Importing package definitions.
143* Invoking guix refresh:: Updating package definitions.
144* Invoking guix lint:: Finding errors in package definitions.
fcc58db6 145* Invoking guix size:: Profiling disk usage.
88856916 146* Invoking guix graph:: Visualizing the graph of packages.
aaa3eaa9 147* Invoking guix environment:: Setting up development environments.
aff8ce7c 148* Invoking guix publish:: Sharing substitutes.
d23c20f1 149* Invoking guix challenge:: Challenging substitute servers.
32efa254 150* Invoking guix container:: Process isolation.
aaa3eaa9
LC
151
152GNU Distribution
153
154* System Installation:: Installing the whole operating system.
35ed9306 155* System Configuration:: Configuring the operating system.
aaa3eaa9
LC
156* Installing Debugging Files:: Feeding the debugger.
157* Security Updates:: Deploying security fixes quickly.
158* Package Modules:: Packages from the programmer's viewpoint.
159* Packaging Guidelines:: Growing the distribution.
160* Bootstrapping:: GNU/Linux built from scratch.
161* Porting:: Targeting another platform or kernel.
162
163System Configuration
164
165* Using the Configuration System:: Customizing your GNU system.
166* operating-system Reference:: Detail of operating-system declarations.
167* File Systems:: Configuring file system mounts.
168* Mapped Devices:: Block device extra processing.
169* User Accounts:: Specifying user accounts.
598e19dc 170* Locales:: Language and cultural convention settings.
aaa3eaa9
LC
171* Services:: Specifying system services.
172* Setuid Programs:: Programs running with root privileges.
1b2b8177 173* X.509 Certificates:: Authenticating HTTPS servers.
996ed739 174* Name Service Switch:: Configuring libc's name service switch.
aaa3eaa9
LC
175* Initial RAM Disk:: Linux-Libre bootstrapping.
176* GRUB Configuration:: Configuring the boot loader.
177* Invoking guix system:: Instantiating a system configuration.
97d76250 178* Running GuixSD in a VM:: How to run GuixSD in a virtual machine.
aaa3eaa9
LC
179* Defining Services:: Adding new service definitions.
180
181Services
182
183* Base Services:: Essential system services.
184* Networking Services:: Network setup, SSH daemon, etc.
185* X Window:: Graphical display.
1b2b8177
LC
186* Desktop Services:: D-Bus and desktop services.
187* Database Services:: SQL databases.
d8c18af8 188* Mail Services:: IMAP, POP3, SMTP, and all that.
cbd02397 189* Web Services:: Web servers.
aa4ed923 190* Various Services:: Other services.
aaa3eaa9 191
0adfe95a
LC
192Defining Services
193
194* Service Composition:: The model for composing services.
195* Service Types and Services:: Types and services.
196* Service Reference:: API reference.
dd17bc38 197* Shepherd Services:: A particular type of service.
0adfe95a 198
aaa3eaa9
LC
199Packaging Guidelines
200
ec0339cd
LC
201* Software Freedom:: What may go into the distribution.
202* Package Naming:: What's in a name?
203* Version Numbers:: When the name is not enough.
cbd02397 204* Synopses and Descriptions:: Helping users find the right package.
ec0339cd
LC
205* Python Modules:: Taming the snake.
206* Perl Modules:: Little pearls.
207* Fonts:: Fond of fonts.
aaa3eaa9 208
8c01b9d0
ML
209Contributing
210
211* Building from Git:: The latest and greatest.
212* Running Guix Before It Is Installed:: Hacker tricks.
213* The Perfect Setup:: The right tools.
214* Coding Style:: Hygiene of the contributor.
215* Submitting Patches:: Share your work.
216
217Coding Style
218
219* Programming Paradigm:: How to compose your elements.
220* Modules:: Where to store your code?
221* Data Types and Pattern Matching:: Implementing data structures.
222* Formatting Code:: Writing conventions.
223
aaa3eaa9 224@end detailmenu
568717fd
LC
225@end menu
226
227@c *********************************************************************
228@node Introduction
229@chapter Introduction
230
c80e7e55
LC
231GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks''
232using the international phonetic alphabet (IPA).} is a functional
233package management tool for the GNU system. Package management consists
4bfc4ea3
NK
234of all activities that relate to building packages from sources,
235honoring their build-time and run-time dependencies,
c80e7e55
LC
236installing packages in user environments, upgrading installed packages
237to new versions or rolling back to a previous set, removing unused
238software packages, etc.
568717fd
LC
239
240@cindex functional package management
241The term @dfn{functional} refers to a specific package management
136787cb
LC
242discipline pioneered by Nix (@pxref{Acknowledgments}).
243In Guix, the package build and installation process is seen
4bfc4ea3
NK
244as a function, in the mathematical sense. That function takes inputs,
245such as build scripts, a compiler, and libraries, and
246returns an installed package. As a pure function, its result depends
568717fd
LC
247solely on its inputs---for instance, it cannot refer to software or
248scripts that were not explicitly passed as inputs. A build function
4bfc4ea3 249always produces the same result when passed a given set of inputs. It
f97c9175 250cannot alter the environment of the running system in
568717fd
LC
251any way; for instance, it cannot create, modify, or delete files outside
252of its build and installation directories. This is achieved by running
e900c503 253build processes in isolated environments (or @dfn{containers}), where only their
4bfc4ea3 254explicit inputs are visible.
568717fd 255
e531ac2a 256@cindex store
568717fd 257The result of package build functions is @dfn{cached} in the file
e531ac2a 258system, in a special directory called @dfn{the store} (@pxref{The
f97c9175 259Store}). Each package is installed in a directory of its own in the
834129e0 260store---by default under @file{/gnu/store}. The directory name contains
568717fd
LC
261a hash of all the inputs used to build that package; thus, changing an
262input yields a different directory name.
263
f97c9175
AE
264This approach is the foundation for the salient features of Guix: support
265for transactional package upgrade and rollback, per-user installation, and
eeaf4427 266garbage collection of packages (@pxref{Features}).
568717fd 267
4bfc4ea3 268Guix has a command-line interface, which allows users to build, install,
568717fd 269upgrade, and remove packages, as well as a Scheme programming interface.
568717fd 270
3ca2731c 271@cindex Guix System Distribution
4705641f 272@cindex GuixSD
a1ba8475 273Last but not least, Guix is used to build a distribution of the GNU
3ca2731c 274system, with many GNU and non-GNU free software packages. The Guix
4705641f
LC
275System Distribution, or GNU@tie{}GuixSD, takes advantage of the core
276properties of Guix at the system level. With GuixSD, users
3ca2731c
LC
277@emph{declare} all aspects of the operating system configuration, and
278Guix takes care of instantiating that configuration in a reproducible,
279stateless fashion. @xref{GNU Distribution}.
a1ba8475 280
bd5e766b
LC
281@c *********************************************************************
282@node Installation
283@chapter Installation
284
48febeb8
LC
285GNU Guix is available for download from its website at
286@url{http://www.gnu.org/software/guix/}. This section describes the
287software requirements of Guix, as well as how to install it and get
288ready to use it.
bd5e766b 289
5af6de3e
LC
290Note that this section is concerned with the installation of the package
291manager, which can be done on top of a running GNU/Linux system. If,
292instead, you want to install the complete GNU operating system,
6621cdb6 293@pxref{System Installation}.
5af6de3e 294
bd5e766b 295@menu
09722b11 296* Binary Installation:: Getting Guix running in no time!
bd5e766b 297* Requirements:: Software needed to build and run Guix.
ec0339cd 298* Running the Test Suite:: Testing Guix.
bd5e766b
LC
299* Setting Up the Daemon:: Preparing the build daemon's environment.
300* Invoking guix-daemon:: Running the build daemon.
0e2d0213 301* Application Setup:: Application-specific setup.
bd5e766b
LC
302@end menu
303
09722b11
LC
304@node Binary Installation
305@section Binary Installation
306
307This section describes how to install Guix on an arbitrary system from a
308self-contained tarball providing binaries for Guix and for all its
309dependencies. This is often quicker than installing from source, which
310is described in the next sections. The only requirement is to have
311GNU@tie{}tar and Xz.
312
313Installing goes along these lines:
314
315@enumerate
316@item
317Download the binary tarball from
daa8922a
LC
318@indicateurl{ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz},
319where @var{system} is @code{x86_64-linux} for an @code{x86_64} machine
320already running the kernel Linux, and so on.
321
322Make sure to download the associated @file{.sig} file and to verify the
323authenticity of the tarball against it, along these lines:
324
325@example
326$ wget ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz.sig
327$ gpg --verify guix-binary-@value{VERSION}.@var{system}.tar.xz.sig
328@end example
329
f97c9175 330If that command fails because you do not have the required public key,
daa8922a
LC
331then run this command to import it:
332
333@example
334$ gpg --keyserver keys.gnupg.net --recv-keys 3D9AEBB5
335@end example
336
337@noindent
338and rerun the @code{gpg --verify} command.
09722b11
LC
339
340@item
341As @code{root}, run:
342
343@example
5dc42964 344# cd /tmp
254b1c2e
LC
345# tar --warning=no-timestamp -xf \
346 guix-binary-@value{VERSION}.@var{system}.tar.xz
5dc42964 347# mv var/guix /var/ && mv gnu /
09722b11
LC
348@end example
349
7acd3439
LC
350This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}.
351The latter contains a ready-to-use profile for @code{root} (see next
352step.)
09722b11 353
5dc3ce5f
LC
354Do @emph{not} unpack the tarball on a working Guix system since that
355would overwrite its own essential files.
356
254b1c2e 357The @code{--warning=no-timestamp} option makes sure GNU@tie{}tar does
e9ba6357
LC
358not emit warnings about ``implausibly old time stamps'' (such
359warnings were triggered by GNU@tie{}tar 1.26 and older; recent
360versions are fine.)
361They stem from the fact that all the
254b1c2e
LC
362files in the archive have their modification time set to zero (which
363means January 1st, 1970.) This is done on purpose to make sure the
364archive content is independent of its creation time, thus making it
365reproducible.
366
7acd3439
LC
367@item
368Make @code{root}'s profile available under @file{~/.guix-profile}:
369
370@example
371# ln -sf /var/guix/profiles/per-user/root/guix-profile \
372 ~root/.guix-profile
373@end example
374
43c33047
LC
375@item
376Create the group and user accounts for build users as explained below
377(@pxref{Build Environment Setup}).
378
09722b11 379@item
bf98aea9 380Run the daemon, and set it to automatically start on boot.
c8e26887 381
bf98aea9
LC
382If your host distro uses the systemd init system, this can be achieved
383with these commands:
c8e26887
GC
384
385@example
386# cp ~root/.guix-profile/lib/systemd/system/guix-daemon.service \
387 /etc/systemd/system/
388# systemctl start guix-daemon && systemctl enable guix-daemon
389@end example
390
391If your host distro uses the Upstart init system:
09722b11
LC
392
393@example
c8e26887 394# cp ~root/.guix-profile/lib/upstart/system/guix-daemon.conf /etc/init/
bf98aea9 395# start guix-daemon
09722b11
LC
396@end example
397
c8e26887
GC
398Otherwise, you can still start the daemon manually with:
399
400@example
401# ~root/.guix-profile/bin/guix-daemon --build-users-group=guixbuild
402@end example
d2825c96 403
09722b11
LC
404@item
405Make the @command{guix} command available to other users on the machine,
406for instance with:
407
408@example
409# mkdir -p /usr/local/bin
410# cd /usr/local/bin
d72d05f9 411# ln -s /var/guix/profiles/per-user/root/guix-profile/bin/guix
09722b11 412@end example
39f8ed14 413
aca738f3
LC
414It is also a good idea to make the Info version of this manual available
415there:
416
417@example
418# mkdir -p /usr/local/share/info
419# cd /usr/local/share/info
420# for i in /var/guix/profiles/per-user/root/guix-profile/share/info/* ;
421 do ln -s $i ; done
422@end example
423
424That way, assuming @file{/usr/local/share/info} is in the search path,
425running @command{info guix} will open this manual (@pxref{Other Info
426Directories,,, texinfo, GNU Texinfo}, for more details on changing the
427Info search path.)
428
39f8ed14
LC
429@item
430To use substitutes from @code{hydra.gnu.org} (@pxref{Substitutes}),
431authorize them:
432
433@example
7acd3439 434# guix archive --authorize < ~root/.guix-profile/share/guix/hydra.gnu.org.pub
39f8ed14 435@end example
09722b11
LC
436@end enumerate
437
bf98aea9 438This completes root-level install of Guix. Each user will need to
c8e26887
GC
439perform additional steps to make their Guix envionment ready for use,
440@pxref{Application Setup}.
09722b11 441
c8e26887
GC
442You can confirm that Guix is working by installing a sample package into
443the root profile:
09722b11
LC
444
445@example
c8e26887 446# guix package -i hello
09722b11
LC
447@end example
448
c8e26887
GC
449The @code{guix} package must remain available in @code{root}'s profile,
450or it would become subject to garbage collection---in which case you
451would find yourself badly handicapped by the lack of the @command{guix}
bf98aea9
LC
452command. In other words, do not remove @code{guix} by running
453@code{guix package -r guix}.
454
455The binary installation tarball can be (re)produced and verified simply
456by running the following command in the Guix source tree:
457
458@example
459make guix-binary.@var{system}.tar.xz
460@end example
c8e26887 461
09722b11 462
bd5e766b
LC
463@node Requirements
464@section Requirements
465
09722b11
LC
466This section lists requirements when building Guix from source. The
467build procedure for Guix is the same as for other GNU software, and is
468not covered here. Please see the files @file{README} and @file{INSTALL}
469in the Guix source tree for additional details.
470
bd5e766b
LC
471GNU Guix depends on the following packages:
472
473@itemize
47c66da0 474@item @url{http://gnu.org/software/guile/, GNU Guile}, version 2.0.7 or later;
288dca55 475@item @url{http://gnupg.org/, GNU libgcrypt};
f0b98b84 476@item @url{http://www.gnu.org/software/make/, GNU Make}.
8a96bd4b
ID
477@end itemize
478
479The following dependencies are optional:
480
481@itemize
288dca55 482@item
8a96bd4b 483Installing
288dca55 484@url{http://savannah.nongnu.org/projects/guile-json/, Guile-JSON} will
2f7d2d91
LC
485allow you to use the @command{guix import pypi} command (@pxref{Invoking
486guix import}). It is of
288dca55 487interest primarily for developers and not for casual users.
8a96bd4b
ID
488@item
489Installing @uref{http://gnutls.org/, GnuTLS-Guile} will
490allow you to access @code{https} URLs with the @command{guix download}
d45dc6da
EB
491command (@pxref{Invoking guix download}), the @command{guix import pypi}
492command, and the @command{guix import cpan} command. This is primarily
493of interest to developers. @xref{Guile Preparations, how to install the
494GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}.
bd5e766b
LC
495@end itemize
496
497Unless @code{--disable-daemon} was passed to @command{configure}, the
498following packages are also needed:
499
500@itemize
368d08f7
LC
501@item @url{http://sqlite.org, SQLite 3};
502@item @url{http://www.bzip.org, libbz2};
503@item @url{http://gcc.gnu.org, GCC's g++}, with support for the
504C++11 standard.
bd5e766b
LC
505@end itemize
506
4bfc4ea3
NK
507When a working installation of @url{http://nixos.org/nix/, the Nix package
508manager} is available, you
bd5e766b 509can instead configure Guix with @code{--disable-daemon}. In that case,
4bfc4ea3 510Nix replaces the three dependencies above.
bd5e766b 511
b22a12fd
LC
512Guix is compatible with Nix, so it is possible to share the same store
513between both. To do so, you must pass @command{configure} not only the
514same @code{--with-store-dir} value, but also the same
4bfc4ea3
NK
515@code{--localstatedir} value. The latter is essential because it
516specifies where the database that stores metadata about the store is
834129e0 517located, among other things. The default values for Nix are
b22a12fd 518@code{--with-store-dir=/nix/store} and @code{--localstatedir=/nix/var}.
4bfc4ea3
NK
519Note that @code{--disable-daemon} is not required if
520your goal is to share the store with Nix.
b22a12fd 521
ec0339cd
LC
522@node Running the Test Suite
523@section Running the Test Suite
524
525After a successful @command{configure} and @code{make} run, it is a good
526idea to run the test suite. It can help catch issues with the setup or
527environment, or bugs in Guix itself---and really, reporting test
528failures is a good way to help improve the software. To run the test
529suite, type:
530
531@example
532make check
533@end example
534
535Test cases can run in parallel: you can use the @code{-j} option of
536GNU@tie{}make to speed things up. The first run may take a few minutes
537on a recent machine; subsequent runs will be faster because the store
538that is created for test purposes will already have various things in
539cache.
540
a887fd8d
LC
541It is also possible to run a subset of the tests by defining the
542@code{TESTS} makefile variable as in this example:
543
544@example
545make check TESTS="tests/store.scm tests/cpio.scm"
546@end example
547
ec0339cd
LC
548Upon failure, please email @email{bug-guix@@gnu.org} and attach the
549@file{test-suite.log} file. When @file{tests/@var{something}.scm}
550fails, please also attach the @file{@var{something}.log} file available
551in the top-level build directory. Please specify the Guix version being
552used as well as version numbers of the dependencies
553(@pxref{Requirements}) in your message.
554
bd5e766b
LC
555@node Setting Up the Daemon
556@section Setting Up the Daemon
557
558@cindex daemon
559Operations such as building a package or running the garbage collector
49e6291a 560are all performed by a specialized process, the @dfn{build daemon}, on
bd5e766b
LC
561behalf of clients. Only the daemon may access the store and its
562associated database. Thus, any operation that manipulates the store
563goes through the daemon. For instance, command-line tools such as
e49951eb 564@command{guix package} and @command{guix build} communicate with the
bd5e766b
LC
565daemon (@i{via} remote procedure calls) to instruct it what to do.
566
49e6291a 567The following sections explain how to prepare the build daemon's
f97c9175 568environment. See also @ref{Substitutes}, for information on how to allow
225dafde 569the daemon to download pre-built binaries.
49e6291a
LC
570
571@menu
572* Build Environment Setup:: Preparing the isolated build environment.
573* Daemon Offload Setup:: Offloading builds to remote machines.
574@end menu
575
576@node Build Environment Setup
577@subsection Build Environment Setup
578
bd5e766b
LC
579In a standard multi-user setup, Guix and its daemon---the
580@command{guix-daemon} program---are installed by the system
834129e0 581administrator; @file{/gnu/store} is owned by @code{root} and
bd5e766b
LC
582@command{guix-daemon} runs as @code{root}. Unprivileged users may use
583Guix tools to build packages or otherwise access the store, and the
584daemon will do it on their behalf, ensuring that the store is kept in a
585consistent state, and allowing built packages to be shared among users.
586
587@cindex build users
588When @command{guix-daemon} runs as @code{root}, you may not want package
589build processes themselves to run as @code{root} too, for obvious
590security reasons. To avoid that, a special pool of @dfn{build users}
591should be created for use by build processes started by the daemon.
592These build users need not have a shell and a home directory: they will
593just be used when the daemon drops @code{root} privileges in build
594processes. Having several such users allows the daemon to launch
595distinct build processes under separate UIDs, which guarantees that they
596do not interfere with each other---an essential feature since builds are
597regarded as pure functions (@pxref{Introduction}).
598
599On a GNU/Linux system, a build user pool may be created like this (using
600Bash syntax and the @code{shadow} commands):
601
091196b3
LC
602@c See http://lists.gnu.org/archive/html/bug-guix/2013-01/msg00239.html
603@c for why `-G' is needed.
bd5e766b 604@example
cfc149dc
LC
605# groupadd --system guixbuild
606# for i in `seq -w 1 10`;
bd5e766b 607 do
cfc149dc
LC
608 useradd -g guixbuild -G guixbuild \
609 -d /var/empty -s `which nologin` \
610 -c "Guix build user $i" --system \
611 guixbuilder$i;
bd5e766b
LC
612 done
613@end example
614
615@noindent
54eb03ab
LC
616The number of build users determines how many build jobs may run in
617parallel, as specified by the @option{--max-jobs} option
d2825c96
LC
618(@pxref{Invoking guix-daemon, @option{--max-jobs}}). The
619@code{guix-daemon} program may then be run as @code{root} with the
620following command@footnote{If your machine uses the systemd init system,
621dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service}
622file in @file{/etc/systemd/system} will ensure that
ad227484
MDRS
623@command{guix-daemon} is automatically started. Similarly, if your
624machine uses the Upstart init system, drop the
625@file{@var{prefix}/lib/upstart/system/guix-daemon.conf}
626file in @file{/etc/init}.}:
bd5e766b
LC
627
628@example
cfc149dc 629# guix-daemon --build-users-group=guixbuild
bd5e766b
LC
630@end example
631
e900c503 632@cindex chroot
b095792f
LC
633@noindent
634This way, the daemon starts build processes in a chroot, under one of
cfc149dc 635the @code{guixbuilder} users. On GNU/Linux, by default, the chroot
6dc99317
LC
636environment contains nothing but:
637
638@c Keep this list in sync with libstore/build.cc! -----------------------
639@itemize
640@item
4743a4da
LC
641a minimal @code{/dev} directory, created mostly independently from the
642host @code{/dev}@footnote{``Mostly'', because while the set of files
643that appear in the chroot's @code{/dev} is fixed, most of these files
644can only be created if the host has them.};
645
646@item
f97c9175 647the @code{/proc} directory; it only shows the processes of the container
4743a4da 648since a separate PID name space is used;
6dc99317
LC
649
650@item
651@file{/etc/passwd} with an entry for the current user and an entry for
652user @file{nobody};
653
654@item
655@file{/etc/group} with an entry for the user's group;
656
657@item
658@file{/etc/hosts} with an entry that maps @code{localhost} to
659@code{127.0.0.1};
660
661@item
662a writable @file{/tmp} directory.
663@end itemize
b095792f 664
cb960102
ED
665You can influence the directory where the daemon stores build trees
666@i{via} the @code{TMPDIR} environment variable. However, the build tree
f97c9175 667within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0},
cb960102
ED
668where @var{name} is the derivation name---e.g., @code{coreutils-8.24}.
669This way, the value of @code{TMPDIR} does not leak inside build
670environments, which avoids discrepancies in cases where build processes
671capture the name of their build tree.
672
e0c941fe
LC
673@vindex http_proxy
674The daemon also honors the @code{http_proxy} environment variable for
675HTTP downloads it performs, be it for fixed-output derivations
676(@pxref{Derivations}) or for substitutes (@pxref{Substitutes}).
677
1e2644bb
LC
678If you are installing Guix as an unprivileged user, it is still possible
679to run @command{guix-daemon} provided you pass @code{--disable-chroot}.
680However, build processes will not be isolated from one another, and not
681from the rest of the system. Thus, build processes may interfere with
682each other, and may access programs, libraries, and other files
683available on the system---making it much harder to view them as
684@emph{pure} functions.
bd5e766b 685
49e6291a
LC
686
687@node Daemon Offload Setup
688@subsection Using the Offload Facility
689
690@cindex offloading
4ec2e92d
LC
691@cindex build hook
692When desired, the build daemon can @dfn{offload}
693derivation builds to other machines
49e6291a
LC
694running Guix, using the @code{offload} @dfn{build hook}. When that
695feature is enabled, a list of user-specified build machines is read from
f97c9175 696@file{/etc/guix/machines.scm}; every time a build is requested, for
49e6291a 697instance via @code{guix build}, the daemon attempts to offload it to one
f97c9175 698of the machines that satisfy the constraints of the derivation, in
49e6291a
LC
699particular its system type---e.g., @file{x86_64-linux}. Missing
700prerequisites for the build are copied over SSH to the target machine,
701which then proceeds with the build; upon success the output(s) of the
702build are copied back to the initial machine.
703
4ec2e92d 704The @file{/etc/guix/machines.scm} file typically looks like this:
49e6291a
LC
705
706@example
707(list (build-machine
708 (name "eightysix.example.org")
709 (system "x86_64-linux")
710 (user "bob")
711 (speed 2.)) ; incredibly fast!
712
713 (build-machine
714 (name "meeps.example.org")
715 (system "mips64el-linux")
716 (user "alice")
717 (private-key
718 (string-append (getenv "HOME")
c4fdfd6f 719 "/.lsh/identity-for-guix"))))
49e6291a
LC
720@end example
721
722@noindent
723In the example above we specify a list of two build machines, one for
724the @code{x86_64} architecture and one for the @code{mips64el}
4ec2e92d
LC
725architecture.
726
727In fact, this file is---not surprisingly!---a Scheme file that is
728evaluated when the @code{offload} hook is started. Its return value
729must be a list of @code{build-machine} objects. While this example
730shows a fixed list of build machines, one could imagine, say, using
731DNS-SD to return a list of potential build machines discovered in the
732local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using
c678a4ee
LC
733Avahi in Guile Scheme Programs}). The @code{build-machine} data type is
734detailed below.
4ec2e92d 735
c678a4ee 736@deftp {Data Type} build-machine
f97c9175
AE
737This data type represents build machines to which the daemon may offload
738builds. The important fields are:
49e6291a
LC
739
740@table @code
741
742@item name
f97c9175 743The host name of the remote machine.
49e6291a
LC
744
745@item system
f97c9175 746The system type of the remote machine---e.g., @code{"x86_64-linux"}.
49e6291a
LC
747
748@item user
749The user account to use when connecting to the remote machine over SSH.
750Note that the SSH key pair must @emph{not} be passphrase-protected, to
751allow non-interactive logins.
752
753@end table
754
4ec2e92d 755A number of optional fields may be specified:
49e6291a
LC
756
757@table @code
758
cecd72d5 759@item port
f97c9175 760Port number of SSH server on the machine (default: 22).
cecd72d5 761
49e6291a
LC
762@item private-key
763The SSH private key file to use when connecting to the machine.
764
c4fdfd6f
LC
765Currently offloading uses GNU@tie{}lsh as its SSH client
766(@pxref{Invoking lsh,,, GNU lsh Manual}). Thus, the key file here must
767be an lsh key file. This may change in the future, though.
768
49e6291a
LC
769@item parallel-builds
770The number of builds that may run in parallel on the machine (1 by
771default.)
772
773@item speed
774A ``relative speed factor''. The offload scheduler will tend to prefer
775machines with a higher speed factor.
776
777@item features
778A list of strings denoting specific features supported by the machine.
779An example is @code{"kvm"} for machines that have the KVM Linux modules
780and corresponding hardware support. Derivations can request features by
781name, and they will be scheduled on matching build machines.
782
783@end table
c678a4ee 784@end deftp
49e6291a
LC
785
786The @code{guix} command must be in the search path on the build
787machines, since offloading works by invoking the @code{guix archive} and
c4fdfd6f
LC
788@code{guix build} commands. In addition, the Guix modules must be in
789@code{$GUILE_LOAD_PATH} on the build machine---you can check whether
790this is the case by running:
791
792@example
74273b6f 793lsh build-machine guile -c "'(use-modules (guix config))'"
c4fdfd6f 794@end example
49e6291a 795
f97c9175 796There is one last thing to do once @file{machines.scm} is in place. As
49e6291a 797explained above, when offloading, files are transferred back and forth
c4fdfd6f
LC
798between the machine stores. For this to work, you first need to
799generate a key pair on each machine to allow the daemon to export signed
800archives of files from the store (@pxref{Invoking guix archive}):
49e6291a
LC
801
802@example
803# guix archive --generate-key
804@end example
805
806@noindent
c4fdfd6f
LC
807Each build machine must authorize the key of the master machine so that
808it accepts store items it receives from the master:
809
810@example
811# guix archive --authorize < master-public-key.txt
812@end example
813
814@noindent
815Likewise, the master machine must authorize the key of each build machine.
816
817All the fuss with keys is here to express pairwise mutual trust
818relations between the master and the build machines. Concretely, when
819the master receives files from a build machine (and @i{vice versa}), its
820build daemon can make sure they are genuine, have not been tampered
821with, and that they are signed by an authorized key.
49e6291a
LC
822
823
bd5e766b
LC
824@node Invoking guix-daemon
825@section Invoking @command{guix-daemon}
826
827The @command{guix-daemon} program implements all the functionality to
828access the store. This includes launching build processes, running the
829garbage collector, querying the availability of a build result, etc. It
830is normally run as @code{root} like this:
831
832@example
cfc149dc 833# guix-daemon --build-users-group=guixbuild
bd5e766b
LC
834@end example
835
836@noindent
081145cf 837For details on how to set it up, @pxref{Setting Up the Daemon}.
bd5e766b 838
e900c503
LC
839@cindex chroot
840@cindex container, build environment
841@cindex build environment
842@cindex reproducible builds
bd5e766b
LC
843By default, @command{guix-daemon} launches build processes under
844different UIDs, taken from the build group specified with
845@code{--build-users-group}. In addition, each build process is run in a
846chroot environment that only contains the subset of the store that the
847build process depends on, as specified by its derivation
848(@pxref{Programming Interface, derivation}), plus a set of specific
849system directories. By default, the latter contains @file{/dev} and
e900c503
LC
850@file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a
851@dfn{container}: in addition to having its own file system tree, it has
852a separate mount name space, its own PID name space, network name space,
853etc. This helps achieve reproducible builds (@pxref{Features}).
bd5e766b 854
cbc538fe
LC
855When the daemon performs a build on behalf of the user, it creates a
856build directory under @file{/tmp} or under the directory specified by
857its @code{TMPDIR} environment variable; this directory is shared with
858the container for the duration of the build. Be aware that using a
859directory other than @file{/tmp} can affect build results---for example,
860with a longer directory name, a build process that uses Unix-domain
861sockets might hit the name length limitation for @code{sun_path}, which
862it would otherwise not hit.
863
864The build directory is automatically deleted upon completion, unless the
865build failed and the client specified @option{--keep-failed}
866(@pxref{Invoking guix build, @option{--keep-failed}}).
867
bd5e766b
LC
868The following command-line options are supported:
869
870@table @code
871@item --build-users-group=@var{group}
872Take users from @var{group} to run build processes (@pxref{Setting Up
873the Daemon, build users}).
874
6858f9d1 875@item --no-substitutes
b5385b52 876@cindex substitutes
6858f9d1 877Do not use substitutes for build products. That is, always build things
c4202d60
LC
878locally instead of allowing downloads of pre-built binaries
879(@pxref{Substitutes}).
6858f9d1 880
b5385b52
LC
881By default substitutes are used, unless the client---such as the
882@command{guix package} command---is explicitly invoked with
883@code{--no-substitutes}.
884
885When the daemon runs with @code{--no-substitutes}, clients can still
886explicitly enable substitution @i{via} the @code{set-build-options}
887remote procedure call (@pxref{The Store}).
888
9176607e 889@item --substitute-urls=@var{urls}
f8a8e0fe 890@anchor{daemon-substitute-urls}
9176607e 891Consider @var{urls} the default whitespace-separated list of substitute
ae806096 892source URLs. When this option is omitted, @indicateurl{http://hydra.gnu.org}
9176607e
LC
893is used.
894
895This means that substitutes may be downloaded from @var{urls}, as long
896as they are signed by a trusted signature (@pxref{Substitutes}).
897
4ec2e92d
LC
898@cindex build hook
899@item --no-build-hook
900Do not use the @dfn{build hook}.
901
902The build hook is a helper program that the daemon can start and to
903which it submits build requests. This mechanism is used to offload
904builds to other machines (@pxref{Daemon Offload Setup}).
905
bd5e766b
LC
906@item --cache-failures
907Cache build failures. By default, only successful builds are cached.
908
30d9aa54
LC
909When this option is used, @command{guix gc --list-failures} can be used
910to query the set of store items marked as failed; @command{guix gc
911--clear-failures} removes store items from the set of cached failures.
912@xref{Invoking guix gc}.
913
bd5e766b
LC
914@item --cores=@var{n}
915@itemx -c @var{n}
916Use @var{n} CPU cores to build each derivation; @code{0} means as many
917as available.
918
6efc160e 919The default value is @code{0}, but it may be overridden by clients, such
e49951eb
MW
920as the @code{--cores} option of @command{guix build} (@pxref{Invoking
921guix build}).
bd5e766b
LC
922
923The effect is to define the @code{NIX_BUILD_CORES} environment variable
924in the build process, which can then use it to exploit internal
925parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}.
926
927@item --max-jobs=@var{n}
928@itemx -M @var{n}
929Allow at most @var{n} build jobs in parallel. The default value is
f6526eb3
LC
930@code{1}. Setting it to @code{0} means that no builds will be performed
931locally; instead, the daemon will offload builds (@pxref{Daemon Offload
932Setup}), or simply fail.
bd5e766b 933
ecf84b7c
LC
934@item --rounds=@var{N}
935Build each derivation @var{n} times in a row, and raise an error if
936consecutive build results are not bit-for-bit identical. Note that this
937setting can be overridden by clients such as @command{guix build}
938(@pxref{Invoking guix build}).
939
bd5e766b
LC
940@item --debug
941Produce debugging output.
942
943This is useful to debug daemon start-up issues, but then it may be
944overridden by clients, for example the @code{--verbosity} option of
e49951eb 945@command{guix build} (@pxref{Invoking guix build}).
bd5e766b
LC
946
947@item --chroot-directory=@var{dir}
948Add @var{dir} to the build chroot.
949
950Doing this may change the result of build processes---for instance if
951they use optional dependencies found in @var{dir} when it is available,
952and not otherwise. For that reason, it is not recommended to do so.
953Instead, make sure that each derivation declares all the inputs that it
954needs.
955
956@item --disable-chroot
957Disable chroot builds.
958
959Using this option is not recommended since, again, it would allow build
1e2644bb
LC
960processes to gain access to undeclared dependencies. It is necessary,
961though, when @command{guix-daemon} is running under an unprivileged user
962account.
bd5e766b
LC
963
964@item --disable-log-compression
965Disable compression of the build logs.
966
1da983b9
LC
967Unless @code{--lose-logs} is used, all the build logs are kept in the
968@var{localstatedir}. To save space, the daemon automatically compresses
969them with bzip2 by default. This option disables that.
970
ab3893d7
LC
971@item --disable-deduplication
972@cindex deduplication
bd5e766b
LC
973Disable automatic file ``deduplication'' in the store.
974
1da983b9 975By default, files added to the store are automatically ``deduplicated'':
ab3893d7
LC
976if a newly added file is identical to another one found in the store,
977the daemon makes the new file a hard link to the other file. This can
4988dd40 978noticeably reduce disk usage, at the expense of slightly increased
ab3893d7
LC
979input/output load at the end of a build process. This option disables
980this optimization.
1da983b9 981
6e37066e
LC
982@item --gc-keep-outputs[=yes|no]
983Tell whether the garbage collector (GC) must keep outputs of live
984derivations.
985
986When set to ``yes'', the GC will keep the outputs of any live derivation
987available in the store---the @code{.drv} files. The default is ``no'',
988meaning that derivation outputs are kept only if they are GC roots.
989
990@item --gc-keep-derivations[=yes|no]
991Tell whether the garbage collector (GC) must keep derivations
992corresponding to live outputs.
993
994When set to ``yes'', as is the case by default, the GC keeps
995derivations---i.e., @code{.drv} files---as long as at least one of their
996outputs is live. This allows users to keep track of the origins of
997items in their store. Setting it to ``no'' saves a bit of disk space.
998
999Note that when both @code{--gc-keep-derivations} and
1000@code{--gc-keep-outputs} are used, the effect is to keep all the build
1001prerequisites (the sources, compiler, libraries, and other build-time
1002tools) of live objects in the store, regardless of whether these
1003prerequisites are live. This is convenient for developers since it
1004saves rebuilds or downloads.
1005
bd5e766b
LC
1006@item --impersonate-linux-2.6
1007On Linux-based systems, impersonate Linux 2.6. This means that the
1008kernel's @code{uname} system call will report 2.6 as the release number.
1009
1010This might be helpful to build programs that (usually wrongfully) depend
1011on the kernel version number.
1012
1013@item --lose-logs
1014Do not keep build logs. By default they are kept under
ce33631f 1015@code{@var{localstatedir}/guix/log}.
bd5e766b
LC
1016
1017@item --system=@var{system}
1018Assume @var{system} as the current system type. By default it is the
1019architecture/kernel pair found at configure time, such as
1020@code{x86_64-linux}.
b8d2aa26
LC
1021
1022@item --listen=@var{socket}
1023Listen for connections on @var{socket}, the file name of a Unix-domain
1024socket. The default socket is
1025@file{@var{localstatedir}/daemon-socket/socket}. This option is only
1026useful in exceptional circumstances, such as if you need to run several
1027daemons on the same machine.
bd5e766b
LC
1028@end table
1029
1030
0e2d0213
LC
1031@node Application Setup
1032@section Application Setup
1033
85e57214
LC
1034When using Guix on top of GNU/Linux distribution other than GuixSD---a
1035so-called @dfn{foreign distro}---a few additional steps are needed to
1036get everything in place. Here are some of them.
0e2d0213
LC
1037
1038@subsection Locales
1039
5c3c1427 1040@anchor{locales-and-locpath}
0e2d0213 1041@cindex locales, when not on GuixSD
5c3c1427 1042@vindex LOCPATH
85e57214 1043@vindex GUIX_LOCPATH
f97c9175
AE
1044Packages installed @i{via} Guix will not use the locale data of the
1045host system. Instead, you must first install one of the locale packages
85e57214
LC
1046available with Guix and then define the @code{GUIX_LOCPATH} environment
1047variable:
0e2d0213
LC
1048
1049@example
1050$ guix package -i glibc-locales
85e57214 1051$ export GUIX_LOCPATH=$HOME/.guix-profile/lib/locale
0e2d0213
LC
1052@end example
1053
1054Note that the @code{glibc-locales} package contains data for all the
1055locales supported by the GNU@tie{}libc and weighs in at around
f97c9175 1056110@tie{}MiB. Alternatively, the @code{glibc-utf8-locales} is smaller but
0e2d0213
LC
1057limited to a few UTF-8 locales.
1058
85e57214
LC
1059The @code{GUIX_LOCPATH} variable plays a role similar to @code{LOCPATH}
1060(@pxref{Locale Names, @code{LOCPATH},, libc, The GNU C Library Reference
1061Manual}). There are two important differences though:
1062
1063@enumerate
1064@item
f97c9175 1065@code{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc
85e57214 1066provided by foreign distros. Thus, using @code{GUIX_LOCPATH} allows you
f97c9175 1067to make sure the programs of the foreign distro will not end up loading
85e57214
LC
1068incompatible locale data.
1069
1070@item
1071libc suffixes each entry of @code{GUIX_LOCPATH} with @code{/X.Y}, where
1072@code{X.Y} is the libc version---e.g., @code{2.22}. This means that,
1073should your Guix profile contain a mixture of programs linked against
1074different libc version, each libc version will only try to load locale
1075data in the right format.
1076@end enumerate
1077
1078This is important because the locale data format used by different libc
1079versions may be incompatible.
1080
0e2d0213
LC
1081@subsection X11 Fonts
1082
4988dd40 1083The majority of graphical applications use Fontconfig to locate and
f97c9175
AE
1084load fonts and perform X11-client-side rendering. The @code{fontconfig}
1085package in Guix looks for fonts in @file{$HOME/.guix-profile}
0e2d0213 1086by default. Thus, to allow graphical applications installed with Guix
f97c9175 1087to display fonts, you have to install fonts with Guix as well.
0e2d0213 1088Essential font packages include @code{gs-fonts}, @code{font-dejavu}, and
8fe5b1d1 1089@code{font-gnu-freefont-ttf}.
0e2d0213 1090
5c36edc8
LC
1091To display text written in Chinese languages, Japanese, or Korean in
1092graphical applications, consider installing
1093@code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former
1094has multiple outputs, one per language family (@pxref{Packages with
1095Multiple Outputs}). For instance, the following command installs fonts
1096for Chinese languages:
1097
1098@example
1099guix package -i font-adobe-source-han-sans:cn
1100@end example
1101
6d97319c
AK
1102@subsection Emacs Packages
1103
1104When you install Emacs packages with Guix, the elisp files may be placed
1105either in @file{$HOME/.guix-profile/share/emacs/site-lisp/} or in
1106sub-directories of
1107@file{$HOME/.guix-profile/share/emacs/site-lisp/guix.d/}. The latter
1108directory exists because potentially there may exist thousands of Emacs
1109packages and storing all their files in a single directory may be not
1110reliable (because of name conflicts). So we think using a separate
1111directory for each package is a good idea. It is very similar to how
1112the Emacs package system organizes the file structure (@pxref{Package
1113Files,,, emacs, The GNU Emacs Manual}).
1114
1115By default, Emacs (installed with Guix) ``knows'' where these packages
f97c9175 1116are placed, so you do not need to perform any configuration. If, for
6d97319c 1117some reason, you want to avoid auto-loading Emacs packages installed
f97c9175 1118with Guix, you can do so by running Emacs with @code{--no-site-file}
6d97319c
AK
1119option (@pxref{Init File,,, emacs, The GNU Emacs Manual}).
1120
0e2d0213
LC
1121@c TODO What else?
1122
eeaf4427
LC
1123@c *********************************************************************
1124@node Package Management
1125@chapter Package Management
1126
f8348b91 1127The purpose of GNU Guix is to allow users to easily install, upgrade, and
eeaf4427 1128remove software packages, without having to know about their build
f97c9175 1129procedures or dependencies. Guix also goes beyond this obvious set of
eeaf4427
LC
1130features.
1131
1132This chapter describes the main features of Guix, as well as the package
c1941588 1133management tools it provides. Two user interfaces are provided for
c554de89
AK
1134routine package management tasks: A command-line interface described below
1135(@pxref{Invoking guix package, @code{guix package}}), as well as a visual user
1136interface in Emacs described in a subsequent chapter (@pxref{Emacs Interface}).
eeaf4427
LC
1137
1138@menu
1139* Features:: How Guix will make your life brighter.
e49951eb 1140* Invoking guix package:: Package installation, removal, etc.
c4202d60 1141* Substitutes:: Downloading pre-built binaries.
760c60d6 1142* Packages with Multiple Outputs:: Single source package, multiple outputs.
e49951eb 1143* Invoking guix gc:: Running the garbage collector.
f651b477 1144* Invoking guix pull:: Fetching the latest Guix and distribution.
760c60d6 1145* Invoking guix archive:: Exporting and importing store files.
eeaf4427
LC
1146@end menu
1147
1148@node Features
1149@section Features
1150
1151When using Guix, each package ends up in the @dfn{package store}, in its
1152own directory---something that resembles
9a130e19
AK
1153@file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string
1154(note that Guix comes with an Emacs extension to shorten those file
081145cf 1155names, @pxref{Emacs Prettify}.)
eeaf4427
LC
1156
1157Instead of referring to these directories, users have their own
1158@dfn{profile}, which points to the packages that they actually want to
821b0015
LC
1159use. These profiles are stored within each user's home directory, at
1160@code{$HOME/.guix-profile}.
eeaf4427 1161
821b0015 1162For example, @code{alice} installs GCC 4.7.2. As a result,
eeaf4427 1163@file{/home/alice/.guix-profile/bin/gcc} points to
834129e0 1164@file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine,
821b0015
LC
1165@code{bob} had already installed GCC 4.8.0. The profile of @code{bob}
1166simply continues to point to
834129e0 1167@file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC
821b0015 1168coexist on the same system without any interference.
eeaf4427 1169
e49951eb 1170The @command{guix package} command is the central tool to manage
f97c9175 1171packages (@pxref{Invoking guix package}). It operates on the per-user
821b0015 1172profiles, and can be used @emph{with normal user privileges}.
eeaf4427
LC
1173
1174The command provides the obvious install, remove, and upgrade
1175operations. Each invocation is actually a @emph{transaction}: either
ba55b1cb 1176the specified operation succeeds, or nothing happens. Thus, if the
e49951eb 1177@command{guix package} process is terminated during the transaction,
eeaf4427
LC
1178or if a power outage occurs during the transaction, then the user's
1179profile remains in its previous state, and remains usable.
1180
1181In addition, any package transaction may be @emph{rolled back}. So, if,
1182for example, an upgrade installs a new version of a package that turns
1183out to have a serious bug, users may roll back to the previous instance
4af2447e
LC
1184of their profile, which was known to work well. Similarly, the global
1185system configuration is subject to transactional upgrades and roll-back
1186(@pxref{Using the Configuration System}).
eeaf4427 1187
f97c9175
AE
1188All packages in the package store may be @emph{garbage-collected}.
1189Guix can determine which packages are still referenced by user
fe8ff028 1190profiles, and remove those that are provably no longer referenced
e49951eb 1191(@pxref{Invoking guix gc}). Users may also explicitly remove old
fe8ff028
LC
1192generations of their profile so that the packages they refer to can be
1193collected.
eeaf4427 1194
e900c503
LC
1195@cindex reproducibility
1196@cindex reproducible builds
eeaf4427
LC
1197Finally, Guix takes a @dfn{purely functional} approach to package
1198management, as described in the introduction (@pxref{Introduction}).
834129e0 1199Each @file{/gnu/store} package directory name contains a hash of all the
eeaf4427
LC
1200inputs that were used to build that package---compiler, libraries, build
1201scripts, etc. This direct correspondence allows users to make sure a
1202given package installation matches the current state of their
e900c503
LC
1203distribution. It also helps maximize @dfn{build reproducibility}:
1204thanks to the isolated build environments that are used, a given build
1205is likely to yield bit-identical files when performed on different
1206machines (@pxref{Invoking guix-daemon, container}).
eeaf4427 1207
c4202d60 1208@cindex substitutes
eeaf4427 1209This foundation allows Guix to support @dfn{transparent binary/source
c4202d60 1210deployment}. When a pre-built binary for a @file{/gnu/store} item is
18f2887b 1211available from an external source---a @dfn{substitute}, Guix just
c4202d60
LC
1212downloads it and unpacks it;
1213otherwise, it builds the package from source, locally
1214(@pxref{Substitutes}).
eeaf4427 1215
f5fd4fd2
LC
1216Control over the build environment is a feature that is also useful for
1217developers. The @command{guix environment} command allows developers of
1218a package to quickly set up the right development environment for their
f97c9175
AE
1219package, without having to manually install the dependencies of the
1220package into their profile (@pxref{Invoking guix environment}).
f5fd4fd2 1221
e49951eb
MW
1222@node Invoking guix package
1223@section Invoking @command{guix package}
eeaf4427 1224
e49951eb 1225The @command{guix package} command is the tool that allows users to
eeaf4427
LC
1226install, upgrade, and remove packages, as well as rolling back to
1227previous configurations. It operates only on the user's own profile,
1228and works with normal user privileges (@pxref{Features}). Its syntax
1229is:
1230
1231@example
e49951eb 1232guix package @var{options}
eeaf4427
LC
1233@end example
1234
ba55b1cb 1235Primarily, @var{options} specifies the operations to be performed during
eeaf4427 1236the transaction. Upon completion, a new profile is created, but
99bd74d5 1237previous @dfn{generations} of the profile remain available, should the user
eeaf4427
LC
1238want to roll back.
1239
6447738c
MW
1240For example, to remove @code{lua} and install @code{guile} and
1241@code{guile-cairo} in a single transaction:
1242
1243@example
1244guix package -r lua -i guile guile-cairo
1245@end example
1246
99bd74d5
LC
1247@command{guix package} also supports a @dfn{declarative approach}
1248whereby the user specifies the exact set of packages to be available and
1249passes it @i{via} the @option{--manifest} option
1250(@pxref{profile-manifest, @option{--manifest}}).
1251
b9e5c0a9 1252For each user, a symlink to the user's default profile is automatically
0ec1af59 1253created in @file{$HOME/.guix-profile}. This symlink always points to the
b9e5c0a9
LC
1254current generation of the user's default profile. Thus, users can add
1255@file{$HOME/.guix-profile/bin} to their @code{PATH} environment
1256variable, and so on.
d664f1b4
LC
1257@cindex search paths
1258If you are not using the Guix System Distribution, consider adding the
1259following lines to your @file{~/.bash_profile} (@pxref{Bash Startup
1260Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned
1261shells get all the right environment variable definitions:
1262
1263@example
1264GUIX_PROFILE="$HOME/.guix-profile" \
1265source "$HOME/.guix-profile/etc/profile"
1266@end example
b9e5c0a9 1267
4379c35b
LC
1268In a multi-user setup, user profiles are stored in a place registered as
1269a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points
1270to (@pxref{Invoking guix gc}). That directory is normally
0ec1af59
LC
1271@code{@var{localstatedir}/profiles/per-user/@var{user}}, where
1272@var{localstatedir} is the value passed to @code{configure} as
4379c35b
LC
1273@code{--localstatedir}, and @var{user} is the user name. The
1274@file{per-user} directory is created when @command{guix-daemon} is
1275started, and the @var{user} sub-directory is created by @command{guix
1276package}.
0ec1af59
LC
1277
1278The @var{options} can be among the following:
1279
eeaf4427
LC
1280@table @code
1281
6447738c
MW
1282@item --install=@var{package} @dots{}
1283@itemx -i @var{package} @dots{}
1284Install the specified @var{package}s.
eeaf4427 1285
6447738c 1286Each @var{package} may specify either a simple package name, such as
eeaf4427 1287@code{guile}, or a package name followed by a hyphen and version number,
724311a2
LC
1288such as @code{guile-1.8.8} or simply @code{guile-1.8} (in the latter
1289case, the newest version prefixed by @code{1.8} is selected.)
1290
1291If no version number is specified, the
dc5669cd
MW
1292newest available version will be selected. In addition, @var{package}
1293may contain a colon, followed by the name of one of the outputs of the
6e721c4d 1294package, as in @code{gcc:doc} or @code{binutils-2.22:lib}
e7f34eb0
LC
1295(@pxref{Packages with Multiple Outputs}). Packages with a corresponding
1296name (and optionally version) are searched for among the GNU
1297distribution modules (@pxref{Package Modules}).
eeaf4427 1298
461572cc
LC
1299@cindex propagated inputs
1300Sometimes packages have @dfn{propagated inputs}: these are dependencies
21461f27
LC
1301that automatically get installed along with the required package
1302(@pxref{package-propagated-inputs, @code{propagated-inputs} in
1303@code{package} objects}, for information about propagated inputs in
1304package definitions).
461572cc 1305
21461f27 1306@anchor{package-cmd-propagated-inputs}
461572cc
LC
1307An example is the GNU MPC library: its C header files refer to those of
1308the GNU MPFR library, which in turn refer to those of the GMP library.
1309Thus, when installing MPC, the MPFR and GMP libraries also get installed
1310in the profile; removing MPC also removes MPFR and GMP---unless they had
f97c9175 1311also been explicitly installed by the user.
461572cc 1312
ba7ea5ce 1313Besides, packages sometimes rely on the definition of environment
5924080d 1314variables for their search paths (see explanation of
ba7ea5ce 1315@code{--search-paths} below). Any missing or possibly incorrect
5924080d
LC
1316environment variable definitions are reported here.
1317
ef010c0f 1318@c XXX: keep me up-to-date
5924080d 1319Finally, when installing a GNU package, the tool reports the
ef010c0f
LC
1320availability of a newer upstream version. In the future, it may provide
1321the option of installing directly from the upstream version, even if
1322that version is not yet in the distribution.
1323
5d4b411f
LC
1324@item --install-from-expression=@var{exp}
1325@itemx -e @var{exp}
1326Install the package @var{exp} evaluates to.
1327
1328@var{exp} must be a Scheme expression that evaluates to a
1329@code{<package>} object. This option is notably useful to disambiguate
1330between same-named variants of a package, with expressions such as
1331@code{(@@ (gnu packages base) guile-final)}.
1332
1333Note that this option installs the first output of the specified
1334package, which may be insufficient when needing a specific output of a
1335multiple-output package.
1336
0d279400
DT
1337@item --install-from-file=@var{file}
1338@itemx -f @var{file}
1339Install the package that the code within @var{file} evaluates to.
1340
1341As an example, @var{file} might contain a definition like this
1342(@pxref{Defining Packages}):
1343
1344@example
1345@verbatiminclude package-hello.scm
1346@end example
1347
1348Developers may find it useful to include such a @file{package.scm} file
f97c9175 1349in the root of their project source tree that can be used to test
0d279400
DT
1350development snapshots and create reproducible development environments
1351(@pxref{Invoking guix environment}).
1352
6447738c
MW
1353@item --remove=@var{package} @dots{}
1354@itemx -r @var{package} @dots{}
1355Remove the specified @var{package}s.
eeaf4427 1356
6447738c 1357As for @code{--install}, each @var{package} may specify a version number
13ed095c
LC
1358and/or output name in addition to the package name. For instance,
1359@code{-r glibc:debug} would remove the @code{debug} output of
1360@code{glibc}.
1361
6447738c
MW
1362@item --upgrade[=@var{regexp} @dots{}]
1363@itemx -u [@var{regexp} @dots{}]
1364Upgrade all the installed packages. If one or more @var{regexp}s are
1365specified, upgrade only installed packages whose name matches a
d5f01e48 1366@var{regexp}. Also see the @code{--do-not-upgrade} option below.
eeaf4427 1367
f651b477
LC
1368Note that this upgrades package to the latest version of packages found
1369in the distribution currently installed. To update your distribution,
1370you should regularly run @command{guix pull} (@pxref{Invoking guix
1371pull}).
1372
d5f01e48
MW
1373@item --do-not-upgrade[=@var{regexp} @dots{}]
1374When used together with the @code{--upgrade} option, do @emph{not}
1375upgrade any packages whose name matches a @var{regexp}. For example, to
1376upgrade all packages in the current profile except those containing the
1377substring ``emacs'':
1378
1379@example
1380$ guix package --upgrade . --do-not-upgrade emacs
1381@end example
1382
99bd74d5 1383@item @anchor{profile-manifest}--manifest=@var{file}
1b676447 1384@itemx -m @var{file}
99bd74d5
LC
1385@cindex profile declaration
1386@cindex profile manifest
1387Create a new generation of the profile from the manifest object
1b676447
DT
1388returned by the Scheme code in @var{file}.
1389
99bd74d5
LC
1390This allows you to @emph{declare} the profile's contents rather than
1391constructing it through a sequence of @code{--install} and similar
1392commands. The advantage is that @var{file} can be put under version
1393control, copied to different machines to reproduce the same profile, and
1394so on.
1395
1396@c FIXME: Add reference to (guix profile) documentation when available.
1397@var{file} must return a @dfn{manifest} object, which is roughly a list
1398of packages:
1b676447 1399
99bd74d5 1400@findex packages->manifest
1b676447 1401@example
99bd74d5 1402(use-package-modules guile emacs)
1b676447
DT
1403
1404(packages->manifest
99bd74d5
LC
1405 (list emacs
1406 guile-2.0
1b676447 1407 ;; Use a specific package output.
99bd74d5 1408 (list guile-2.0 "debug")))
1b676447
DT
1409@end example
1410
24e262f0
LC
1411@item --roll-back
1412Roll back to the previous @dfn{generation} of the profile---i.e., undo
1413the last transaction.
1414
1415When combined with options such as @code{--install}, roll back occurs
1416before any other actions.
1417
d9307267 1418When rolling back from the first generation that actually contains
4b2bc804 1419installed packages, the profile is made to point to the @dfn{zeroth
f97c9175 1420generation}, which contains no files apart from its own metadata.
d9307267 1421
f97c9175
AE
1422After having rolled back, installing, removing, or upgrading packages
1423overwrites previous future generations. Thus, the history of the
1424generations in a profile is always linear.
82fe08ed 1425
b3bb82f1
AK
1426@item --switch-generation=@var{pattern}
1427@itemx -S @var{pattern}
1428Switch to a particular generation defined by @var{pattern}.
1429
1430@var{pattern} may be either a generation number or a number prefixed
1431with ``+'' or ``-''. The latter means: move forward/backward by a
1432specified number of generations. For example, if you want to return to
1433the latest generation after @code{--roll-back}, use
1434@code{--switch-generation=+1}.
1435
1436The difference between @code{--roll-back} and
1437@code{--switch-generation=-1} is that @code{--switch-generation} will
1438not make a zeroth generation, so if a specified generation does not
1439exist, the current generation will not be changed.
1440
dbc31ab2 1441@item --search-paths[=@var{kind}]
5924080d
LC
1442@cindex search paths
1443Report environment variable definitions, in Bash syntax, that may be
1444needed in order to use the set of installed packages. These environment
1445variables are used to specify @dfn{search paths} for files used by some
1446of the installed packages.
1447
1448For example, GCC needs the @code{CPATH} and @code{LIBRARY_PATH}
1449environment variables to be defined so it can look for headers and
1450libraries in the user's profile (@pxref{Environment Variables,,, gcc,
1451Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C
1452library are installed in the profile, then @code{--search-paths} will
1453suggest setting these variables to @code{@var{profile}/include} and
1454@code{@var{profile}/lib}, respectively.
1455
dbc31ab2
LC
1456The typical use case is to define these environment variables in the
1457shell:
1458
1459@example
1460$ eval `guix package --search-paths`
1461@end example
1462
1463@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix},
1464meaning that the returned environment variable definitions will either
1465be exact settings, or prefixes or suffixes of the current value of these
1466variables. When omitted, @var{kind} defaults to @code{exact}.
1467
fc2d2339
LC
1468This option can also be used to compute the @emph{combined} search paths
1469of several profiles. Consider this example:
1470
1471@example
1472$ guix package -p foo -i guile
1473$ guix package -p bar -i guile-json
1474$ guix package -p foo -p bar --search-paths
1475@end example
1476
1477The last command above reports about the @code{GUILE_LOAD_PATH}
1478variable, even though, taken individually, neither @file{foo} nor
1479@file{bar} would lead to that recommendation.
1480
1481
eeaf4427
LC
1482@item --profile=@var{profile}
1483@itemx -p @var{profile}
1484Use @var{profile} instead of the user's default profile.
1485
70915c1a 1486@item --verbose
f97c9175
AE
1487Produce verbose output. In particular, emit the build log of the
1488environment on the standard error port.
70915c1a 1489
eeaf4427
LC
1490@item --bootstrap
1491Use the bootstrap Guile to build the profile. This option is only
1492useful to distribution developers.
1493
1494@end table
1495
f97c9175 1496In addition to these actions, @command{guix package} supports the
733b4130
LC
1497following options to query the current state of a profile, or the
1498availability of packages:
eeaf4427 1499
733b4130
LC
1500@table @option
1501
acc08466
NK
1502@item --search=@var{regexp}
1503@itemx -s @var{regexp}
b110869d 1504@cindex searching for packages
5763ad92 1505List the available packages whose name, synopsis, or description matches
f97c9175 1506@var{regexp}. Print all the metadata of matching packages in
299112d3
LC
1507@code{recutils} format (@pxref{Top, GNU recutils databases,, recutils,
1508GNU recutils manual}).
acc08466 1509
299112d3
LC
1510This allows specific fields to be extracted using the @command{recsel}
1511command, for instance:
1512
1513@example
e49951eb 1514$ guix package -s malloc | recsel -p name,version
299112d3
LC
1515name: glibc
1516version: 2.17
1517
1518name: libgc
1519version: 7.2alpha6
1520@end example
acc08466 1521
a12d92f5
LC
1522Similarly, to show the name of all the packages available under the
1523terms of the GNU@tie{}LGPL version 3:
1524
1525@example
1526$ guix package -s "" | recsel -p name -e 'license ~ "LGPL 3"'
1527name: elfutils
1528
1529name: gmp
1530@dots{}
1531@end example
1532
db5a9444
LC
1533It is also possible to refine search results using several @code{-s}
1534flags. For example, the following command returns a list of board
1535games:
1536
1537@example
1538$ guix package -s '\<board\>' -s game | recsel -p name
1539name: gnubg
1540@dots{}
1541@end example
1542
1543If we were to omit @code{-s game}, we would also get software packages
1544that deal with printed circuit boards; removing the angle brackets
1545around @code{board} would further add packages that have to do with
1546keyboards.
1547
b110869d
LC
1548And now for a more elaborate example. The following command searches
1549for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby
1550libraries, and prints the name and synopsis of the matching packages:
1551
1552@example
1553$ guix package -s crypto -s library | \
1554 recsel -e '! (name ~ "^(ghc|perl|python|ruby)")' -p name,synopsis
1555@end example
1556
1557@noindent
1558@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more
1559information on @dfn{selection expressions} for @code{recsel -e}.
1560
2aa6efb0
CR
1561@item --show=@var{package}
1562Show details about @var{package}, taken from the list of available packages, in
1563@code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU
1564recutils manual}).
1565
1566@example
1567$ guix package --show=python | recsel -p name,version
1568name: python
1569version: 2.7.6
1570
1571name: python
1572version: 3.3.5
1573@end example
1574
1575You may also specify the full name of a package to only get details about a
1576specific version of it:
1577@example
1578$ guix package --show=python-3.3.5 | recsel -p name,version
1579name: python
1580version: 3.3.5
1581@end example
1582
1583
1584
733b4130
LC
1585@item --list-installed[=@var{regexp}]
1586@itemx -I [@var{regexp}]
bd9bde1c
LC
1587List the currently installed packages in the specified profile, with the
1588most recently installed packages shown last. When @var{regexp} is
1589specified, list only installed packages whose name matches @var{regexp}.
733b4130
LC
1590
1591For each installed package, print the following items, separated by
1592tabs: the package name, its version string, the part of the package that
1593is installed (for instance, @code{out} for the default output,
1594@code{include} for its headers, etc.), and the path of this package in
1595the store.
1596
64fc89b6
LC
1597@item --list-available[=@var{regexp}]
1598@itemx -A [@var{regexp}]
5763ad92 1599List packages currently available in the distribution for this system
a1ba8475
LC
1600(@pxref{GNU Distribution}). When @var{regexp} is specified, list only
1601installed packages whose name matches @var{regexp}.
64fc89b6
LC
1602
1603For each package, print the following items separated by tabs: its name,
6e721c4d
LC
1604its version string, the parts of the package (@pxref{Packages with
1605Multiple Outputs}), and the source location of its definition.
64fc89b6 1606
f566d765
LC
1607@item --list-generations[=@var{pattern}]
1608@itemx -l [@var{pattern}]
1609Return a list of generations along with their creation dates; for each
1610generation, show the installed packages, with the most recently
4b2bc804
NK
1611installed packages shown last. Note that the zeroth generation is never
1612shown.
f566d765
LC
1613
1614For each installed package, print the following items, separated by
1615tabs: the name of a package, its version string, the part of the package
1616that is installed (@pxref{Packages with Multiple Outputs}), and the
1617location of this package in the store.
1618
1619When @var{pattern} is used, the command returns only matching
1620generations. Valid patterns include:
1621
1622@itemize
1623@item @emph{Integers and comma-separated integers}. Both patterns denote
1624generation numbers. For instance, @code{--list-generations=1} returns
1625the first one.
1626
1627And @code{--list-generations=1,8,2} outputs three generations in the
1628specified order. Neither spaces nor trailing commas are allowed.
1629
1630@item @emph{Ranges}. @code{--list-generations=2..9} prints the
1631specified generations and everything in between. Note that the start of
f97c9175 1632a range must be smaller than its end.
f566d765
LC
1633
1634It is also possible to omit the endpoint. For example,
1635@code{--list-generations=2..}, returns all generations starting from the
1636second one.
1637
1638@item @emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks,
1639or months by passing an integer along with the first letter of the
d7ddb257
LC
1640duration. For example, @code{--list-generations=20d} lists generations
1641that are up to 20 days old.
f566d765
LC
1642@end itemize
1643
b7884ca3
NK
1644@item --delete-generations[=@var{pattern}]
1645@itemx -d [@var{pattern}]
d7ddb257
LC
1646When @var{pattern} is omitted, delete all generations except the current
1647one.
b7884ca3
NK
1648
1649This command accepts the same patterns as @option{--list-generations}.
d7ddb257
LC
1650When @var{pattern} is specified, delete the matching generations. When
1651@var{pattern} specifies a duration, generations @emph{older} than the
1652specified duration match. For instance, @code{--delete-generations=1m}
1653deletes generations that are more than one month old.
1654
391bdd8f
LC
1655If the current generation matches, it is @emph{not} deleted. Also, the
1656zeroth generation is never deleted.
b7884ca3 1657
f97c9175 1658Note that deleting generations prevents rolling back to them.
1bb9900a
LC
1659Consequently, this command must be used with care.
1660
733b4130 1661@end table
eeaf4427 1662
70ee5642 1663Finally, since @command{guix package} may actually start build
ccd7158d 1664processes, it supports all the common build options (@pxref{Common Build
f97c9175 1665Options}). It also supports package transformation options, such as
b8638f03
LC
1666@option{--with-source} (@pxref{Package Transformation Options}).
1667However, note that package transformations are lost when upgrading; to
f97c9175 1668preserve transformations across upgrades, you should define your own
b8638f03
LC
1669package variant in a Guile module and add it to @code{GUIX_PACKAGE_PATH}
1670(@pxref{Defining Packages}).
1671
70ee5642 1672
c4202d60
LC
1673@node Substitutes
1674@section Substitutes
1675
1676@cindex substitutes
1677@cindex pre-built binaries
1678Guix supports transparent source/binary deployment, which means that it
1679can either build things locally, or download pre-built items from a
1680server. We call these pre-built items @dfn{substitutes}---they are
1681substitutes for local build results. In many cases, downloading a
1682substitute is much faster than building things locally.
1683
1684Substitutes can be anything resulting from a derivation build
1685(@pxref{Derivations}). Of course, in the common case, they are
1686pre-built package binaries, but source tarballs, for instance, which
1687also result from derivation builds, can be available as substitutes.
1688
1689The @code{hydra.gnu.org} server is a front-end to a build farm that
1690builds packages from the GNU distribution continuously for some
32950fc8
AK
1691architectures, and makes them available as substitutes (@pxref{Emacs
1692Hydra}, for information on how to query the continuous integration
1693server). This is the
f8a8e0fe
LC
1694default source of substitutes; it can be overridden by passing the
1695@option{--substitute-urls} option either to @command{guix-daemon}
1696(@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}})
1697or to client tools such as @command{guix package}
1698(@pxref{client-substitute-urls,, client @option{--substitute-urls}
1699option}).
c4202d60
LC
1700
1701@cindex security
1702@cindex digital signatures
1703To allow Guix to download substitutes from @code{hydra.gnu.org}, you
1704must add its public key to the access control list (ACL) of archive
1705imports, using the @command{guix archive} command (@pxref{Invoking guix
1706archive}). Doing so implies that you trust @code{hydra.gnu.org} to not
1707be compromised and to serve genuine substitutes.
1708
1709This public key is installed along with Guix, in
1710@code{@var{prefix}/share/guix/hydra.gnu.org.pub}, where @var{prefix} is
1711the installation prefix of Guix. If you installed Guix from source,
1712make sure you checked the GPG signature of
1713@file{guix-@value{VERSION}.tar.gz}, which contains this public key file.
1714Then, you can run something like this:
1715
1716@example
1717# guix archive --authorize < hydra.gnu.org.pub
1718@end example
1719
1720Once this is in place, the output of a command like @code{guix build}
1721should change from something like:
1722
1723@example
1724$ guix build emacs --dry-run
1725The following derivations would be built:
1726 /gnu/store/yr7bnx8xwcayd6j95r2clmkdl1qh688w-emacs-24.3.drv
1727 /gnu/store/x8qsh1hlhgjx6cwsjyvybnfv2i37z23w-dbus-1.6.4.tar.gz.drv
1728 /gnu/store/1ixwp12fl950d15h2cj11c73733jay0z-alsa-lib-1.0.27.1.tar.bz2.drv
1729 /gnu/store/nlma1pw0p603fpfiqy7kn4zm105r5dmw-util-linux-2.21.drv
1730@dots{}
1731@end example
1732
1733@noindent
1734to something like:
1735
1736@example
1737$ guix build emacs --dry-run
1738The following files would be downloaded:
1739 /gnu/store/pk3n22lbq6ydamyymqkkz7i69wiwjiwi-emacs-24.3
1740 /gnu/store/2ygn4ncnhrpr61rssa6z0d9x22si0va3-libjpeg-8d
1741 /gnu/store/71yz6lgx4dazma9dwn2mcjxaah9w77jq-cairo-1.12.16
1742 /gnu/store/7zdhgp0n1518lvfn8mb96sxqfmvqrl7v-libxrender-0.9.7
1743@dots{}
1744@end example
1745
1746@noindent
1747This indicates that substitutes from @code{hydra.gnu.org} are usable and
1748will be downloaded, when possible, for future builds.
1749
1750Guix ignores substitutes that are not signed, or that are not signed by
ef27aa9c 1751one of the keys listed in the ACL. It also detects and raises an error
c4202d60
LC
1752when attempting to use a substitute that has been tampered with.
1753
e0c941fe
LC
1754@vindex http_proxy
1755Substitutes are downloaded over HTTP. The @code{http_proxy} environment
1756variable can be set in the environment of @command{guix-daemon} and is
1757honored for downloads of substitutes. Note that the value of
1758@code{http_proxy} in the environment where @command{guix build},
1759@command{guix package}, and other client commands are run has
1760@emph{absolutely no effect}.
1761
c4202d60
LC
1762The substitute mechanism can be disabled globally by running
1763@code{guix-daemon} with @code{--no-substitutes} (@pxref{Invoking
1764guix-daemon}). It can also be disabled temporarily by passing the
1765@code{--no-substitutes} option to @command{guix package}, @command{guix
1766build}, and other command-line tools.
1767
1768
1769Today, each individual's control over their own computing is at the
1770mercy of institutions, corporations, and groups with enough power and
1771determination to subvert the computing infrastructure and exploit its
1772weaknesses. While using @code{hydra.gnu.org} substitutes can be
1773convenient, we encourage users to also build on their own, or even run
1774their own build farm, such that @code{hydra.gnu.org} is less of an
8ce229fc
LC
1775interesting target. One way to help is by publishing the software you
1776build using @command{guix publish} so that others have one more choice
1777of server to download substitutes from (@pxref{Invoking guix publish}).
c4202d60
LC
1778
1779Guix has the foundations to maximize build reproducibility
1780(@pxref{Features}). In most cases, independent builds of a given
1781package or derivation should yield bit-identical results. Thus, through
1782a diverse set of independent package builds, we can strengthen the
d23c20f1
LC
1783integrity of our systems. The @command{guix challenge} command aims to
1784help users assess substitute servers, and to assist developers in
1785finding out about non-deterministic package builds (@pxref{Invoking guix
a8d65643
LC
1786challenge}). Similarly, the @option{--check} option of @command{guix
1787build} allows users to check whether previously-installed substitutes
1788are genuine by rebuilding them locally (@pxref{build-check,
1789@command{guix build --check}}).
c4202d60
LC
1790
1791In the future, we want Guix to have support to publish and retrieve
1792binaries to/from other users, in a peer-to-peer fashion. If you would
1793like to discuss this project, join us on @email{guix-devel@@gnu.org}.
1794
1795
6e721c4d
LC
1796@node Packages with Multiple Outputs
1797@section Packages with Multiple Outputs
1798
1799@cindex multiple-output packages
1800@cindex package outputs
1801
1802Often, packages defined in Guix have a single @dfn{output}---i.e., the
f97c9175 1803source package leads to exactly one directory in the store. When running
6e721c4d
LC
1804@command{guix package -i glibc}, one installs the default output of the
1805GNU libc package; the default output is called @code{out}, but its name
1806can be omitted as shown in this command. In this particular case, the
1807default output of @code{glibc} contains all the C header files, shared
1808libraries, static libraries, Info documentation, and other supporting
1809files.
1810
1811Sometimes it is more appropriate to separate the various types of files
1812produced from a single source package into separate outputs. For
1813instance, the GLib C library (used by GTK+ and related packages)
1814installs more than 20 MiB of reference documentation as HTML pages.
1815To save space for users who do not need it, the documentation goes to a
1816separate output, called @code{doc}. To install the main GLib output,
1817which contains everything but the documentation, one would run:
1818
1819@example
1820guix package -i glib
1821@end example
1822
1823The command to install its documentation is:
1824
1825@example
1826guix package -i glib:doc
1827@end example
1828
1829Some packages install programs with different ``dependency footprints''.
f97c9175 1830For instance, the WordNet package installs both command-line tools and
6e721c4d
LC
1831graphical user interfaces (GUIs). The former depend solely on the C
1832library, whereas the latter depend on Tcl/Tk and the underlying X
1833libraries. In this case, we leave the command-line tools in the default
1834output, whereas the GUIs are in a separate output. This allows users
fcc58db6
LC
1835who do not need the GUIs to save space. The @command{guix size} command
1836can help find out about such situations (@pxref{Invoking guix size}).
88856916 1837@command{guix graph} can also be helpful (@pxref{Invoking guix graph}).
6e721c4d
LC
1838
1839There are several such multiple-output packages in the GNU distribution.
91ef73d4
LC
1840Other conventional output names include @code{lib} for libraries and
1841possibly header files, @code{bin} for stand-alone programs, and
1842@code{debug} for debugging information (@pxref{Installing Debugging
1843Files}). The outputs of a packages are listed in the third column of
1844the output of @command{guix package --list-available} (@pxref{Invoking
1845guix package}).
6e721c4d 1846
eeaf4427 1847
e49951eb
MW
1848@node Invoking guix gc
1849@section Invoking @command{guix gc}
fe8ff028
LC
1850
1851@cindex garbage collector
f97c9175 1852Packages that are installed, but not used, may be @dfn{garbage-collected}.
e49951eb 1853The @command{guix gc} command allows users to explicitly run the garbage
c22eb992
LC
1854collector to reclaim space from the @file{/gnu/store} directory. It is
1855the @emph{only} way to remove files from @file{/gnu/store}---removing
1856files or directories manually may break it beyond repair!
fe8ff028
LC
1857
1858The garbage collector has a set of known @dfn{roots}: any file under
834129e0 1859@file{/gnu/store} reachable from a root is considered @dfn{live} and
fe8ff028
LC
1860cannot be deleted; any other file is considered @dfn{dead} and may be
1861deleted. The set of garbage collector roots includes default user
e49951eb
MW
1862profiles, and may be augmented with @command{guix build --root}, for
1863example (@pxref{Invoking guix build}).
fe8ff028 1864
1bb9900a
LC
1865Prior to running @code{guix gc --collect-garbage} to make space, it is
1866often useful to remove old generations from user profiles; that way, old
1867package builds referenced by those generations can be reclaimed. This
1868is achieved by running @code{guix package --delete-generations}
1869(@pxref{Invoking guix package}).
1870
e49951eb 1871The @command{guix gc} command has three modes of operation: it can be
fe8ff028 1872used to garbage-collect any dead files (the default), to delete specific
7770aafc
LC
1873files (the @code{--delete} option), to print garbage-collector
1874information, or for more advanced queries. The garbage collection
1875options are as follows:
fe8ff028
LC
1876
1877@table @code
1878@item --collect-garbage[=@var{min}]
1879@itemx -C [@var{min}]
834129e0 1880Collect garbage---i.e., unreachable @file{/gnu/store} files and
fe8ff028
LC
1881sub-directories. This is the default operation when no option is
1882specified.
1883
1884When @var{min} is given, stop once @var{min} bytes have been collected.
1885@var{min} may be a number of bytes, or it may include a unit as a
4a44d7bb
LC
1886suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes
1887(@pxref{Block size, size specifications,, coreutils, GNU Coreutils}).
fe8ff028
LC
1888
1889When @var{min} is omitted, collect all the garbage.
1890
1891@item --delete
1892@itemx -d
1893Attempt to delete all the store files and directories specified as
1894arguments. This fails if some of the files are not in the store, or if
1895they are still live.
1896
30d9aa54
LC
1897@item --list-failures
1898List store items corresponding to cached build failures.
1899
1900This prints nothing unless the daemon was started with
1901@option{--cache-failures} (@pxref{Invoking guix-daemon,
1902@option{--cache-failures}}).
1903
1904@item --clear-failures
1905Remove the specified store items from the failed-build cache.
1906
1907Again, this option only makes sense when the daemon is started with
1908@option{--cache-failures}. Otherwise, it does nothing.
1909
fe8ff028
LC
1910@item --list-dead
1911Show the list of dead files and directories still present in the
1912store---i.e., files and directories no longer reachable from any root.
1913
1914@item --list-live
1915Show the list of live store files and directories.
ba8b732d
LC
1916
1917@end table
1918
1919In addition, the references among existing store files can be queried:
1920
1921@table @code
1922
1923@item --references
1924@itemx --referrers
1925List the references (respectively, the referrers) of store files given
1926as arguments.
1927
8e59fdd5
LC
1928@item --requisites
1929@itemx -R
fcc58db6 1930@cindex closure
8e59fdd5
LC
1931List the requisites of the store files passed as arguments. Requisites
1932include the store files themselves, their references, and the references
1933of these, recursively. In other words, the returned list is the
1934@dfn{transitive closure} of the store files.
1935
f97c9175
AE
1936@xref{Invoking guix size}, for a tool to profile the size of the closure
1937of an element. @xref{Invoking guix graph}, for a tool to visualize
88856916 1938the graph of references.
fcc58db6 1939
fe8ff028
LC
1940@end table
1941
7770aafc
LC
1942Lastly, the following options allow you to check the integrity of the
1943store and to control disk usage.
1944
1945@table @option
1946
1947@item --verify[=@var{options}]
1948@cindex integrity, of the store
1949@cindex integrity checking
1950Verify the integrity of the store.
1951
1952By default, make sure that all the store items marked as valid in the
f97c9175 1953database of the daemon actually exist in @file{/gnu/store}.
7770aafc 1954
f97c9175 1955When provided, @var{options} must be a comma-separated list containing one
7770aafc
LC
1956or more of @code{contents} and @code{repair}.
1957
f97c9175
AE
1958When passing @option{--verify=contents}, the daemon computse the
1959content hash of each store item and compares it against its hash in the
7770aafc
LC
1960database. Hash mismatches are reported as data corruptions. Because it
1961traverses @emph{all the files in the store}, this command can take a
1962long time, especially on systems with a slow disk drive.
1963
1964@cindex repairing the store
1965Using @option{--verify=repair} or @option{--verify=contents,repair}
1966causes the daemon to try to repair corrupt store items by fetching
1967substitutes for them (@pxref{Substitutes}). Because repairing is not
1968atomic, and thus potentially dangerous, it is available only to the
1969system administrator.
1970
1971@item --optimize
1972@cindex deduplication
1973Optimize the store by hard-linking identical files---this is
1974@dfn{deduplication}.
1975
1976The daemon performs deduplication after each successful build or archive
1977import, unless it was started with @code{--disable-deduplication}
1978(@pxref{Invoking guix-daemon, @code{--disable-deduplication}}). Thus,
1979this option is primarily useful when the daemon was running with
1980@code{--disable-deduplication}.
1981
1982@end table
eeaf4427 1983
f651b477
LC
1984@node Invoking guix pull
1985@section Invoking @command{guix pull}
1986
1987Packages are installed or upgraded to the latest version available in
1988the distribution currently available on your local machine. To update
1989that distribution, along with the Guix tools, you must run @command{guix
1990pull}: the command downloads the latest Guix source code and package
1991descriptions, and deploys it.
1992
1993On completion, @command{guix package} will use packages and package
1994versions from this just-retrieved copy of Guix. Not only that, but all
1995the Guix commands and Scheme modules will also be taken from that latest
1996version. New @command{guix} sub-commands added by the update also
cb05108a
LC
1997become available.
1998
1999Any user can update their Guix copy using @command{guix pull}, and the
2000effect is limited to the user who run @command{guix pull}. For
2001instance, when user @code{root} runs @command{guix pull}, this has no
2002effect on the version of Guix that user @code{alice} sees, and vice
2003versa@footnote{Under the hood, @command{guix pull} updates the
2004@file{~/.config/guix/latest} symbolic link to point to the latest Guix,
2005and the @command{guix} command loads code from there.}.
f651b477
LC
2006
2007The @command{guix pull} command is usually invoked with no arguments,
2008but it supports the following options:
2009
2010@table @code
2011@item --verbose
2012Produce verbose output, writing build logs to the standard error output.
2013
ab5d72ad
LC
2014@item --url=@var{url}
2015Download the source tarball of Guix from @var{url}.
2016
2017By default, the tarball is taken from its canonical address at
2018@code{gnu.org}, for the stable branch of Guix.
2019
f651b477
LC
2020@item --bootstrap
2021Use the bootstrap Guile to build the latest Guix. This option is only
2022useful to Guix developers.
2023@end table
2024
760c60d6
LC
2025
2026@node Invoking guix archive
2027@section Invoking @command{guix archive}
2028
2029The @command{guix archive} command allows users to @dfn{export} files
2030from the store into a single archive, and to later @dfn{import} them.
2031In particular, it allows store files to be transferred from one machine
4d4c4816
AE
2032to the store on another machine.
2033
2034To export store files as an archive to standard output, run:
2035
2036@example
2037guix archive --export @var{options} @var{specifications}...
2038@end example
2039
2040@var{specifications} may be either store file names or package
2041specifications, as for @command{guix package} (@pxref{Invoking guix
2042package}). For instance, the following command creates an archive
2043containing the @code{gui} output of the @code{git} package and the main
2044output of @code{emacs}:
2045
2046@example
2047guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar
2048@end example
2049
2050If the specified packages are not built yet, @command{guix archive}
2051automatically builds them. The build process may be controlled with the
2052common build options (@pxref{Common Build Options}).
2053
2054To transfer the @code{emacs} package to a machine connected over SSH,
2055one would run:
760c60d6
LC
2056
2057@example
56607088 2058guix archive --export -r emacs | ssh the-machine guix archive --import
760c60d6
LC
2059@end example
2060
87236aed 2061@noindent
56607088
LC
2062Similarly, a complete user profile may be transferred from one machine
2063to another like this:
2064
2065@example
2066guix archive --export -r $(readlink -f ~/.guix-profile) | \
2067 ssh the-machine guix-archive --import
2068@end example
2069
2070@noindent
2071However, note that, in both examples, all of @code{emacs} and the
2072profile as well as all of their dependencies are transferred (due to
f97c9175
AE
2073@code{-r}), regardless of what is already available in the store on the
2074target machine. The @code{--missing} option can help figure out which
2075items are missing from the target store.
87236aed 2076
760c60d6 2077Archives are stored in the ``Nix archive'' or ``Nar'' format, which is
0dbd88db
LC
2078comparable in spirit to `tar', but with a few noteworthy differences
2079that make it more appropriate for our purposes. First, rather than
f97c9175 2080recording all Unix metadata for each file, the Nar format only mentions
0dbd88db
LC
2081the file type (regular, directory, or symbolic link); Unix permissions
2082and owner/group are dismissed. Second, the order in which directory
2083entries are stored always follows the order of file names according to
2084the C locale collation order. This makes archive production fully
2085deterministic.
2086
2087When exporting, the daemon digitally signs the contents of the archive,
2088and that digital signature is appended. When importing, the daemon
2089verifies the signature and rejects the import in case of an invalid
2090signature or if the signing key is not authorized.
760c60d6
LC
2091@c FIXME: Add xref to daemon doc about signatures.
2092
2093The main options are:
2094
2095@table @code
2096@item --export
2097Export the specified store files or packages (see below.) Write the
2098resulting archive to the standard output.
2099
56607088
LC
2100Dependencies are @emph{not} included in the output, unless
2101@code{--recursive} is passed.
2102
2103@item -r
2104@itemx --recursive
2105When combined with @code{--export}, this instructs @command{guix
2106archive} to include dependencies of the given items in the archive.
2107Thus, the resulting archive is self-contained: it contains the closure
2108of the exported store items.
2109
760c60d6
LC
2110@item --import
2111Read an archive from the standard input, and import the files listed
2112therein into the store. Abort if the archive has an invalid digital
f82cc5fd
LC
2113signature, or if it is signed by a public key not among the authorized
2114keys (see @code{--authorize} below.)
554f26ec 2115
87236aed
LC
2116@item --missing
2117Read a list of store file names from the standard input, one per line,
2118and write on the standard output the subset of these files missing from
2119the store.
2120
554f26ec 2121@item --generate-key[=@var{parameters}]
f82cc5fd 2122@cindex signing, archives
f97c9175 2123Generate a new key pair for the daemon. This is a prerequisite before
554f26ec
LC
2124archives can be exported with @code{--export}. Note that this operation
2125usually takes time, because it needs to gather enough entropy to
2126generate the key pair.
2127
2128The generated key pair is typically stored under @file{/etc/guix}, in
2129@file{signing-key.pub} (public key) and @file{signing-key.sec} (private
867d8473
LC
2130key, which must be kept secret.) When @var{parameters} is omitted,
2131an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt
2132versions before 1.6.0, it is a 4096-bit RSA key.
f97c9175 2133Alternatively, @var{parameters} can specify
554f26ec
LC
2134@code{genkey} parameters suitable for Libgcrypt (@pxref{General
2135public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The
2136Libgcrypt Reference Manual}).
f82cc5fd
LC
2137
2138@item --authorize
2139@cindex authorizing, archives
2140Authorize imports signed by the public key passed on standard input.
2141The public key must be in ``s-expression advanced format''---i.e., the
2142same format as the @file{signing-key.pub} file.
2143
2144The list of authorized keys is kept in the human-editable file
2145@file{/etc/guix/acl}. The file contains
2146@url{http://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format
2147s-expressions''} and is structured as an access-control list in the
2148@url{http://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure
2149(SPKI)}.
c6f8e9dd
LC
2150
2151@item --extract=@var{directory}
2152@itemx -x @var{directory}
2153Read a single-item archive as served by substitute servers
2154(@pxref{Substitutes}) and extract it to @var{directory}. This is a
2155low-level operation needed in only very narrow use cases; see below.
2156
2157For example, the following command extracts the substitute for Emacs
2158served by @code{hydra.gnu.org} to @file{/tmp/emacs}:
2159
2160@example
2161$ wget -O - \
2162 http://hydra.gnu.org/nar/@dots{}-emacs-24.5 \
2163 | bunzip2 | guix archive -x /tmp/emacs
2164@end example
2165
2166Single-item archives are different from multiple-item archives produced
2167by @command{guix archive --export}; they contain a single store item,
2168and they do @emph{not} embed a signature. Thus this operation does
2169@emph{no} signature verification and its output should be considered
2170unsafe.
2171
2172The primary purpose of this operation is to facilitate inspection of
2173archive contents coming from possibly untrusted substitute servers.
2174
760c60d6
LC
2175@end table
2176
c554de89
AK
2177@c *********************************************************************
2178@include emacs.texi
760c60d6 2179
568717fd
LC
2180@c *********************************************************************
2181@node Programming Interface
2182@chapter Programming Interface
2183
3dc1970d
LC
2184GNU Guix provides several Scheme programming interfaces (APIs) to
2185define, build, and query packages. The first interface allows users to
2186write high-level package definitions. These definitions refer to
2187familiar packaging concepts, such as the name and version of a package,
2188its build system, and its dependencies. These definitions can then be
2189turned into concrete build actions.
2190
ba55b1cb 2191Build actions are performed by the Guix daemon, on behalf of users. In a
3dc1970d 2192standard setup, the daemon has write access to the store---the
834129e0 2193@file{/gnu/store} directory---whereas users do not. The recommended
3dc1970d
LC
2194setup also has the daemon perform builds in chroots, under a specific
2195build users, to minimize interference with the rest of the system.
2196
2197@cindex derivation
2198Lower-level APIs are available to interact with the daemon and the
2199store. To instruct the daemon to perform a build action, users actually
2200provide it with a @dfn{derivation}. A derivation is a low-level
2201representation of the build actions to be taken, and the environment in
2202which they should occur---derivations are to package definitions what
49ad317a
LC
2203assembly is to C programs. The term ``derivation'' comes from the fact
2204that build results @emph{derive} from them.
3dc1970d
LC
2205
2206This chapter describes all these APIs in turn, starting from high-level
2207package definitions.
2208
568717fd 2209@menu
b860f382 2210* Defining Packages:: Defining new packages.
7458bd0a 2211* Build Systems:: Specifying how packages are built.
b860f382
LC
2212* The Store:: Manipulating the package store.
2213* Derivations:: Low-level interface to package derivations.
2214* The Store Monad:: Purely functional interface to the store.
21b679f6 2215* G-Expressions:: Manipulating build expressions.
568717fd
LC
2216@end menu
2217
2218@node Defining Packages
2219@section Defining Packages
2220
3dc1970d
LC
2221The high-level interface to package definitions is implemented in the
2222@code{(guix packages)} and @code{(guix build-system)} modules. As an
2223example, the package definition, or @dfn{recipe}, for the GNU Hello
2224package looks like this:
2225
2226@example
e7f34eb0
LC
2227(define-module (gnu packages hello)
2228 #:use-module (guix packages)
2229 #:use-module (guix download)
2230 #:use-module (guix build-system gnu)
a6dcdcac
SB
2231 #:use-module (guix licenses)
2232 #:use-module (gnu packages gawk))
b22a12fd 2233
79f5dd59 2234(define-public hello
3dc1970d
LC
2235 (package
2236 (name "hello")
17d8e33f 2237 (version "2.10")
3dc1970d 2238 (source (origin
17d8e33f
ML
2239 (method url-fetch)
2240 (uri (string-append "mirror://gnu/hello/hello-" version
2241 ".tar.gz"))
2242 (sha256
2243 (base32
2244 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
3dc1970d 2245 (build-system gnu-build-system)
7458bd0a 2246 (arguments `(#:configure-flags '("--enable-silent-rules")))
3dc1970d 2247 (inputs `(("gawk" ,gawk)))
7458bd0a
LC
2248 (synopsis "Hello, GNU world: An example GNU package")
2249 (description "Guess what GNU Hello prints!")
3dc1970d 2250 (home-page "http://www.gnu.org/software/hello/")
b22a12fd 2251 (license gpl3+)))
3dc1970d
LC
2252@end example
2253
2254@noindent
2255Without being a Scheme expert, the reader may have guessed the meaning
f97c9175
AE
2256of the various fields here. This expression binds the variable
2257@code{hello} to a @code{<package>} object, which is essentially a record
3dc1970d
LC
2258(@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}).
2259This package object can be inspected using procedures found in the
2260@code{(guix packages)} module; for instance, @code{(package-name hello)}
2261returns---surprise!---@code{"hello"}.
2262
2f7d2d91
LC
2263With luck, you may be able to import part or all of the definition of
2264the package you are interested in from another repository, using the
2265@code{guix import} command (@pxref{Invoking guix import}).
2266
f97c9175 2267In the example above, @var{hello} is defined in a module of its own,
e7f34eb0
LC
2268@code{(gnu packages hello)}. Technically, this is not strictly
2269necessary, but it is convenient to do so: all the packages defined in
2270modules under @code{(gnu packages @dots{})} are automatically known to
2271the command-line tools (@pxref{Package Modules}).
2272
3dc1970d
LC
2273There are a few points worth noting in the above package definition:
2274
2275@itemize
2276@item
a2bf4907
LC
2277The @code{source} field of the package is an @code{<origin>} object
2278(@pxref{origin Reference}, for the complete reference).
3dc1970d
LC
2279Here, the @code{url-fetch} method from @code{(guix download)} is used,
2280meaning that the source is a file to be downloaded over FTP or HTTP.
2281
2282The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of
2283the GNU mirrors defined in @code{(guix download)}.
2284
2285The @code{sha256} field specifies the expected SHA256 hash of the file
2286being downloaded. It is mandatory, and allows Guix to check the
2287integrity of the file. The @code{(base32 @dots{})} form introduces the
6c365eca 2288base32 representation of the hash. You can obtain this information with
210cc920
LC
2289@code{guix download} (@pxref{Invoking guix download}) and @code{guix
2290hash} (@pxref{Invoking guix hash}).
3dc1970d 2291
f9cc8971
LC
2292@cindex patches
2293When needed, the @code{origin} form can also have a @code{patches} field
2294listing patches to be applied, and a @code{snippet} field giving a
2295Scheme expression to modify the source code.
2296
3dc1970d
LC
2297@item
2298@cindex GNU Build System
7458bd0a
LC
2299The @code{build-system} field specifies the procedure to build the
2300package (@pxref{Build Systems}). Here, @var{gnu-build-system}
2301represents the familiar GNU Build System, where packages may be
2302configured, built, and installed with the usual @code{./configure &&
2303make && make check && make install} command sequence.
2304
2305@item
2306The @code{arguments} field specifies options for the build system
2307(@pxref{Build Systems}). Here it is interpreted by
2308@var{gnu-build-system} as a request run @file{configure} with the
2309@code{--enable-silent-rules} flag.
3dc1970d
LC
2310
2311@item
2312The @code{inputs} field specifies inputs to the build process---i.e.,
2313build-time or run-time dependencies of the package. Here, we define an
2314input called @code{"gawk"} whose value is that of the @var{gawk}
2315variable; @var{gawk} is itself bound to a @code{<package>} object.
2316
2317Note that GCC, Coreutils, Bash, and other essential tools do not need to
2318be specified as inputs here. Instead, @var{gnu-build-system} takes care
7458bd0a 2319of ensuring that they are present (@pxref{Build Systems}).
3dc1970d
LC
2320
2321However, any other dependencies need to be specified in the
2322@code{inputs} field. Any dependency not specified here will simply be
2323unavailable to the build process, possibly leading to a build failure.
2324@end itemize
2325
87eafdbd
TUBK
2326@xref{package Reference}, for a full description of possible fields.
2327
2f7d2d91 2328Once a package definition is in place, the
e49951eb 2329package may actually be built using the @code{guix build} command-line
39bee8a2
LC
2330tool (@pxref{Invoking guix build}). You can easily jump back to the
2331package definition using the @command{guix edit} command
2332(@pxref{Invoking guix edit}).
2333@xref{Packaging Guidelines}, for
b4f5e0e8
CR
2334more information on how to test package definitions, and
2335@ref{Invoking guix lint}, for information on how to check a definition
2336for style conformance.
2337
f97c9175 2338Finally, updating the package definition to a new upstream version
7458bd0a
LC
2339can be partly automated by the @command{guix refresh} command
2340(@pxref{Invoking guix refresh}).
3dc1970d
LC
2341
2342Behind the scenes, a derivation corresponding to the @code{<package>}
2343object is first computed by the @code{package-derivation} procedure.
834129e0 2344That derivation is stored in a @code{.drv} file under @file{/gnu/store}.
ba55b1cb 2345The build actions it prescribes may then be realized by using the
3dc1970d
LC
2346@code{build-derivations} procedure (@pxref{The Store}).
2347
2348@deffn {Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]
59688fc4
LC
2349Return the @code{<derivation>} object of @var{package} for @var{system}
2350(@pxref{Derivations}).
3dc1970d
LC
2351
2352@var{package} must be a valid @code{<package>} object, and @var{system}
2353must be a string denoting the target system type---e.g.,
2354@code{"x86_64-linux"} for an x86_64 Linux-based GNU system. @var{store}
2355must be a connection to the daemon, which operates on the store
2356(@pxref{The Store}).
2357@end deffn
568717fd 2358
9c1edabd
LC
2359@noindent
2360@cindex cross-compilation
2361Similarly, it is possible to compute a derivation that cross-builds a
2362package for some other system:
2363
2364@deffn {Scheme Procedure} package-cross-derivation @var{store} @
2365 @var{package} @var{target} [@var{system}]
59688fc4
LC
2366Return the @code{<derivation>} object of @var{package} cross-built from
2367@var{system} to @var{target}.
9c1edabd
LC
2368
2369@var{target} must be a valid GNU triplet denoting the target hardware
2370and operating system, such as @code{"mips64el-linux-gnu"}
2371(@pxref{Configuration Names, GNU configuration triplets,, configure, GNU
2372Configure and Build System}).
2373@end deffn
2374
87eafdbd
TUBK
2375@menu
2376* package Reference :: The package data type.
2377* origin Reference:: The origin data type.
2378@end menu
2379
2380
2381@node package Reference
2382@subsection @code{package} Reference
2383
2384This section summarizes all the options available in @code{package}
2385declarations (@pxref{Defining Packages}).
2386
2387@deftp {Data Type} package
2388This is the data type representing a package recipe.
2389
2390@table @asis
2391@item @code{name}
2392The name of the package, as a string.
2393
2394@item @code{version}
2395The version of the package, as a string.
2396
2397@item @code{source}
2398An origin object telling how the source code for the package should be
2399acquired (@pxref{origin Reference}).
2400
2401@item @code{build-system}
2402The build system that should be used to build the package (@pxref{Build
2403Systems}).
2404
2405@item @code{arguments} (default: @code{'()})
2406The arguments that should be passed to the build system. This is a
2407list, typically containing sequential keyword-value pairs.
2408
2409@item @code{inputs} (default: @code{'()})
70650c68
LC
2410@itemx @code{native-inputs} (default: @code{'()})
2411@itemx @code{propagated-inputs} (default: @code{'()})
2412@cindex inputs, of packages
2413These fields list dependencies of the package. Each one is a list of
2414tuples, where each tuple has a label for the input (a string) as its
2415first element, a package, origin, or derivation as its second element,
2416and optionally the name of the output thereof that should be used, which
2417defaults to @code{"out"} (@pxref{Packages with Multiple Outputs}, for
f97c9175 2418more on package outputs). For example, the list below specifies three
70650c68 2419inputs:
87eafdbd 2420
70650c68
LC
2421@example
2422`(("libffi" ,libffi)
2423 ("libunistring" ,libunistring)
2424 ("glib:bin" ,glib "bin")) ;the "bin" output of Glib
2425@end example
2426
2427@cindex cross compilation, package dependencies
2428The distinction between @code{native-inputs} and @code{inputs} is
2429necessary when considering cross-compilation. When cross-compiling,
2430dependencies listed in @code{inputs} are built for the @emph{target}
2431architecture; conversely, dependencies listed in @code{native-inputs}
2432are built for the architecture of the @emph{build} machine.
2433
f97c9175
AE
2434@code{native-inputs} is typically used to list tools needed at
2435build time, but not at run time, such as Autoconf, Automake, pkg-config,
70650c68
LC
2436Gettext, or Bison. @command{guix lint} can report likely mistakes in
2437this area (@pxref{Invoking guix lint}).
2438
2439@anchor{package-propagated-inputs}
2440Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the
f97c9175
AE
2441specified packages will be automatically installed alongside the package
2442they belong to (@pxref{package-cmd-propagated-inputs, @command{guix
70650c68
LC
2443package}}, for information on how @command{guix package} deals with
2444propagated inputs.)
21461f27 2445
e0508b6b
LC
2446For example this is necessary when a C/C++ library needs headers of
2447another library to compile, or when a pkg-config file refers to another
2448one @i{via} its @code{Requires} field.
2449
f97c9175
AE
2450Another example where @code{propagated-inputs} is useful is for languages
2451that lack a facility to record the run-time search path akin to the
2452@code{RUNPATH}of ELF files; this includes Guile, Python, Perl, GHC, and
e0508b6b
LC
2453more. To ensure that libraries written in those languages can find
2454library code they depend on at run time, run-time dependencies must be
2455listed in @code{propagated-inputs} rather than @code{inputs}.
87eafdbd 2456
87eafdbd
TUBK
2457@item @code{self-native-input?} (default: @code{#f})
2458This is a Boolean field telling whether the package should use itself as
2459a native input when cross-compiling.
2460
2461@item @code{outputs} (default: @code{'("out")})
2462The list of output names of the package. @xref{Packages with Multiple
2463Outputs}, for typical uses of additional outputs.
2464
2465@item @code{native-search-paths} (default: @code{'()})
2466@itemx @code{search-paths} (default: @code{'()})
2467A list of @code{search-path-specification} objects describing
2468search-path environment variables honored by the package.
2469
2470@item @code{replacement} (default: @code{#f})
f97c9175 2471This must be either @code{#f} or a package object that will be used as a
87eafdbd
TUBK
2472@dfn{replacement} for this package. @xref{Security Updates, grafts},
2473for details.
2474
2475@item @code{synopsis}
2476A one-line description of the package.
2477
2478@item @code{description}
2479A more elaborate description of the package.
2480
2481@item @code{license}
f97c9175
AE
2482The license of the package; a value from @code{(guix licenses)},
2483or a list of such values.
87eafdbd
TUBK
2484
2485@item @code{home-page}
2486The URL to the home-page of the package, as a string.
2487
2488@item @code{supported-systems} (default: @var{%supported-systems})
2489The list of systems supported by the package, as strings of the form
2490@code{architecture-kernel}, for example @code{"x86_64-linux"}.
2491
2492@item @code{maintainers} (default: @code{'()})
2493The list of maintainers of the package, as @code{maintainer} objects.
2494
2495@item @code{location} (default: source location of the @code{package} form)
f97c9175 2496The source location of the package. It is useful to override this when
87eafdbd
TUBK
2497inheriting from another package, in which case this field is not
2498automatically corrected.
2499@end table
2500@end deftp
2501
2502
2503@node origin Reference
2504@subsection @code{origin} Reference
2505
2506This section summarizes all the options available in @code{origin}
2507declarations (@pxref{Defining Packages}).
2508
2509@deftp {Data Type} origin
2510This is the data type representing a source code origin.
2511
2512@table @asis
2513@item @code{uri}
2514An object containing the URI of the source. The object type depends on
2515the @code{method} (see below). For example, when using the
2516@var{url-fetch} method of @code{(guix download)}, the valid @code{uri}
2517values are: a URL represented as a string, or a list thereof.
2518
2519@item @code{method}
f97c9175 2520A procedure that handles the URI.
87eafdbd
TUBK
2521
2522Examples include:
2523
2524@table @asis
2525@item @var{url-fetch} from @code{(guix download)}
f97c9175 2526download a file from the HTTP, HTTPS, or FTP URL specified in the
87eafdbd
TUBK
2527@code{uri} field;
2528
2529@item @var{git-fetch} from @code{(guix git-download)}
2530clone the Git version control repository, and check out the revision
2531specified in the @code{uri} field as a @code{git-reference} object; a
2532@code{git-reference} looks like this:
2533
2534@example
2535(git-reference
2536 (url "git://git.debian.org/git/pkg-shadow/shadow")
2537 (commit "v4.1.5.1"))
2538@end example
2539@end table
2540
2541@item @code{sha256}
2542A bytevector containing the SHA-256 hash of the source. Typically the
2543@code{base32} form is used here to generate the bytevector from a
2544base-32 string.
2545
2546@item @code{file-name} (default: @code{#f})
2547The file name under which the source code should be saved. When this is
2548@code{#f}, a sensible default value will be used in most cases. In case
2549the source is fetched from a URL, the file name from the URL will be
f97c9175 2550used. For version control checkouts, it is recommended to provide the
87eafdbd
TUBK
2551file name explicitly because the default is not very descriptive.
2552
2553@item @code{patches} (default: @code{'()})
2554A list of file names containing patches to be applied to the source.
2555
2556@item @code{snippet} (default: @code{#f})
2557A quoted piece of code that will be run in the source directory to make
2558any modifications, which is sometimes more convenient than a patch.
2559
2560@item @code{patch-flags} (default: @code{'("-p1")})
2561A list of command-line flags that should be passed to the @code{patch}
2562command.
2563
2564@item @code{patch-inputs} (default: @code{#f})
2565Input packages or derivations to the patching process. When this is
2566@code{#f}, the usual set of inputs necessary for patching are provided,
2567such as GNU@tie{}Patch.
2568
2569@item @code{modules} (default: @code{'()})
2570A list of Guile modules that should be loaded during the patching
2571process and while running the code in the @code{snippet} field.
2572
2573@item @code{imported-modules} (default: @code{'()})
2574The list of Guile modules to import in the patch derivation, for use by
2575the @code{snippet}.
2576
2577@item @code{patch-guile} (default: @code{#f})
2578The Guile package that should be used in the patching process. When
2579this is @code{#f}, a sensible default is used.
2580@end table
2581@end deftp
2582
9c1edabd 2583
7458bd0a
LC
2584@node Build Systems
2585@section Build Systems
2586
2587@cindex build system
2588Each package definition specifies a @dfn{build system} and arguments for
2589that build system (@pxref{Defining Packages}). This @code{build-system}
f97c9175 2590field represents the build procedure of the package, as well as implicit
7458bd0a
LC
2591dependencies of that build procedure.
2592
2593Build systems are @code{<build-system>} objects. The interface to
2594create and manipulate them is provided by the @code{(guix build-system)}
2595module, and actual build systems are exported by specific modules.
2596
f5fd4fd2 2597@cindex bag (low-level package representation)
0d5a559f
LC
2598Under the hood, build systems first compile package objects to
2599@dfn{bags}. A @dfn{bag} is like a package, but with less
2600ornamentation---in other words, a bag is a lower-level representation of
2601a package, which includes all the inputs of that package, including some
2602that were implicitly added by the build system. This intermediate
2603representation is then compiled to a derivation (@pxref{Derivations}).
2604
7458bd0a
LC
2605Build systems accept an optional list of @dfn{arguments}. In package
2606definitions, these are passed @i{via} the @code{arguments} field
2607(@pxref{Defining Packages}). They are typically keyword arguments
2608(@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU
2609Guile Reference Manual}). The value of these arguments is usually
2610evaluated in the @dfn{build stratum}---i.e., by a Guile process launched
2611by the daemon (@pxref{Derivations}).
2612
2613The main build system is @var{gnu-build-system}, which implements the
f97c9175 2614standard build procedure for GNU and many other packages. It
7458bd0a
LC
2615is provided by the @code{(guix build-system gnu)} module.
2616
2617@defvr {Scheme Variable} gnu-build-system
2618@var{gnu-build-system} represents the GNU Build System, and variants
2619thereof (@pxref{Configuration, configuration and makefile conventions,,
2620standards, GNU Coding Standards}).
2621
2622@cindex build phases
f97c9175 2623In a nutshell, packages using it are configured, built, and installed with
7458bd0a
LC
2624the usual @code{./configure && make && make check && make install}
2625command sequence. In practice, a few additional steps are often needed.
2626All these steps are split up in separate @dfn{phases},
2627notably@footnote{Please see the @code{(guix build gnu-build-system)}
2628modules for more details about the build phases.}:
2629
2630@table @code
2631@item unpack
2632Unpack the source tarball, and change the current directory to the
2633extracted source tree. If the source is actually a directory, copy it
2634to the build tree, and enter that directory.
2635
2636@item patch-source-shebangs
2637Patch shebangs encountered in source files so they refer to the right
2638store file names. For instance, this changes @code{#!/bin/sh} to
2639@code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}.
2640
2641@item configure
2642Run the @file{configure} script with a number of default options, such
2643as @code{--prefix=/gnu/store/@dots{}}, as well as the options specified
2644by the @code{#:configure-flags} argument.
2645
2646@item build
2647Run @code{make} with the list of flags specified with
0917e80e 2648@code{#:make-flags}. If the @code{#:parallel-build?} argument is true
7458bd0a
LC
2649(the default), build with @code{make -j}.
2650
2651@item check
2652Run @code{make check}, or some other target specified with
2653@code{#:test-target}, unless @code{#:tests? #f} is passed. If the
2654@code{#:parallel-tests?} argument is true (the default), run @code{make
2655check -j}.
2656
2657@item install
2658Run @code{make install} with the flags listed in @code{#:make-flags}.
2659
2660@item patch-shebangs
2661Patch shebangs on the installed executable files.
2662
2663@item strip
2664Strip debugging symbols from ELF files (unless @code{#:strip-binaries?}
2665is false), copying them to the @code{debug} output when available
2666(@pxref{Installing Debugging Files}).
2667@end table
2668
2669@vindex %standard-phases
2670The build-side module @code{(guix build gnu-build-system)} defines
2671@var{%standard-phases} as the default list of build phases.
2672@var{%standard-phases} is a list of symbol/procedure pairs, where the
2673procedure implements the actual phase.
2674
2675The list of phases used for a particular package can be changed with the
2676@code{#:phases} parameter. For instance, passing:
2677
2678@example
c2c5dc79 2679#:phases (modify-phases %standard-phases (delete 'configure))
7458bd0a
LC
2680@end example
2681
9bf404e9 2682means that all the phases described above will be used, except the
7458bd0a
LC
2683@code{configure} phase.
2684
2685In addition, this build system ensures that the ``standard'' environment
2686for GNU packages is available. This includes tools such as GCC, libc,
2687Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix
f97c9175
AE
2688build-system gnu)} module for a complete list). We call these the
2689@dfn{implicit inputs} of a package, because package definitions do not
7458bd0a
LC
2690have to mention them.
2691@end defvr
2692
2693Other @code{<build-system>} objects are defined to support other
2694conventions and tools used by free software packages. They inherit most
2695of @var{gnu-build-system}, and differ mainly in the set of inputs
2696implicitly added to the build process, and in the list of phases
2697executed. Some of these build systems are listed below.
2698
2699@defvr {Scheme Variable} cmake-build-system
2700This variable is exported by @code{(guix build-system cmake)}. It
2701implements the build procedure for packages using the
2702@url{http://www.cmake.org, CMake build tool}.
2703
2704It automatically adds the @code{cmake} package to the set of inputs.
2705Which package is used can be specified with the @code{#:cmake}
2706parameter.
9849cfc1
LC
2707
2708The @code{#:configure-flags} parameter is taken as a list of flags
2709passed to the @command{cmake} command. The @code{#:build-type}
2710parameter specifies in abstract terms the flags passed to the compiler;
2711it defaults to @code{"RelWithDebInfo"} (short for ``release mode with
2712debugging information''), which roughly means that code is compiled with
2713@code{-O2 -g}, as is the case for Autoconf-based packages by default.
7458bd0a
LC
2714@end defvr
2715
3afcf52b
FB
2716@defvr {Scheme Variable} glib-or-gtk-build-system
2717This variable is exported by @code{(guix build-system glib-or-gtk)}. It
2718is intended for use with packages making use of GLib or GTK+.
2719
2720This build system adds the following two phases to the ones defined by
2721@var{gnu-build-system}:
2722
2723@table @code
2724@item glib-or-gtk-wrap
f97c9175
AE
2725The phase @code{glib-or-gtk-wrap} ensures that programs in
2726@file{bin/} are able to find GLib ``schemas'' and
3afcf52b
FB
2727@uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+
2728modules}. This is achieved by wrapping the programs in launch scripts
2729that appropriately set the @code{XDG_DATA_DIRS} and @code{GTK_PATH}
2730environment variables.
2731
73aa8ddb
LC
2732It is possible to exclude specific package outputs from that wrapping
2733process by listing their names in the
2734@code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful
2735when an output is known not to contain any GLib or GTK+ binaries, and
2736where wrapping would gratuitously add a dependency of that output on
2737GLib and GTK+.
2738
3afcf52b 2739@item glib-or-gtk-compile-schemas
f97c9175 2740The phase @code{glib-or-gtk-compile-schemas} makes sure that all
3afcf52b 2741@uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html,
f97c9175 2742GSettings schemas} of GLib are compiled. Compilation is performed by the
3afcf52b
FB
2743@command{glib-compile-schemas} program. It is provided by the package
2744@code{glib:bin} which is automatically imported by the build system.
2745The @code{glib} package providing @command{glib-compile-schemas} can be
2746specified with the @code{#:glib} parameter.
2747@end table
2748
2749Both phases are executed after the @code{install} phase.
2750@end defvr
2751
7458bd0a
LC
2752@defvr {Scheme Variable} python-build-system
2753This variable is exported by @code{(guix build-system python)}. It
2754implements the more or less standard build procedure used by Python
2755packages, which consists in running @code{python setup.py build} and
2756then @code{python setup.py install --prefix=/gnu/store/@dots{}}.
2757
2758For packages that install stand-alone Python programs under @code{bin/},
f97c9175 2759it takes care of wrapping these programs so that their @code{PYTHONPATH}
7458bd0a
LC
2760environment variable points to all the Python libraries they depend on.
2761
2762Which Python package is used can be specified with the @code{#:python}
2763parameter.
2764@end defvr
2765
2766@defvr {Scheme Variable} perl-build-system
2767This variable is exported by @code{(guix build-system perl)}. It
2d2a53fc
EB
2768implements the standard build procedure for Perl packages, which either
2769consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}},
2770followed by @code{Build} and @code{Build install}; or in running
2771@code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by
f97c9175 2772@code{make} and @code{make install}, depending on which of
2d2a53fc
EB
2773@code{Build.PL} or @code{Makefile.PL} is present in the package
2774distribution. Preference is given to the former if both @code{Build.PL}
2775and @code{Makefile.PL} exist in the package distribution. This
2776preference can be reversed by specifying @code{#t} for the
2777@code{#:make-maker?} parameter.
2778
2779The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation
2780passes flags specified by the @code{#:make-maker-flags} or
2781@code{#:module-build-flags} parameter, respectively.
7458bd0a
LC
2782
2783Which Perl package is used can be specified with @code{#:perl}.
2784@end defvr
2785
f8f3bef6
RW
2786@defvr {Scheme Variable} r-build-system
2787This variable is exported by @code{(guix build-system r)}. It
2788implements the build procedure used by @uref{http://r-project.org, R}
2789packages, which essentially is little more than running @code{R CMD
2790INSTALL --library=/gnu/store/@dots{}} in an environment where
2791@code{R_LIBS_SITE} contains the paths to all R package inputs. Tests
2792are run after installation using the R function
2793@code{tools::testInstalledPackage}.
2794@end defvr
2795
c08f9818
DT
2796@defvr {Scheme Variable} ruby-build-system
2797This variable is exported by @code{(guix build-system ruby)}. It
2798implements the RubyGems build procedure used by Ruby packages, which
2799involves running @code{gem build} followed by @code{gem install}.
2800
5dc87623
DT
2801The @code{source} field of a package that uses this build system
2802typically references a gem archive, since this is the format that Ruby
2803developers use when releasing their software. The build system unpacks
2804the gem archive, potentially patches the source, runs the test suite,
2805repackages the gem, and installs it. Additionally, directories and
2806tarballs may be referenced to allow building unreleased gems from Git or
2807a traditional source release tarball.
e83c6d00 2808
c08f9818 2809Which Ruby package is used can be specified with the @code{#:ruby}
6e9f2913
PP
2810parameter. A list of additional flags to be passed to the @command{gem}
2811command can be specified with the @code{#:gem-flags} parameter.
c08f9818 2812@end defvr
7458bd0a 2813
a677c726
RW
2814@defvr {Scheme Variable} waf-build-system
2815This variable is exported by @code{(guix build-system waf)}. It
2816implements a build procedure around the @code{waf} script. The common
2817phases---@code{configure}, @code{build}, and @code{install}---are
2818implemented by passing their names as arguments to the @code{waf}
2819script.
2820
2821The @code{waf} script is executed by the Python interpreter. Which
2822Python package is used to run the script can be specified with the
2823@code{#:python} parameter.
2824@end defvr
2825
14dfdf2e
FB
2826@defvr {Scheme Variable} haskell-build-system
2827This variable is exported by @code{(guix build-system haskell)}. It
2828implements the Cabal build procedure used by Haskell packages, which
2829involves running @code{runhaskell Setup.hs configure
2830--prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}.
2831Instead of installing the package by running @code{runhaskell Setup.hs
2832install}, to avoid trying to register libraries in the read-only
2833compiler store directory, the build system uses @code{runhaskell
2834Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In
2835addition, the build system generates the package documentation by
2836running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f}
2837is passed. Optional Haddock parameters can be passed with the help of
2838the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is
2839not found, the build system looks for @code{Setup.lhs} instead.
2840
2841Which Haskell compiler is used can be specified with the @code{#:haskell}
a54bd6d7 2842parameter which defaults to @code{ghc}.
14dfdf2e
FB
2843@end defvr
2844
e9137a53
FB
2845@defvr {Scheme Variable} emacs-build-system
2846This variable is exported by @code{(guix build-system emacs)}. It
f97c9175
AE
2847implements an installation procedure similar to the packaging system
2848of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
e9137a53
FB
2849
2850It first creates the @code{@var{package}-autoloads.el} file, then it
2851byte compiles all Emacs Lisp files. Differently from the Emacs
2852packaging system, the Info documentation files are moved to the standard
2853documentation directory and the @file{dir} file is deleted. Each
2854package is installed in its own directory under
2855@file{share/emacs/site-lisp/guix.d}.
2856@end defvr
2857
7458bd0a
LC
2858Lastly, for packages that do not need anything as sophisticated, a
2859``trivial'' build system is provided. It is trivial in the sense that
2860it provides basically no support: it does not pull any implicit inputs,
2861and does not have a notion of build phases.
2862
2863@defvr {Scheme Variable} trivial-build-system
2864This variable is exported by @code{(guix build-system trivial)}.
2865
2866This build system requires a @code{#:builder} argument. This argument
f97c9175 2867must be a Scheme expression that builds the package output(s)---as
7458bd0a
LC
2868with @code{build-expression->derivation} (@pxref{Derivations,
2869@code{build-expression->derivation}}).
2870@end defvr
2871
568717fd
LC
2872@node The Store
2873@section The Store
2874
e531ac2a
LC
2875@cindex store
2876@cindex store paths
2877
f97c9175
AE
2878Conceptually, the @dfn{store} is the place where derivations that have
2879been built successfully are stored---by default, @file{/gnu/store}.
e531ac2a 2880Sub-directories in the store are referred to as @dfn{store paths}. The
4988dd40 2881store has an associated database that contains information such as the
e531ac2a
LC
2882store paths referred to by each store path, and the list of @emph{valid}
2883store paths---paths that result from a successful build.
2884
2885The store is always accessed by the daemon on behalf of its clients
2886(@pxref{Invoking guix-daemon}). To manipulate the store, clients
f97c9175
AE
2887connect to the daemon over a Unix-domain socket, send requests to it,
2888and read the result---these are remote procedure calls, or RPCs.
e531ac2a
LC
2889
2890The @code{(guix store)} module provides procedures to connect to the
2891daemon, and to perform RPCs. These are described below.
2892
2893@deffn {Scheme Procedure} open-connection [@var{file}] [#:reserve-space? #t]
2894Connect to the daemon over the Unix-domain socket at @var{file}. When
2895@var{reserve-space?} is true, instruct it to reserve a little bit of
2896extra space on the file system so that the garbage collector can still
f97c9175 2897operate should the disk become full. Return a server object.
e531ac2a
LC
2898
2899@var{file} defaults to @var{%default-socket-path}, which is the normal
2900location given the options that were passed to @command{configure}.
2901@end deffn
2902
2903@deffn {Scheme Procedure} close-connection @var{server}
2904Close the connection to @var{server}.
2905@end deffn
2906
2907@defvr {Scheme Variable} current-build-output-port
2908This variable is bound to a SRFI-39 parameter, which refers to the port
2909where build and error logs sent by the daemon should be written.
2910@end defvr
2911
2912Procedures that make RPCs all take a server object as their first
2913argument.
2914
2915@deffn {Scheme Procedure} valid-path? @var{server} @var{path}
06b76acc
LC
2916@cindex invalid store items
2917Return @code{#t} when @var{path} designates a valid store item and
2918@code{#f} otherwise (an invalid item may exist on disk but still be
2919invalid, for instance because it is the result of an aborted or failed
2920build.)
2921
2922A @code{&nix-protocol-error} condition is raised if @var{path} is not
2923prefixed by the store directory (@file{/gnu/store}).
e531ac2a
LC
2924@end deffn
2925
cfbf9160 2926@deffn {Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]
e531ac2a
LC
2927Add @var{text} under file @var{name} in the store, and return its store
2928path. @var{references} is the list of store paths referred to by the
2929resulting store path.
2930@end deffn
2931
874e6874 2932@deffn {Scheme Procedure} build-derivations @var{server} @var{derivations}
59688fc4
LC
2933Build @var{derivations} (a list of @code{<derivation>} objects or
2934derivation paths), and return when the worker is done building them.
2935Return @code{#t} on success.
874e6874
LC
2936@end deffn
2937
b860f382
LC
2938Note that the @code{(guix monads)} module provides a monad as well as
2939monadic versions of the above procedures, with the goal of making it
2940more convenient to work with code that accesses the store (@pxref{The
2941Store Monad}).
2942
e531ac2a
LC
2943@c FIXME
2944@i{This section is currently incomplete.}
568717fd
LC
2945
2946@node Derivations
2947@section Derivations
2948
874e6874
LC
2949@cindex derivations
2950Low-level build actions and the environment in which they are performed
2951are represented by @dfn{derivations}. A derivation contain the
2952following pieces of information:
2953
2954@itemize
2955@item
2956The outputs of the derivation---derivations produce at least one file or
2957directory in the store, but may produce more.
2958
2959@item
2960The inputs of the derivations, which may be other derivations or plain
2961files in the store (patches, build scripts, etc.)
2962
2963@item
2964The system type targeted by the derivation---e.g., @code{x86_64-linux}.
2965
2966@item
2967The file name of a build script in the store, along with the arguments
2968to be passed.
2969
2970@item
2971A list of environment variables to be defined.
2972
2973@end itemize
2974
2975@cindex derivation path
2976Derivations allow clients of the daemon to communicate build actions to
2977the store. They exist in two forms: as an in-memory representation,
2978both on the client- and daemon-side, and as files in the store whose
2979name end in @code{.drv}---these files are referred to as @dfn{derivation
2980paths}. Derivations paths can be passed to the @code{build-derivations}
2981procedure to perform the build actions they prescribe (@pxref{The
2982Store}).
2983
2984The @code{(guix derivations)} module provides a representation of
2985derivations as Scheme objects, along with procedures to create and
2986otherwise manipulate derivations. The lowest-level primitive to create
2987a derivation is the @code{derivation} procedure:
2988
1909431c
LC
2989@deffn {Scheme Procedure} derivation @var{store} @var{name} @var{builder} @
2990 @var{args} [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
2096ef47 2991 [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @
1909431c 2992 [#:system (%current-system)] [#:references-graphs #f] @
4a6aeb67
LC
2993 [#:allowed-references #f] [#:leaked-env-vars #f] [#:local-build? #f] @
2994 [#:substitutable? #t]
59688fc4
LC
2995Build a derivation with the given arguments, and return the resulting
2996@code{<derivation>} object.
874e6874 2997
2096ef47 2998When @var{hash} and @var{hash-algo} are given, a
874e6874 2999@dfn{fixed-output derivation} is created---i.e., one whose result is
36bbbbd1
LC
3000known in advance, such as a file download. If, in addition,
3001@var{recursive?} is true, then that fixed output may be an executable
3002file or a directory and @var{hash} must be the hash of an archive
3003containing this output.
5b0c9d16 3004
858e9282 3005When @var{references-graphs} is true, it must be a list of file
5b0c9d16
LC
3006name/store path pairs. In that case, the reference graph of each store
3007path is exported in the build environment in the corresponding file, in
3008a simple text format.
1909431c 3009
b53be755
LC
3010When @var{allowed-references} is true, it must be a list of store items
3011or outputs that the derivation's output may refer to.
3012
c0468155
LC
3013When @var{leaked-env-vars} is true, it must be a list of strings
3014denoting environment variables that are allowed to ``leak'' from the
3015daemon's environment to the build environment. This is only applicable
3016to fixed-output derivations---i.e., when @var{hash} is true. The main
3017use is to allow variables such as @code{http_proxy} to be passed to
3018derivations that download files.
3019
1909431c
LC
3020When @var{local-build?} is true, declare that the derivation is not a
3021good candidate for offloading and should rather be built locally
3022(@pxref{Daemon Offload Setup}). This is the case for small derivations
3023where the costs of data transfers would outweigh the benefits.
4a6aeb67
LC
3024
3025When @var{substitutable?} is false, declare that substitutes of the
3026derivation's output should not be used (@pxref{Substitutes}). This is
3027useful, for instance, when building packages that capture details of the
3028host CPU instruction set.
874e6874
LC
3029@end deffn
3030
3031@noindent
3032Here's an example with a shell script as its builder, assuming
3033@var{store} is an open connection to the daemon, and @var{bash} points
3034to a Bash executable in the store:
3035
3036@lisp
3037(use-modules (guix utils)
3038 (guix store)
3039 (guix derivations))
3040
59688fc4
LC
3041(let ((builder ; add the Bash script to the store
3042 (add-text-to-store store "my-builder.sh"
3043 "echo hello world > $out\n" '())))
3044 (derivation store "foo"
3045 bash `("-e" ,builder)
21b679f6 3046 #:inputs `((,bash) (,builder))
59688fc4 3047 #:env-vars '(("HOME" . "/homeless"))))
834129e0 3048@result{} #<derivation /gnu/store/@dots{}-foo.drv => /gnu/store/@dots{}-foo>
874e6874
LC
3049@end lisp
3050
21b679f6
LC
3051As can be guessed, this primitive is cumbersome to use directly. A
3052better approach is to write build scripts in Scheme, of course! The
3053best course of action for that is to write the build code as a
3054``G-expression'', and to pass it to @code{gexp->derivation}. For more
6621cdb6 3055information, @pxref{G-Expressions}.
21b679f6 3056
f2fadbc1
AE
3057Once upon a time, @code{gexp->derivation} did not exist and constructing
3058derivations with build code written in Scheme was achieved with
3059@code{build-expression->derivation}, documented below. This procedure
3060is now deprecated in favor of the much nicer @code{gexp->derivation}.
3061
3062@deffn {Scheme Procedure} build-expression->derivation @var{store} @
3063 @var{name} @var{exp} @
3064 [#:system (%current-system)] [#:inputs '()] @
3065 [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
3066 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
3067 [#:references-graphs #f] [#:allowed-references #f] @
3068 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
3069Return a derivation that executes Scheme expression @var{exp} as a
3070builder for derivation @var{name}. @var{inputs} must be a list of
3071@code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted,
3072@code{"out"} is assumed. @var{modules} is a list of names of Guile
3073modules from the current search path to be copied in the store,
3074compiled, and made available in the load path during the execution of
3075@var{exp}---e.g., @code{((guix build utils) (guix build
3076gnu-build-system))}.
3077
3078@var{exp} is evaluated in an environment where @code{%outputs} is bound
3079to a list of output/path pairs, and where @code{%build-inputs} is bound
3080to a list of string/output-path pairs made from @var{inputs}.
3081Optionally, @var{env-vars} is a list of string pairs specifying the name
3082and value of environment variables visible to the builder. The builder
3083terminates by passing the result of @var{exp} to @code{exit}; thus, when
3084@var{exp} returns @code{#f}, the build is considered to have failed.
3085
3086@var{exp} is built using @var{guile-for-build} (a derivation). When
3087@var{guile-for-build} is omitted or is @code{#f}, the value of the
3088@code{%guile-for-build} fluid is used instead.
3089
3090See the @code{derivation} procedure for the meaning of
3091@var{references-graphs}, @var{allowed-references}, @var{local-build?},
3092and @var{substitutable?}.
3093@end deffn
3094
3095@noindent
3096Here's an example of a single-output derivation that creates a directory
3097containing one file:
3098
3099@lisp
3100(let ((builder '(let ((out (assoc-ref %outputs "out")))
3101 (mkdir out) ; create /gnu/store/@dots{}-goo
3102 (call-with-output-file (string-append out "/test")
3103 (lambda (p)
3104 (display '(hello guix) p))))))
3105 (build-expression->derivation store "goo" builder))
3106
3107@result{} #<derivation /gnu/store/@dots{}-goo.drv => @dots{}>
3108@end lisp
3109
568717fd 3110
b860f382
LC
3111@node The Store Monad
3112@section The Store Monad
3113
3114@cindex monad
3115
3116The procedures that operate on the store described in the previous
3117sections all take an open connection to the build daemon as their first
3118argument. Although the underlying model is functional, they either have
3119side effects or depend on the current state of the store.
3120
3121The former is inconvenient: the connection to the build daemon has to be
3122carried around in all those functions, making it impossible to compose
3123functions that do not take that parameter with functions that do. The
3124latter can be problematic: since store operations have side effects
3125and/or depend on external state, they have to be properly sequenced.
3126
3127@cindex monadic values
3128@cindex monadic functions
3129This is where the @code{(guix monads)} module comes in. This module
3130provides a framework for working with @dfn{monads}, and a particularly
3131useful monad for our uses, the @dfn{store monad}. Monads are a
3132construct that allows two things: associating ``context'' with values
3133(in our case, the context is the store), and building sequences of
561fb6c3 3134computations (here computations include accesses to the store.) Values
b860f382
LC
3135in a monad---values that carry this additional context---are called
3136@dfn{monadic values}; procedures that return such values are called
3137@dfn{monadic procedures}.
3138
3139Consider this ``normal'' procedure:
3140
3141@example
45adbd62
LC
3142(define (sh-symlink store)
3143 ;; Return a derivation that symlinks the 'bash' executable.
3144 (let* ((drv (package-derivation store bash))
3145 (out (derivation->output-path drv))
3146 (sh (string-append out "/bin/bash")))
3147 (build-expression->derivation store "sh"
3148 `(symlink ,sh %output))))
b860f382
LC
3149@end example
3150
c6f30b81
LC
3151Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten
3152as a monadic function:
b860f382
LC
3153
3154@example
45adbd62 3155(define (sh-symlink)
b860f382 3156 ;; Same, but return a monadic value.
c6f30b81
LC
3157 (mlet %store-monad ((drv (package->derivation bash)))
3158 (gexp->derivation "sh"
3159 #~(symlink (string-append #$drv "/bin/bash")
3160 #$output))))
b860f382
LC
3161@end example
3162
c6f30b81
LC
3163There several things to note in the second version: the @code{store}
3164parameter is now implicit and is ``threaded'' in the calls to the
3165@code{package->derivation} and @code{gexp->derivation} monadic
3166procedures, and the monadic value returned by @code{package->derivation}
3167is @dfn{bound} using @code{mlet} instead of plain @code{let}.
3168
3169As it turns out, the call to @code{package->derivation} can even be
3170omitted since it will take place implicitly, as we will see later
3171(@pxref{G-Expressions}):
3172
3173@example
3174(define (sh-symlink)
3175 (gexp->derivation "sh"
3176 #~(symlink (string-append #$bash "/bin/bash")
3177 #$output)))
3178@end example
b860f382 3179
7ce21611
LC
3180@c See
3181@c <https://syntaxexclamation.wordpress.com/2014/06/26/escaping-continuations/>
3182@c for the funny quote.
3183Calling the monadic @code{sh-symlink} has no effect. As someone once
3184said, ``you exit a monad like you exit a building on fire: by running''.
3185So, to exit the monad and get the desired effect, one must use
3186@code{run-with-store}:
b860f382
LC
3187
3188@example
8e9aa37f
CAW
3189(run-with-store (open-connection) (sh-symlink))
3190@result{} /gnu/store/...-sh-symlink
b860f382
LC
3191@end example
3192
f97c9175 3193Note that the @code{(guix monad-repl)} module extends the Guile REPL with
b9b86078 3194new ``meta-commands'' to make it easier to deal with monadic procedures:
f97c9175 3195@code{run-in-store}, and @code{enter-store-monad}. The former is used
b9b86078
LC
3196to ``run'' a single monadic value through the store:
3197
3198@example
3199scheme@@(guile-user)> ,run-in-store (package->derivation hello)
3200$1 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3201@end example
3202
3203The latter enters a recursive REPL, where all the return values are
3204automatically run through the store:
3205
3206@example
3207scheme@@(guile-user)> ,enter-store-monad
3208store-monad@@(guile-user) [1]> (package->derivation hello)
3209$2 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3210store-monad@@(guile-user) [1]> (text-file "foo" "Hello!")
3211$3 = "/gnu/store/@dots{}-foo"
3212store-monad@@(guile-user) [1]> ,q
3213scheme@@(guile-user)>
3214@end example
3215
3216@noindent
3217Note that non-monadic values cannot be returned in the
3218@code{store-monad} REPL.
3219
e87f0591
LC
3220The main syntactic forms to deal with monads in general are provided by
3221the @code{(guix monads)} module and are described below.
b860f382
LC
3222
3223@deffn {Scheme Syntax} with-monad @var{monad} @var{body} ...
3224Evaluate any @code{>>=} or @code{return} forms in @var{body} as being
3225in @var{monad}.
3226@end deffn
3227
3228@deffn {Scheme Syntax} return @var{val}
3229Return a monadic value that encapsulates @var{val}.
3230@end deffn
3231
751630c9 3232@deffn {Scheme Syntax} >>= @var{mval} @var{mproc} ...
b860f382 3233@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic
751630c9
LC
3234procedures @var{mproc}@dots{}@footnote{This operation is commonly
3235referred to as ``bind'', but that name denotes an unrelated procedure in
3236Guile. Thus we use this somewhat cryptic symbol inherited from the
3237Haskell language.}. There can be one @var{mproc} or several of them, as
3238in this example:
3239
3240@example
3241(run-with-state
3242 (with-monad %state-monad
3243 (>>= (return 1)
3244 (lambda (x) (return (+ 1 x)))
3245 (lambda (x) (return (* 2 x)))))
3246 'some-state)
3247
3248@result{} 4
3249@result{} some-state
3250@end example
b860f382
LC
3251@end deffn
3252
3253@deffn {Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @
3254 @var{body} ...
3255@deffnx {Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @
3256 @var{body} ...
3257Bind the variables @var{var} to the monadic values @var{mval} in
3258@var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the
3259``normal'' value @var{val}, as per @code{let}.
3260
3261@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let}
3262(@pxref{Local Bindings,,, guile, GNU Guile Reference Manual}).
3263@end deffn
3264
405a9d4e
LC
3265@deffn {Scheme System} mbegin @var{monad} @var{mexp} ...
3266Bind @var{mexp} and the following monadic expressions in sequence,
3267returning the result of the last expression.
3268
3269This is akin to @code{mlet}, except that the return values of the
3270monadic expressions are ignored. In that sense, it is analogous to
3271@code{begin}, but applied to monadic expressions.
3272@end deffn
3273
561fb6c3
LC
3274@cindex state monad
3275The @code{(guix monads)} module provides the @dfn{state monad}, which
3276allows an additional value---the state---to be @emph{threaded} through
3277monadic procedure calls.
3278
3279@defvr {Scheme Variable} %state-monad
3280The state monad. Procedures in the state monad can access and change
3281the state that is threaded.
3282
3283Consider the example below. The @code{square} procedure returns a value
3284in the state monad. It returns the square of its argument, but also
3285increments the current state value:
3286
3287@example
3288(define (square x)
3289 (mlet %state-monad ((count (current-state)))
3290 (mbegin %state-monad
3291 (set-current-state (+ 1 count))
3292 (return (* x x)))))
3293
3294(run-with-state (sequence %state-monad (map square (iota 3))) 0)
3295@result{} (0 1 4)
3296@result{} 3
3297@end example
3298
3299When ``run'' through @var{%state-monad}, we obtain that additional state
3300value, which is the number of @code{square} calls.
3301@end defvr
3302
3303@deffn {Monadic Procedure} current-state
3304Return the current state as a monadic value.
3305@end deffn
3306
3307@deffn {Monadic Procedure} set-current-state @var{value}
3308Set the current state to @var{value} and return the previous state as a
3309monadic value.
3310@end deffn
3311
3312@deffn {Monadic Procedure} state-push @var{value}
3313Push @var{value} to the current state, which is assumed to be a list,
3314and return the previous state as a monadic value.
3315@end deffn
3316
3317@deffn {Monadic Procedure} state-pop
3318Pop a value from the current state and return it as a monadic value.
3319The state is assumed to be a list.
3320@end deffn
3321
3322@deffn {Scheme Procedure} run-with-state @var{mval} [@var{state}]
3323Run monadic value @var{mval} starting with @var{state} as the initial
3324state. Return two values: the resulting value, and the resulting state.
3325@end deffn
3326
e87f0591
LC
3327The main interface to the store monad, provided by the @code{(guix
3328store)} module, is as follows.
b860f382
LC
3329
3330@defvr {Scheme Variable} %store-monad
561fb6c3
LC
3331The store monad---an alias for @var{%state-monad}.
3332
3333Values in the store monad encapsulate accesses to the store. When its
3334effect is needed, a value of the store monad must be ``evaluated'' by
3335passing it to the @code{run-with-store} procedure (see below.)
b860f382
LC
3336@end defvr
3337
3338@deffn {Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]
3339Run @var{mval}, a monadic value in the store monad, in @var{store}, an
3340open store connection.
3341@end deffn
3342
ad372953 3343@deffn {Monadic Procedure} text-file @var{name} @var{text} [@var{references}]
b860f382 3344Return as a monadic value the absolute file name in the store of the file
ad372953
LC
3345containing @var{text}, a string. @var{references} is a list of store items that the
3346resulting text file refers to; it defaults to the empty list.
45adbd62
LC
3347@end deffn
3348
0a90af15
LC
3349@deffn {Monadic Procedure} interned-file @var{file} [@var{name}] @
3350 [#:recursive? #t]
3351Return the name of @var{file} once interned in the store. Use
3352@var{name} as its store name, or the basename of @var{file} if
3353@var{name} is omitted.
3354
3355When @var{recursive?} is true, the contents of @var{file} are added
3356recursively; if @var{file} designates a flat file and @var{recursive?}
3357is true, its contents are added, and its permission bits are kept.
3358
3359The example below adds a file to the store, under two different names:
3360
3361@example
3362(run-with-store (open-connection)
3363 (mlet %store-monad ((a (interned-file "README"))
3364 (b (interned-file "README" "LEGU-MIN")))
3365 (return (list a b))))
3366
3367@result{} ("/gnu/store/rwm@dots{}-README" "/gnu/store/44i@dots{}-LEGU-MIN")
3368@end example
3369
3370@end deffn
3371
e87f0591
LC
3372The @code{(guix packages)} module exports the following package-related
3373monadic procedures:
3374
b860f382 3375@deffn {Monadic Procedure} package-file @var{package} [@var{file}] @
4231f05b 3376 [#:system (%current-system)] [#:target #f] @
f97c9175
AE
3377 [#:output "out"]
3378Return as a monadic
b860f382
LC
3379value in the absolute file name of @var{file} within the @var{output}
3380directory of @var{package}. When @var{file} is omitted, return the name
4231f05b
LC
3381of the @var{output} directory of @var{package}. When @var{target} is
3382true, use it as a cross-compilation target triplet.
b860f382
LC
3383@end deffn
3384
b860f382 3385@deffn {Monadic Procedure} package->derivation @var{package} [@var{system}]
4231f05b
LC
3386@deffnx {Monadic Procedure} package->cross-derivation @var{package} @
3387 @var{target} [@var{system}]
3388Monadic version of @code{package-derivation} and
3389@code{package-cross-derivation} (@pxref{Defining Packages}).
b860f382
LC
3390@end deffn
3391
3392
21b679f6
LC
3393@node G-Expressions
3394@section G-Expressions
3395
3396@cindex G-expression
3397@cindex build code quoting
3398So we have ``derivations'', which represent a sequence of build actions
3399to be performed to produce an item in the store (@pxref{Derivations}).
f97c9175 3400These build actions are performed when asking the daemon to actually
21b679f6
LC
3401build the derivations; they are run by the daemon in a container
3402(@pxref{Invoking guix-daemon}).
3403
3404@cindex strata of code
f97c9175 3405It should come as no surprise that we like to write these build actions
21b679f6
LC
3406in Scheme. When we do that, we end up with two @dfn{strata} of Scheme
3407code@footnote{The term @dfn{stratum} in this context was coined by
ef4ab0a4
LC
3408Manuel Serrano et al.@: in the context of their work on Hop. Oleg
3409Kiselyov, who has written insightful
3410@url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code
3411on this topic}, refers to this kind of code generation as
3412@dfn{staging}.}: the ``host code''---code that defines packages, talks
3413to the daemon, etc.---and the ``build code''---code that actually
3414performs build actions, such as making directories, invoking
3415@command{make}, etc.
21b679f6
LC
3416
3417To describe a derivation and its build actions, one typically needs to
3418embed build code inside host code. It boils down to manipulating build
f97c9175 3419code as data, and the homoiconicity of Scheme---code has a direct
21b679f6 3420representation as data---comes in handy for that. But we need more than
f97c9175 3421the normal @code{quasiquote} mechanism in Scheme to construct build
21b679f6
LC
3422expressions.
3423
3424The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of
3425S-expressions adapted to build expressions. G-expressions, or
f97c9175 3426@dfn{gexps}, consist essentially of three syntactic forms: @code{gexp},
21b679f6 3427@code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~},
f97c9175
AE
3428@code{#$}, and @code{#$@@}), which are comparable to
3429@code{quasiquote}, @code{unquote}, and @code{unquote-splicing},
3430respectivel (@pxref{Expression Syntax, @code{quasiquote},, guile,
3431GNU Guile Reference Manual}). However, there are major differences:
21b679f6
LC
3432
3433@itemize
3434@item
3435Gexps are meant to be written to a file and run or manipulated by other
3436processes.
3437
3438@item
b39fc6f7
LC
3439When a high-level object such as a package or derivation is unquoted
3440inside a gexp, the result is as if its output file name had been
3441introduced.
ff40e9b7 3442
21b679f6
LC
3443@item
3444Gexps carry information about the packages or derivations they refer to,
3445and these dependencies are automatically added as inputs to the build
3446processes that use them.
3447@end itemize
3448
c2b84676 3449@cindex lowering, of high-level objects in gexps
343eacbe
LC
3450This mechanism is not limited to package and derivation
3451objects: @dfn{compilers} able to ``lower'' other high-level objects to
c2b84676
LC
3452derivations or files in the store can be defined,
3453such that these objects can also be inserted
f97c9175 3454into gexps. For example, a useful type of high-level objects that can be
343eacbe 3455inserted in a gexp is ``file-like objects'', which make it easy to
f97c9175 3456add files to the store and to refer to them in
558e8b11
LC
3457derivations and such (see @code{local-file} and @code{plain-file}
3458below.)
b39fc6f7 3459
21b679f6
LC
3460To illustrate the idea, here is an example of a gexp:
3461
3462@example
3463(define build-exp
3464 #~(begin
3465 (mkdir #$output)
3466 (chdir #$output)
aff8ce7c 3467 (symlink (string-append #$coreutils "/bin/ls")
21b679f6
LC
3468 "list-files")))
3469@end example
3470
3471This gexp can be passed to @code{gexp->derivation}; we obtain a
3472derivation that builds a directory containing exactly one symlink to
3473@file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:
3474
3475@example
3476(gexp->derivation "the-thing" build-exp)
3477@end example
3478
e20fd1bf 3479As one would expect, the @code{"/gnu/store/@dots{}-coreutils-8.22"} string is
21b679f6
LC
3480substituted to the reference to the @var{coreutils} package in the
3481actual build code, and @var{coreutils} is automatically made an input to
3482the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp
f97c9175
AE
3483output)}) is replaced by a string containing the directory name of the
3484output of the derivation.
667b2508
LC
3485
3486@cindex cross compilation
3487In a cross-compilation context, it is useful to distinguish between
3488references to the @emph{native} build of a package---that can run on the
3489host---versus references to cross builds of a package. To that end, the
3490@code{#+} plays the same role as @code{#$}, but is a reference to a
3491native package build:
3492
3493@example
3494(gexp->derivation "vi"
3495 #~(begin
3496 (mkdir #$output)
3497 (system* (string-append #+coreutils "/bin/ln")
3498 "-s"
3499 (string-append #$emacs "/bin/emacs")
3500 (string-append #$output "/bin/vi")))
3501 #:target "mips64el-linux")
3502@end example
3503
3504@noindent
3505In the example above, the native build of @var{coreutils} is used, so
3506that @command{ln} can actually run on the host; but then the
3507cross-compiled build of @var{emacs} is referenced.
3508
3509The syntactic form to construct gexps is summarized below.
21b679f6
LC
3510
3511@deffn {Scheme Syntax} #~@var{exp}
3512@deffnx {Scheme Syntax} (gexp @var{exp})
3513Return a G-expression containing @var{exp}. @var{exp} may contain one
3514or more of the following forms:
3515
3516@table @code
3517@item #$@var{obj}
3518@itemx (ungexp @var{obj})
b39fc6f7
LC
3519Introduce a reference to @var{obj}. @var{obj} may have one of the
3520supported types, for example a package or a
21b679f6
LC
3521derivation, in which case the @code{ungexp} form is replaced by its
3522output file name---e.g., @code{"/gnu/store/@dots{}-coreutils-8.22}.
3523
b39fc6f7
LC
3524If @var{obj} is a list, it is traversed and references to supported
3525objects are substituted similarly.
21b679f6
LC
3526
3527If @var{obj} is another gexp, its contents are inserted and its
3528dependencies are added to those of the containing gexp.
3529
3530If @var{obj} is another kind of object, it is inserted as is.
3531
b39fc6f7
LC
3532@item #$@var{obj}:@var{output}
3533@itemx (ungexp @var{obj} @var{output})
21b679f6 3534This is like the form above, but referring explicitly to the
b39fc6f7
LC
3535@var{output} of @var{obj}---this is useful when @var{obj} produces
3536multiple outputs (@pxref{Packages with Multiple Outputs}).
21b679f6 3537
667b2508
LC
3538@item #+@var{obj}
3539@itemx #+@var{obj}:output
3540@itemx (ungexp-native @var{obj})
3541@itemx (ungexp-native @var{obj} @var{output})
3542Same as @code{ungexp}, but produces a reference to the @emph{native}
3543build of @var{obj} when used in a cross compilation context.
3544
21b679f6
LC
3545@item #$output[:@var{output}]
3546@itemx (ungexp output [@var{output}])
3547Insert a reference to derivation output @var{output}, or to the main
3548output when @var{output} is omitted.
3549
3550This only makes sense for gexps passed to @code{gexp->derivation}.
3551
3552@item #$@@@var{lst}
3553@itemx (ungexp-splicing @var{lst})
3554Like the above, but splices the contents of @var{lst} inside the
3555containing list.
3556
667b2508
LC
3557@item #+@@@var{lst}
3558@itemx (ungexp-native-splicing @var{lst})
3559Like the above, but refers to native builds of the objects listed in
3560@var{lst}.
3561
21b679f6
LC
3562@end table
3563
3564G-expressions created by @code{gexp} or @code{#~} are run-time objects
3565of the @code{gexp?} type (see below.)
3566@end deffn
3567
3568@deffn {Scheme Procedure} gexp? @var{obj}
3569Return @code{#t} if @var{obj} is a G-expression.
3570@end deffn
3571
3572G-expressions are meant to be written to disk, either as code building
3573some derivation, or as plain files in the store. The monadic procedures
3574below allow you to do that (@pxref{The Store Monad}, for more
3575information about monads.)
3576
3577@deffn {Monadic Procedure} gexp->derivation @var{name} @var{exp} @
ce45eb4c 3578 [#:system (%current-system)] [#:target #f] [#:graft? #t] @
21b679f6
LC
3579 [#:hash #f] [#:hash-algo #f] @
3580 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
4684f301 3581 [#:module-path @var{%load-path}] @
c8351d9a 3582 [#:references-graphs #f] [#:allowed-references #f] @
c0468155 3583 [#:leaked-env-vars #f] @
0309e1b0 3584 [#:script-name (string-append @var{name} "-builder")] @
4a6aeb67 3585 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
21b679f6 3586Return a derivation @var{name} that runs @var{exp} (a gexp) with
0309e1b0
LC
3587@var{guile-for-build} (a derivation) on @var{system}; @var{exp} is
3588stored in a file called @var{script-name}. When @var{target} is true,
3589it is used as the cross-compilation target triplet for packages referred
3590to by @var{exp}.
21b679f6 3591
ce45eb4c
LC
3592Make @var{modules} available in the evaluation context of @var{exp};
3593@var{modules} is a list of names of Guile modules searched in
3594@var{module-path} to be copied in the store, compiled, and made available in
21b679f6
LC
3595the load path during the execution of @var{exp}---e.g., @code{((guix
3596build utils) (guix build gnu-build-system))}.
3597
ce45eb4c
LC
3598@var{graft?} determines whether packages referred to by @var{exp} should be grafted when
3599applicable.
3600
b53833b2
LC
3601When @var{references-graphs} is true, it must be a list of tuples of one of the
3602following forms:
3603
3604@example
3605(@var{file-name} @var{package})
3606(@var{file-name} @var{package} @var{output})
3607(@var{file-name} @var{derivation})
3608(@var{file-name} @var{derivation} @var{output})
3609(@var{file-name} @var{store-item})
3610@end example
3611
3612The right-hand-side of each element of @var{references-graphs} is automatically made
3613an input of the build process of @var{exp}. In the build environment, each
3614@var{file-name} contains the reference graph of the corresponding item, in a simple
3615text format.
3616
c8351d9a
LC
3617@var{allowed-references} must be either @code{#f} or a list of output names and packages.
3618In the latter case, the list denotes store items that the result is allowed to
3619refer to. Any reference to another store item will lead to a build error.
3620
e20fd1bf 3621The other arguments are as for @code{derivation} (@pxref{Derivations}).
21b679f6
LC
3622@end deffn
3623
343eacbe 3624@cindex file-like objects
e1c153e0
LC
3625The @code{local-file}, @code{plain-file}, @code{computed-file},
3626@code{program-file}, and @code{scheme-file} procedures below return
3627@dfn{file-like objects}. That is, when unquoted in a G-expression,
3628these objects lead to a file in the store. Consider this G-expression:
343eacbe
LC
3629
3630@example
3631#~(system* (string-append #$glibc "/sbin/nscd") "-f"
3632 #$(local-file "/tmp/my-nscd.conf"))
3633@end example
3634
3635The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it
3636to the store. Once expanded, for instance @i{via}
3637@code{gexp->derivation}, the G-expression refers to that copy under
3638@file{/gnu/store}; thus, modifying or removing the file in @file{/tmp}
3639does not have any effect on what the G-expression does.
3640@code{plain-file} can be used similarly; it differs in that the file
3641content is directly passed as a string.
3642
d9ae938f
LC
3643@deffn {Scheme Procedure} local-file @var{file} [@var{name}] @
3644 [#:recursive? #t]
3645Return an object representing local file @var{file} to add to the store; this
9d3994f7
LC
3646object can be used in a gexp. If @var{file} is a relative file name, it is looked
3647up relative to the source file where this form appears. @var{file} will be added to
3648the store under @var{name}--by default the base name of @var{file}.
d9ae938f
LC
3649
3650When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file}
3651designates a flat file and @var{recursive?} is true, its contents are added, and its
3652permission bits are kept.
3653
3654This is the declarative counterpart of the @code{interned-file} monadic
3655procedure (@pxref{The Store Monad, @code{interned-file}}).
3656@end deffn
3657
558e8b11
LC
3658@deffn {Scheme Procedure} plain-file @var{name} @var{content}
3659Return an object representing a text file called @var{name} with the given
3660@var{content} (a string) to be added to the store.
3661
3662This is the declarative counterpart of @code{text-file}.
3663@end deffn
3664
91937029
LC
3665@deffn {Scheme Procedure} computed-file @var{name} @var{gexp} @
3666 [#:modules '()] [#:options '(#:local-build? #t)]
3667Return an object representing the store item @var{name}, a file or
3668directory computed by @var{gexp}. @var{modules} specifies the set of
3669modules visible in the execution context of @var{gexp}. @var{options}
3670is a list of additional arguments to pass to @code{gexp->derivation}.
3671
3672This is the declarative counterpart of @code{gexp->derivation}.
3673@end deffn
3674
21b679f6
LC
3675@deffn {Monadic Procedure} gexp->script @var{name} @var{exp}
3676Return an executable script @var{name} that runs @var{exp} using
3677@var{guile} with @var{modules} in its search path.
3678
3679The example below builds a script that simply invokes the @command{ls}
3680command:
3681
3682@example
3683(use-modules (guix gexp) (gnu packages base))
3684
3685(gexp->script "list-files"
3686 #~(execl (string-append #$coreutils "/bin/ls")
3687 "ls"))
3688@end example
3689
3690When ``running'' it through the store (@pxref{The Store Monad,
e20fd1bf 3691@code{run-with-store}}), we obtain a derivation that produces an
21b679f6
LC
3692executable file @file{/gnu/store/@dots{}-list-files} along these lines:
3693
3694@example
3695#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds
3696!#
3697(execl (string-append "/gnu/store/@dots{}-coreutils-8.22"/bin/ls")
3698 "ls")
3699@end example
3700@end deffn
3701
15a01c72
LC
3702@deffn {Scheme Procedure} program-file @var{name} @var{exp} @
3703 [#:modules '()] [#:guile #f]
3704Return an object representing the executable store item @var{name} that
3705runs @var{gexp}. @var{guile} is the Guile package used to execute that
3706script, and @var{modules} is the list of modules visible to that script.
3707
3708This is the declarative counterpart of @code{gexp->script}.
3709@end deffn
3710
21b679f6
LC
3711@deffn {Monadic Procedure} gexp->file @var{name} @var{exp}
3712Return a derivation that builds a file @var{name} containing @var{exp}.
3713
3714The resulting file holds references to all the dependencies of @var{exp}
3715or a subset thereof.
3716@end deffn
1ed19464 3717
e1c153e0
LC
3718@deffn {Scheme Procedure} scheme-file @var{name} @var{exp}
3719Return an object representing the Scheme file @var{name} that contains
3720@var{exp}.
3721
3722This is the declarative counterpart of @code{gexp->file}.
3723@end deffn
3724
1ed19464
LC
3725@deffn {Monadic Procedure} text-file* @var{name} @var{text} @dots{}
3726Return as a monadic value a derivation that builds a text file
3727containing all of @var{text}. @var{text} may list, in addition to
d9ae938f
LC
3728strings, objects of any type that can be used in a gexp: packages,
3729derivations, local file objects, etc. The resulting store file holds
3730references to all these.
1ed19464
LC
3731
3732This variant should be preferred over @code{text-file} anytime the file
3733to create will reference items from the store. This is typically the
3734case when building a configuration file that embeds store file names,
3735like this:
3736
3737@example
3738(define (profile.sh)
3739 ;; Return the name of a shell script in the store that
3740 ;; initializes the 'PATH' environment variable.
3741 (text-file* "profile.sh"
3742 "export PATH=" coreutils "/bin:"
3743 grep "/bin:" sed "/bin\n"))
3744@end example
3745
3746In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file
3747will references @var{coreutils}, @var{grep}, and @var{sed}, thereby
3748preventing them from being garbage-collected during its lifetime.
3749@end deffn
21b679f6 3750
b751cde3
LC
3751@deffn {Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}
3752Return an object representing store file @var{name} containing
3753@var{text}. @var{text} is a sequence of strings and file-like objects,
3754as in:
3755
3756@example
3757(mixed-text-file "profile"
3758 "export PATH=" coreutils "/bin:" grep "/bin")
3759@end example
3760
3761This is the declarative counterpart of @code{text-file*}.
3762@end deffn
3763
21b679f6
LC
3764Of course, in addition to gexps embedded in ``host'' code, there are
3765also modules containing build tools. To make it clear that they are
3766meant to be used in the build stratum, these modules are kept in the
3767@code{(guix build @dots{})} name space.
3768
c2b84676
LC
3769@cindex lowering, of high-level objects in gexps
3770Internally, high-level objects are @dfn{lowered}, using their compiler,
3771to either derivations or store items. For instance, lowering a package
3772yields a derivation, and lowering a @code{plain-file} yields a store
3773item. This is achieved using the @code{lower-object} monadic procedure.
3774
3775@deffn {Monadic Procedure} lower-object @var{obj} [@var{system}] @
3776 [#:target #f]
3777Return as a value in @var{%store-monad} the derivation or store item
3778corresponding to @var{obj} for @var{system}, cross-compiling for
3779@var{target} if @var{target} is true. @var{obj} must be an object that
3780has an associated gexp compiler, such as a @code{<package>}.
3781@end deffn
3782
21b679f6 3783
568717fd
LC
3784@c *********************************************************************
3785@node Utilities
3786@chapter Utilities
3787
210cc920
LC
3788This section describes tools primarily targeted at developers and users
3789who write new package definitions. They complement the Scheme
3790programming interface of Guix in a convenient way.
3791
568717fd 3792@menu
37166310 3793* Invoking guix build:: Building packages from the command line.
39bee8a2 3794* Invoking guix edit:: Editing package definitions.
210cc920 3795* Invoking guix download:: Downloading a file and printing its hash.
37166310 3796* Invoking guix hash:: Computing the cryptographic hash of a file.
2f7d2d91 3797* Invoking guix import:: Importing package definitions.
37166310 3798* Invoking guix refresh:: Updating package definitions.
b4f5e0e8 3799* Invoking guix lint:: Finding errors in package definitions.
fcc58db6 3800* Invoking guix size:: Profiling disk usage.
88856916 3801* Invoking guix graph:: Visualizing the graph of packages.
372c4bbc 3802* Invoking guix environment:: Setting up development environments.
aff8ce7c 3803* Invoking guix publish:: Sharing substitutes.
d23c20f1 3804* Invoking guix challenge:: Challenging substitute servers.
32efa254 3805* Invoking guix container:: Process isolation.
568717fd
LC
3806@end menu
3807
e49951eb
MW
3808@node Invoking guix build
3809@section Invoking @command{guix build}
568717fd 3810
e49951eb 3811The @command{guix build} command builds packages or derivations and
6798a8e4
LC
3812their dependencies, and prints the resulting store paths. Note that it
3813does not modify the user's profile---this is the job of the
e49951eb 3814@command{guix package} command (@pxref{Invoking guix package}). Thus,
6798a8e4
LC
3815it is mainly useful for distribution developers.
3816
3817The general syntax is:
c78bd12b
LC
3818
3819@example
e49951eb 3820guix build @var{options} @var{package-or-derivation}@dots{}
c78bd12b
LC
3821@end example
3822
f97c9175 3823As an example, the following command builds the latest versions of Emacs
ccd7158d
LC
3824and of Guile, displays their build logs, and finally displays the
3825resulting directories:
3826
3827@example
3828guix build emacs guile
3829@end example
3830
3831Similarly, the following command builds all the available packages:
3832
3833@example
3834guix build --keep-going \
3835 `guix package -A | cut -f1,2 --output-delimiter=@@`
3836@end example
3837
c78bd12b 3838@var{package-or-derivation} may be either the name of a package found in
5401dd75
LC
3839the software distribution such as @code{coreutils} or
3840@code{coreutils-8.20}, or a derivation such as
834129e0 3841@file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a
e7f34eb0
LC
3842package with the corresponding name (and optionally version) is searched
3843for among the GNU distribution modules (@pxref{Package Modules}).
3844
3845Alternatively, the @code{--expression} option may be used to specify a
3846Scheme expression that evaluates to a package; this is useful when
3847disambiguation among several same-named packages or package variants is
3848needed.
c78bd12b 3849
ccd7158d
LC
3850There may be zero or more @var{options}. The available options are
3851described in the subsections below.
3852
3853@menu
3854* Common Build Options:: Build options for most commands.
88ad6ded 3855* Package Transformation Options:: Creating variants of packages.
ccd7158d
LC
3856* Additional Build Options:: Options specific to 'guix build'.
3857@end menu
3858
3859@node Common Build Options
3860@subsection Common Build Options
3861
3862A number of options that control the build process are common to
3863@command{guix build} and other commands that can spawn builds, such as
3864@command{guix package} or @command{guix archive}. These are the
3865following:
3866
3867@table @code
3868
3869@item --load-path=@var{directory}
3870@itemx -L @var{directory}
3871Add @var{directory} to the front of the package module search path
3872(@pxref{Package Modules}).
3873
3874This allows users to define their own packages and make them visible to
3875the command-line tools.
3876
3877@item --keep-failed
3878@itemx -K
3879Keep the build tree of failed builds. Thus, if a build fail, its build
3880tree is kept under @file{/tmp}, in a directory whose name is shown at
3881the end of the build log. This is useful when debugging build issues.
3882
3883@item --keep-going
3884@itemx -k
3885Keep going when some of the derivations fail to build; return only once
3886all the builds have either completed or failed.
3887
3888The default behavior is to stop as soon as one of the specified
3889derivations has failed.
3890
3891@item --dry-run
3892@itemx -n
3893Do not build the derivations.
3894
3895@item --fallback
3896When substituting a pre-built binary fails, fall back to building
3897packages locally.
3898
3899@item --substitute-urls=@var{urls}
3900@anchor{client-substitute-urls}
3901Consider @var{urls} the whitespace-separated list of substitute source
3902URLs, overriding the default list of URLs of @command{guix-daemon}
3903(@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs}).
3904
3905This means that substitutes may be downloaded from @var{urls}, provided
3906they are signed by a key authorized by the system administrator
3907(@pxref{Substitutes}).
3908
3909@item --no-substitutes
3910Do not use substitutes for build products. That is, always build things
3911locally instead of allowing downloads of pre-built binaries
3912(@pxref{Substitutes}).
3913
3914@item --rounds=@var{n}
3915Build each derivation @var{n} times in a row, and raise an error if
3916consecutive build results are not bit-for-bit identical.
3917
3918This is a useful way to detect non-deterministic builds processes.
3919Non-deterministic build processes are a problem because they make it
3920practically impossible for users to @emph{verify} whether third-party
3921binaries are genuine. @xref{Invoking guix challenge}, for more.
3922
3923Note that, currently, the differing build results are not kept around,
3924so you will have to manually investigate in case of an error---e.g., by
3925stashing one of the build results with @code{guix archive --export},
3926then rebuilding, and finally comparing the two results.
3927
3928@item --no-build-hook
f97c9175 3929Do not attempt to offload builds @i{via} the ``build hook'' of the daemon
ccd7158d
LC
3930(@pxref{Daemon Offload Setup}). That is, always build things locally
3931instead of offloading builds to remote machines.
3932
3933@item --max-silent-time=@var{seconds}
3934When the build or substitution process remains silent for more than
3935@var{seconds}, terminate it and report a build failure.
3936
3937@item --timeout=@var{seconds}
3938Likewise, when the build or substitution process lasts for more than
3939@var{seconds}, terminate it and report a build failure.
3940
3941By default there is no timeout. This behavior can be restored with
3942@code{--timeout=0}.
3943
3944@item --verbosity=@var{level}
3945Use the given verbosity level. @var{level} must be an integer between 0
3946and 5; higher means more verbose output. Setting a level of 4 or more
3947may be helpful when debugging setup issues with the build daemon.
3948
3949@item --cores=@var{n}
3950@itemx -c @var{n}
3951Allow the use of up to @var{n} CPU cores for the build. The special
3952value @code{0} means to use as many CPU cores as available.
3953
3954@item --max-jobs=@var{n}
3955@itemx -M @var{n}
3956Allow at most @var{n} build jobs in parallel. @xref{Invoking
3957guix-daemon, @code{--max-jobs}}, for details about this option and the
3958equivalent @command{guix-daemon} option.
3959
3960@end table
3961
3962Behind the scenes, @command{guix build} is essentially an interface to
3963the @code{package-derivation} procedure of the @code{(guix packages)}
3964module, and to the @code{build-derivations} procedure of the @code{(guix
3965derivations)} module.
3966
3967In addition to options explicitly passed on the command line,
3968@command{guix build} and other @command{guix} commands that support
3969building honor the @code{GUIX_BUILD_OPTIONS} environment variable.
3970
3971@defvr {Environment Variable} GUIX_BUILD_OPTIONS
3972Users can define this variable to a list of command line options that
3973will automatically be used by @command{guix build} and other
3974@command{guix} commands that can perform builds, as in the example
3975below:
3976
3977@example
3978$ export GUIX_BUILD_OPTIONS="--no-substitutes -c 2 -L /foo/bar"
3979@end example
3980
3981These options are parsed independently, and the result is appended to
3982the parsed command-line options.
3983@end defvr
3984
88ad6ded
LC
3985
3986@node Package Transformation Options
3987@subsection Package Transformation Options
3988
3989@cindex package variants
3990Another set of command-line options supported by @command{guix build}
b8638f03 3991and also @command{guix package} are @dfn{package transformation
f97c9175 3992options}. These are options that make it possible to define @dfn{package
b8638f03
LC
3993variants}---for instance, packages built from different source code.
3994This is a convenient way to create customized packages on the fly
3995without having to type in the definitions of package variants
3996(@pxref{Defining Packages}).
88ad6ded
LC
3997
3998@table @code
3999
4000@item --with-source=@var{source}
4001Use @var{source} as the source of the corresponding package.
4002@var{source} must be a file name or a URL, as for @command{guix
4003download} (@pxref{Invoking guix download}).
4004
f97c9175
AE
4005The ``corresponding package'' is taken to be the one specified on the
4006command line the name of which matches the base of @var{source}---e.g.,
4007if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding
88ad6ded 4008package is @code{guile}. Likewise, the version string is inferred from
f97c9175 4009@var{source}; in the previous example, it is @code{2.0.10}.
88ad6ded
LC
4010
4011This option allows users to try out versions of packages other than the
4012one provided by the distribution. The example below downloads
4013@file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for
4014the @code{ed} package:
4015
4016@example
4017guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz
4018@end example
4019
4020As a developer, @code{--with-source} makes it easy to test release
4021candidates:
4022
4023@example
4024guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz
4025@end example
4026
4027@dots{} or to build from a checkout in a pristine environment:
4028
4029@example
4030$ git clone git://git.sv.gnu.org/guix.git
4031$ guix build guix --with-source=./guix
4032@end example
4033
47c0f92c
LC
4034@item --with-input=@var{package}=@var{replacement}
4035Replace dependency on @var{package} by a dependency on
4036@var{replacement}. @var{package} must be a package name, and
4037@var{replacement} must be a package specification such as @code{guile}
4038or @code{guile@@1.8}.
4039
f97c9175 4040For instance, the following command builds Guix, but replaces its
47c0f92c
LC
4041dependency on the current stable version of Guile with a dependency on
4042the development version of Guile, @code{guile-next}:
4043
4044@example
4045guix build --with-input=guile=guile-next guix
4046@end example
4047
4048This is a recursive, deep replacement. So in this example, both
4049@code{guix} and its dependency @code{guile-json} (which also depends on
4050@code{guile}) get rebuilt against @code{guile-next}.
4051
4052However, implicit inputs are left unchanged.
88ad6ded
LC
4053@end table
4054
ccd7158d
LC
4055@node Additional Build Options
4056@subsection Additional Build Options
4057
4058The command-line options presented below are specific to @command{guix
4059build}.
c78bd12b
LC
4060
4061@table @code
4062
34a1783f
DT
4063@item --file=@var{file}
4064@itemx -f @var{file}
4065
4066Build the package or derivation that the code within @var{file}
4067evaluates to.
4068
4069As an example, @var{file} might contain a package definition like this
4070(@pxref{Defining Packages}):
4071
4072@example
4073@verbatiminclude package-hello.scm
4074@end example
4075
c78bd12b
LC
4076@item --expression=@var{expr}
4077@itemx -e @var{expr}
ac5de156 4078Build the package or derivation @var{expr} evaluates to.
c78bd12b 4079
5401dd75 4080For example, @var{expr} may be @code{(@@ (gnu packages guile)
c78bd12b
LC
4081guile-1.8)}, which unambiguously designates this specific variant of
4082version 1.8 of Guile.
4083
f97c9175 4084Alternatively, @var{expr} may be a G-expression, in which case it is used
56b82106
LC
4085as a build program passed to @code{gexp->derivation}
4086(@pxref{G-Expressions}).
4087
4088Lastly, @var{expr} may refer to a zero-argument monadic procedure
ac5de156
LC
4089(@pxref{The Store Monad}). The procedure must return a derivation as a
4090monadic value, which is then passed through @code{run-with-store}.
4091
c78bd12b
LC
4092@item --source
4093@itemx -S
f97c9175 4094Build the source derivations of the packages, rather than the packages
c78bd12b
LC
4095themselves.
4096
e49951eb 4097For instance, @code{guix build -S gcc} returns something like
f97c9175
AE
4098@file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC
4099source tarball.
c78bd12b 4100
f9cc8971 4101The returned source tarball is the result of applying any patches and
f97c9175 4102code snippets specified in the package @code{origin} (@pxref{Defining
f9cc8971
LC
4103Packages}).
4104
2cdfe13d
EB
4105@item --sources
4106Fetch and return the source of @var{package-or-derivation} and all their
4107dependencies, recursively. This is a handy way to obtain a local copy
4108of all the source code needed to build @var{packages}, allowing you to
4109eventually build them even without network access. It is an extension
4110of the @code{--source} option and can accept one of the following
4111optional argument values:
4112
4113@table @code
4114@item package
4115This value causes the @code{--sources} option to behave in the same way
4116as the @code{--source} option.
4117
4118@item all
f97c9175
AE
4119Build the source derivations of all packages, including any source that
4120might be listed as @code{inputs}. This is the default value.
2cdfe13d
EB
4121
4122@example
4123$ guix build --sources tzdata
4124The following derivations will be built:
4125 /gnu/store/@dots{}-tzdata2015b.tar.gz.drv
4126 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
4127@end example
4128
4129@item transitive
f97c9175
AE
4130Build the source derivations of all packages, as well of all transitive
4131inputs to the packages. This can be used e.g. to
2cdfe13d
EB
4132prefetch package source for later offline building.
4133
4134@example
4135$ guix build --sources=transitive tzdata
4136The following derivations will be built:
4137 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
4138 /gnu/store/@dots{}-findutils-4.4.2.tar.xz.drv
4139 /gnu/store/@dots{}-grep-2.21.tar.xz.drv
4140 /gnu/store/@dots{}-coreutils-8.23.tar.xz.drv
4141 /gnu/store/@dots{}-make-4.1.tar.xz.drv
4142 /gnu/store/@dots{}-bash-4.3.tar.xz.drv
4143@dots{}
4144@end example
4145
4146@end table
4147
c78bd12b
LC
4148@item --system=@var{system}
4149@itemx -s @var{system}
4150Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of
f97c9175 4151the system type of the build host.
c78bd12b
LC
4152
4153An example use of this is on Linux-based systems, which can emulate
4154different personalities. For instance, passing
4155@code{--system=i686-linux} on an @code{x86_64-linux} system allows users
4156to build packages in a complete 32-bit environment.
4157
e55ec43d
LC
4158@item --target=@var{triplet}
4159@cindex cross-compilation
4160Cross-build for @var{triplet}, which must be a valid GNU triplet, such
4161as @code{"mips64el-linux-gnu"} (@pxref{Configuration Names, GNU
4162configuration triplets,, configure, GNU Configure and Build System}).
4163
a8d65643
LC
4164@anchor{build-check}
4165@item --check
4166@cindex determinism, checking
4167@cindex reproducibility, checking
4168Rebuild @var{package-or-derivation}, which are already available in the
4169store, and raise an error if the build results are not bit-for-bit
4170identical.
4171
f97c9175
AE
4172This mechanism allows you to check whether previously installed
4173substitutes are genuine (@pxref{Substitutes}), or whether the build result
4174of a package is deterministic. @xref{Invoking guix challenge}, for more
a8d65643
LC
4175background information and tools.
4176
05962f29
LC
4177@item --no-grafts
4178Do not ``graft'' packages. In practice, this means that package updates
4179available as grafts are not applied. @xref{Security Updates}, for more
4180information on grafts.
7f3673f2 4181
c78bd12b
LC
4182@item --derivations
4183@itemx -d
4184Return the derivation paths, not the output paths, of the given
4185packages.
4186
70ee5642
LC
4187@item --root=@var{file}
4188@itemx -r @var{file}
4189Make @var{file} a symlink to the result, and register it as a garbage
4190collector root.
4191
4192@item --log-file
3f208ad7 4193Return the build log file names or URLs for the given
f97c9175 4194@var{package-or-derivation}, or raise an error if build logs are
70ee5642
LC
4195missing.
4196
4197This works regardless of how packages or derivations are specified. For
4198instance, the following invocations are equivalent:
4199
4200@example
4201guix build --log-file `guix build -d guile`
4202guix build --log-file `guix build guile`
4203guix build --log-file guile
4204guix build --log-file -e '(@@ (gnu packages guile) guile-2.0)'
4205@end example
4206
3f208ad7
LC
4207If a log is unavailable locally, and unless @code{--no-substitutes} is
4208passed, the command looks for a corresponding log on one of the
4209substitute servers (as specified with @code{--substitute-urls}.)
70ee5642 4210
f97c9175
AE
4211So for instance, imagine you want to see the build log of GDB on MIPS,
4212but you are actually on an @code{x86_64} machine:
3f208ad7
LC
4213
4214@example
4215$ guix build --log-file gdb -s mips64el-linux
4216http://hydra.gnu.org/log/@dots{}-gdb-7.10
4217@end example
4218
4219You can freely access a huge library of build logs!
70ee5642
LC
4220@end table
4221
16eb115e 4222
39bee8a2
LC
4223@node Invoking guix edit
4224@section Invoking @command{guix edit}
4225
4226@cindex package definition, editing
4227So many packages, so many source files! The @command{guix edit} command
4228facilitates the life of packagers by pointing their editor at the source
4229file containing the definition of the specified packages. For instance:
4230
4231@example
4232guix edit gcc-4.8 vim
4233@end example
4234
4235@noindent
6237b9fa
LC
4236launches the program specified in the @code{VISUAL} or in the
4237@code{EDITOR} environment variable to edit the recipe of GCC@tie{}4.8.4
4238and that of Vim.
39bee8a2 4239
f97c9175 4240If you are using Emacs, note that the Emacs user interface provides the
7c1b1ae2 4241@kbd{M-x guix-edit} command and a similar functionality in the ``package
f97c9175 4242info'' and ``package list'' buffers created by the @kbd{M-x
7c1b1ae2 4243guix-search-by-name} and similar commands (@pxref{Emacs Commands}).
39bee8a2
LC
4244
4245
210cc920
LC
4246@node Invoking guix download
4247@section Invoking @command{guix download}
4248
4249When writing a package definition, developers typically need to download
f97c9175 4250a source tarball, compute its SHA256 hash, and write that
210cc920
LC
4251hash in the package definition (@pxref{Defining Packages}). The
4252@command{guix download} tool helps with this task: it downloads a file
4253from the given URI, adds it to the store, and prints both its file name
4254in the store and its SHA256 hash.
4255
4256The fact that the downloaded file is added to the store saves bandwidth:
4257when the developer eventually tries to build the newly defined package
4258with @command{guix build}, the source tarball will not have to be
4259downloaded again because it is already in the store. It is also a
4260convenient way to temporarily stash files, which may be deleted
4261eventually (@pxref{Invoking guix gc}).
4262
4263The @command{guix download} command supports the same URIs as used in
4264package definitions. In particular, it supports @code{mirror://} URIs.
4265@code{https} URIs (HTTP over TLS) are supported @emph{provided} the
4266Guile bindings for GnuTLS are available in the user's environment; when
537c8bb3
LC
4267they are not available, an error is raised. @xref{Guile Preparations,
4268how to install the GnuTLS bindings for Guile,, gnutls-guile,
4269GnuTLS-Guile}, for more information.
210cc920
LC
4270
4271The following option is available:
4272
4273@table @code
4274@item --format=@var{fmt}
4275@itemx -f @var{fmt}
4276Write the hash in the format specified by @var{fmt}. For more
081145cf 4277information on the valid values for @var{fmt}, @pxref{Invoking guix hash}.
210cc920
LC
4278@end table
4279
6c365eca
NK
4280@node Invoking guix hash
4281@section Invoking @command{guix hash}
4282
210cc920 4283The @command{guix hash} command computes the SHA256 hash of a file.
6c365eca
NK
4284It is primarily a convenience tool for anyone contributing to the
4285distribution: it computes the cryptographic hash of a file, which can be
4286used in the definition of a package (@pxref{Defining Packages}).
4287
4288The general syntax is:
4289
4290@example
4291guix hash @var{option} @var{file}
4292@end example
4293
4294@command{guix hash} has the following option:
4295
4296@table @code
4297
4298@item --format=@var{fmt}
4299@itemx -f @var{fmt}
210cc920 4300Write the hash in the format specified by @var{fmt}.
6c365eca
NK
4301
4302Supported formats: @code{nix-base32}, @code{base32}, @code{base16}
4303(@code{hex} and @code{hexadecimal} can be used as well).
4304
4305If the @option{--format} option is not specified, @command{guix hash}
4306will output the hash in @code{nix-base32}. This representation is used
4307in the definitions of packages.
4308
3140f2df
LC
4309@item --recursive
4310@itemx -r
4311Compute the hash on @var{file} recursively.
4312
4313In this case, the hash is computed on an archive containing @var{file},
f97c9175
AE
4314including its children if it is a directory. Some of the metadata of
4315@var{file} is part of the archive; for instance, when @var{file} is a
3140f2df 4316regular file, the hash is different depending on whether @var{file} is
f97c9175 4317executable or not. Metadata such as time stamps has no impact on the
3140f2df
LC
4318hash (@pxref{Invoking guix archive}).
4319@c FIXME: Replace xref above with xref to an ``Archive'' section when
4320@c it exists.
4321
6c365eca
NK
4322@end table
4323
2f7d2d91
LC
4324@node Invoking guix import
4325@section Invoking @command{guix import}
4326
4327@cindex importing packages
4328@cindex package import
4329@cindex package conversion
f97c9175
AE
4330The @command{guix import} command is useful for people who would like to
4331add a package to the distribution with as little work as
4332possible---a legitimate demand. The command knows of a few
4333repositories from which it can ``import'' package metadata. The result
2f7d2d91
LC
4334is a package definition, or a template thereof, in the format we know
4335(@pxref{Defining Packages}).
4336
4337The general syntax is:
4338
4339@example
4340guix import @var{importer} @var{options}@dots{}
4341@end example
4342
4343@var{importer} specifies the source from which to import package
f97c9175 4344metadata, and @var{options} specifies a package identifier and other
2f7d2d91
LC
4345options specific to @var{importer}. Currently, the available
4346``importers'' are:
4347
4348@table @code
4349@item gnu
f97c9175 4350Import metadata for the given GNU package. This provides a template
2f7d2d91
LC
4351for the latest version of that GNU package, including the hash of its
4352source tarball, and its canonical synopsis and description.
4353
f97c9175 4354Additional information such as the package dependencies and its
2f7d2d91
LC
4355license needs to be figured out manually.
4356
4357For example, the following command returns a package definition for
4358GNU@tie{}Hello:
4359
4360@example
4361guix import gnu hello
4362@end example
4363
4364Specific command-line options are:
4365
4366@table @code
4367@item --key-download=@var{policy}
4368As for @code{guix refresh}, specify the policy to handle missing OpenPGP
f97c9175 4369keys when verifying the package signature. @xref{Invoking guix
2f7d2d91
LC
4370refresh, @code{--key-download}}.
4371@end table
4372
4373@item pypi
4374@cindex pypi
f97c9175 4375Import metadata from the @uref{https://pypi.python.org/, Python Package
2f7d2d91
LC
4376Index}@footnote{This functionality requires Guile-JSON to be installed.
4377@xref{Requirements}.}. Information is taken from the JSON-formatted
4378description available at @code{pypi.python.org} and usually includes all
4379the relevant information, including package dependencies.
4380
f97c9175 4381The command below imports metadata for the @code{itsdangerous} Python
2f7d2d91
LC
4382package:
4383
4384@example
4385guix import pypi itsdangerous
4386@end example
4387
3aae8145
DT
4388@item gem
4389@cindex gem
f97c9175 4390Import metadata from @uref{https://rubygems.org/,
3aae8145
DT
4391RubyGems}@footnote{This functionality requires Guile-JSON to be
4392installed. @xref{Requirements}.}. Information is taken from the
4393JSON-formatted description available at @code{rubygems.org} and includes
4394most relevant information, including runtime dependencies. There are
f97c9175 4395some caveats, however. The metadata doesn't distinguish between
3aae8145
DT
4396synopses and descriptions, so the same string is used for both fields.
4397Additionally, the details of non-Ruby dependencies required to build
4398native extensions is unavailable and left as an exercise to the
4399packager.
4400
f97c9175 4401The command below imports metadata for the @code{rails} Ruby package:
3aae8145
DT
4402
4403@example
4404guix import gem rails
4405@end example
4406
d45dc6da
EB
4407@item cpan
4408@cindex CPAN
3c192e4e
AE
4409Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}@footnote{This
4410functionality requires Guile-JSON to be installed.
4411@xref{Requirements}.}.
f97c9175 4412Information is taken from the JSON-formatted metadata provided through
d45dc6da 4413@uref{https://api.metacpan.org/, MetaCPAN's API} and includes most
66392e47
EB
4414relevant information, such as module dependencies. License information
4415should be checked closely. If Perl is available in the store, then the
4416@code{corelist} utility will be used to filter core modules out of the
4417list of dependencies.
d45dc6da 4418
f97c9175 4419The command command below imports metadata for the @code{Acme::Boolean}
d45dc6da
EB
4420Perl module:
4421
4422@example
4423guix import cpan Acme::Boolean
4424@end example
4425
e1248602
RW
4426@item cran
4427@cindex CRAN
d0bd632f 4428@cindex Bioconductor
f97c9175 4429Import metadata from @uref{http://cran.r-project.org/, CRAN}, the
e1248602
RW
4430central repository for the @uref{http://r-project.org, GNU@tie{}R
4431statistical and graphical environment}.
4432
f97c9175 4433Information is extracted from the @code{DESCRIPTION} file of the package.
e1248602 4434
f97c9175 4435The command command below imports metadata for the @code{Cairo}
e1248602
RW
4436R package:
4437
4438@example
4439guix import cran Cairo
4440@end example
4441
f97c9175 4442When @code{--archive=bioconductor} is added, metadata is imported from
d0bd632f
RW
4443@uref{http://www.bioconductor.org/, Bioconductor}, a repository of R
4444packages for for the analysis and comprehension of high-throughput
4445genomic data in bioinformatics.
4446
f97c9175 4447Information is extracted from the @code{DESCRIPTION} file of a package
d0bd632f
RW
4448published on the web interface of the Bioconductor SVN repository.
4449
f97c9175 4450The command below imports metadata for the @code{GenomicRanges}
d0bd632f
RW
4451R package:
4452
4453@example
4454guix import cran --archive=bioconductor GenomicRanges
4455@end example
4456
2f7d2d91 4457@item nix
f97c9175 4458Import metadata from a local copy of the source of the
2f7d2d91
LC
4459@uref{http://nixos.org/nixpkgs/, Nixpkgs distribution}@footnote{This
4460relies on the @command{nix-instantiate} command of
4461@uref{http://nixos.org/nix/, Nix}.}. Package definitions in Nixpkgs are
4462typically written in a mixture of Nix-language and Bash code. This
4463command only imports the high-level package structure that is written in
4464the Nix language. It normally includes all the basic fields of a
4465package definition.
4466
4467When importing a GNU package, the synopsis and descriptions are replaced
4468by their canonical upstream variant.
4469
961d0d2d
LC
4470Usually, you will first need to do:
4471
4472@example
4473export NIX_REMOTE=daemon
4474@end example
4475
4476@noindent
4477so that @command{nix-instantiate} does not try to open the Nix database.
4478
2f7d2d91
LC
4479As an example, the command below imports the package definition of
4480LibreOffice (more precisely, it imports the definition of the package
4481bound to the @code{libreoffice} top-level attribute):
4482
4483@example
4484guix import nix ~/path/to/nixpkgs libreoffice
4485@end example
863af4e1
FB
4486
4487@item hackage
4488@cindex hackage
f97c9175 4489Import metadata from the Haskell community's central package archive
863af4e1
FB
4490@uref{https://hackage.haskell.org/, Hackage}. Information is taken from
4491Cabal files and includes all the relevant information, including package
4492dependencies.
4493
4494Specific command-line options are:
4495
4496@table @code
a4154748
FB
4497@item --stdin
4498@itemx -s
f97c9175 4499Read a Cabal file from standard input.
863af4e1
FB
4500@item --no-test-dependencies
4501@itemx -t
f97c9175 4502Do not include dependencies required only by the test suites.
a4154748
FB
4503@item --cabal-environment=@var{alist}
4504@itemx -e @var{alist}
4505@var{alist} is a Scheme alist defining the environment in which the
4506Cabal conditionals are evaluated. The accepted keys are: @code{os},
4507@code{arch}, @code{impl} and a string representing the name of a flag.
4508The value associated with a flag has to be either the symbol
4509@code{true} or @code{false}. The value associated with other keys
4510has to conform to the Cabal file format definition. The default value
4511associated with the keys @code{os}, @code{arch} and @code{impl} is
f97c9175 4512@samp{linux}, @samp{x86_64} and @samp{ghc}, respectively.
863af4e1
FB
4513@end table
4514
f97c9175 4515The command below imports metadata for the latest version of the
a4154748
FB
4516@code{HTTP} Haskell package without including test dependencies and
4517specifying the value of the flag @samp{network-uri} as @code{false}:
863af4e1
FB
4518
4519@example
a4154748 4520guix import hackage -t -e "'((\"network-uri\" . false))" HTTP
863af4e1
FB
4521@end example
4522
4523A specific package version may optionally be specified by following the
4524package name by a hyphen and a version number as in the following example:
4525
4526@example
4527guix import hackage mtl-2.1.3.1
4528@end example
7f74a931
FB
4529
4530@item elpa
4531@cindex elpa
f97c9175 4532Import metadata from an Emacs Lisp Package Archive (ELPA) package
7f74a931
FB
4533repository (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
4534
4535Specific command-line options are:
4536
4537@table @code
4538@item --archive=@var{repo}
4539@itemx -a @var{repo}
4540@var{repo} identifies the archive repository from which to retrieve the
4541information. Currently the supported repositories and their identifiers
4542are:
4543@itemize -
4544@item
840bd1d3 4545@uref{http://elpa.gnu.org/packages, GNU}, selected by the @code{gnu}
7f74a931
FB
4546identifier. This is the default.
4547
4548@item
840bd1d3 4549@uref{http://stable.melpa.org/packages, MELPA-Stable}, selected by the
7f74a931
FB
4550@code{melpa-stable} identifier.
4551
4552@item
840bd1d3 4553@uref{http://melpa.org/packages, MELPA}, selected by the @code{melpa}
7f74a931
FB
4554identifier.
4555@end itemize
4556@end table
2f7d2d91
LC
4557@end table
4558
4559The structure of the @command{guix import} code is modular. It would be
4560useful to have more importers for other package formats, and your help
4561is welcome here (@pxref{Contributing}).
4562
37166310
LC
4563@node Invoking guix refresh
4564@section Invoking @command{guix refresh}
4565
4566The primary audience of the @command{guix refresh} command is developers
4567of the GNU software distribution. By default, it reports any packages
4568provided by the distribution that are outdated compared to the latest
4569upstream version, like this:
4570
4571@example
4572$ guix refresh
4573gnu/packages/gettext.scm:29:13: gettext would be upgraded from 0.18.1.1 to 0.18.2.1
4574gnu/packages/glib.scm:77:12: glib would be upgraded from 2.34.3 to 2.37.0
4575@end example
4576
f97c9175
AE
4577It does so by browsing the FTP directory of each package and determining
4578the highest version number of the source tarballs therein. The command
bcb571cb
LC
4579knows how to update specific types of packages: GNU packages, ELPA
4580packages, etc.---see the documentation for @option{--type} below. The
4581are many packages, though, for which it lacks a method to determine
4582whether a new upstream release is available. However, the mechanism is
4583extensible, so feel free to get in touch with us to add a new method!
37166310
LC
4584
4585When passed @code{--update}, it modifies distribution source files to
f97c9175 4586update the version numbers and source tarball hashes of those package
37166310
LC
4587recipes (@pxref{Defining Packages}). This is achieved by downloading
4588each package's latest source tarball and its associated OpenPGP
4589signature, authenticating the downloaded tarball against its signature
4590using @command{gpg}, and finally computing its hash. When the public
4591key used to sign the tarball is missing from the user's keyring, an
4592attempt is made to automatically retrieve it from a public key server;
f97c9175 4593when this is successful, the key is added to the user's keyring; otherwise,
37166310
LC
4594@command{guix refresh} reports an error.
4595
4596The following options are supported:
4597
4598@table @code
4599
2d7fc7da
LC
4600@item --expression=@var{expr}
4601@itemx -e @var{expr}
4602Consider the package @var{expr} evaluates to.
4603
4604This is useful to precisely refer to a package, as in this example:
4605
4606@example
4607guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'
4608@end example
4609
4610This command lists the dependents of the ``final'' libc (essentially all
4611the packages.)
4612
37166310
LC
4613@item --update
4614@itemx -u
38e16b49
LC
4615Update distribution source files (package recipes) in place. This is
4616usually run from a checkout of the Guix source tree (@pxref{Running
4617Guix Before It Is Installed}):
4618
4619@example
4620$ ./pre-inst-env guix refresh -s non-core
4621@end example
4622
081145cf 4623@xref{Defining Packages}, for more information on package definitions.
37166310
LC
4624
4625@item --select=[@var{subset}]
4626@itemx -s @var{subset}
4627Select all the packages in @var{subset}, one of @code{core} or
4628@code{non-core}.
4629
4630The @code{core} subset refers to all the packages at the core of the
4631distribution---i.e., packages that are used to build ``everything
4632else''. This includes GCC, libc, Binutils, Bash, etc. Usually,
4633changing one of these packages in the distribution entails a rebuild of
4634all the others. Thus, such updates are an inconvenience to users in
4635terms of build time or bandwidth used to achieve the upgrade.
4636
4637The @code{non-core} subset refers to the remaining packages. It is
4638typically useful in cases where an update of the core packages would be
4639inconvenient.
4640
bcb571cb
LC
4641@item --type=@var{updater}
4642@itemx -t @var{updater}
7191adc5
AK
4643Select only packages handled by @var{updater} (may be a comma-separated
4644list of updaters). Currently, @var{updater} may be one of:
bcb571cb
LC
4645
4646@table @code
4647@item gnu
4648the updater for GNU packages;
e80c0f85
LC
4649@item gnome
4650the updater for GNOME packages;
62061d6b
AW
4651@item xorg
4652the updater for X.org packages;
bcb571cb 4653@item elpa
d882c235
LC
4654the updater for @uref{http://elpa.gnu.org/, ELPA} packages;
4655@item cran
b9d044ef 4656the updater for @uref{http://cran.r-project.org/, CRAN} packages;
d0bd632f
RW
4657@item bioconductor
4658the updater for @uref{http://www.bioconductor.org/, Bioconductor} R packages;
bab020d7 4659@item pypi
b9d044ef 4660the updater for @uref{https://pypi.python.org, PyPI} packages.
fbc5b815
BW
4661@item gem
4662the updater for @uref{https://rubygems.org, RubyGems} packages.
bcb571cb
LC
4663@end table
4664
f97c9175
AE
4665For instance, the following command only checks for updates of Emacs
4666packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:
bcb571cb
LC
4667
4668@example
7191adc5 4669$ guix refresh --type=elpa,cran
d882c235 4670gnu/packages/statistics.scm:819:13: r-testthat would be upgraded from 0.10.0 to 0.11.0
bcb571cb
LC
4671gnu/packages/emacs.scm:856:13: emacs-auctex would be upgraded from 11.88.6 to 11.88.9
4672@end example
4673
37166310
LC
4674@end table
4675
4676In addition, @command{guix refresh} can be passed one or more package
4677names, as in this example:
4678
4679@example
38e16b49 4680$ ./pre-inst-env guix refresh -u emacs idutils gcc-4.8.4
37166310
LC
4681@end example
4682
4683@noindent
4684The command above specifically updates the @code{emacs} and
4685@code{idutils} packages. The @code{--select} option would have no
4686effect in this case.
4687
7d193ec3
EB
4688When considering whether to upgrade a package, it is sometimes
4689convenient to know which packages would be affected by the upgrade and
4690should be checked for compatibility. For this the following option may
4691be used when passing @command{guix refresh} one or more package names:
4692
4693@table @code
4694
6ffa706b
AK
4695@item --list-updaters
4696@itemx -L
4697List available updaters and exit (see @option{--type} above.)
4698
7d193ec3
EB
4699@item --list-dependent
4700@itemx -l
4701List top-level dependent packages that would need to be rebuilt as a
4702result of upgrading one or more packages.
4703
4704@end table
4705
4706Be aware that the @code{--list-dependent} option only
4707@emph{approximates} the rebuilds that would be required as a result of
4708an upgrade. More rebuilds might be required under some circumstances.
4709
4710@example
7779ab61
LC
4711$ guix refresh --list-dependent flex
4712Building the following 120 packages would ensure 213 dependent packages are rebuilt:
4713hop-2.4.0 geiser-0.4 notmuch-0.18 mu-0.9.9.5 cflow-1.4 idutils-4.6 @dots{}
7d193ec3
EB
4714@end example
4715
4716The command above lists a set of packages that could be built to check
4717for compatibility with an upgraded @code{flex} package.
4718
f9230085
LC
4719The following options can be used to customize GnuPG operation:
4720
4721@table @code
4722
f9230085
LC
4723@item --gpg=@var{command}
4724Use @var{command} as the GnuPG 2.x command. @var{command} is searched
4725for in @code{$PATH}.
4726
2bc53ba9
LC
4727@item --key-download=@var{policy}
4728Handle missing OpenPGP keys according to @var{policy}, which may be one
4729of:
4730
4731@table @code
4732@item always
4733Always download missing OpenPGP keys from the key server, and add them
4734to the user's GnuPG keyring.
4735
4736@item never
4737Never try to download missing OpenPGP keys. Instead just bail out.
4738
4739@item interactive
4740When a package signed with an unknown OpenPGP key is encountered, ask
4741the user whether to download it or not. This is the default behavior.
4742@end table
4743
4744@item --key-server=@var{host}
4745Use @var{host} as the OpenPGP key server when importing a public key.
4746
f9230085
LC
4747@end table
4748
b4f5e0e8
CR
4749@node Invoking guix lint
4750@section Invoking @command{guix lint}
f97c9175
AE
4751The @command{guix lint} command is meant to help package developers avoid
4752common errors and use a consistent style. It runs a number of checks on
4753a given set of packages in order to find common mistakes in their
873c4085
LC
4754definitions. Available @dfn{checkers} include (see
4755@code{--list-checkers} for a complete list):
4756
4757@table @code
4758@item synopsis
4759@itemx description
4760Validate certain typographical and stylistic rules about package
4761descriptions and synopses.
4762
4763@item inputs-should-be-native
4764Identify inputs that should most likely be native inputs.
4765
4766@item source
4767@itemx home-page
50f5c46d 4768@itemx source-file-name
873c4085 4769Probe @code{home-page} and @code{source} URLs and report those that are
50f5c46d 4770invalid. Check that the source file name is meaningful, e.g. is not
f97c9175
AE
4771just a version number or ``git-checkout'', without a declared
4772@code{file-name} (@pxref{origin Reference}).
40a7d4e5 4773
5432734b
LC
4774@item cve
4775Report known vulnerabilities found in the Common Vulnerabilities and
4776Exposures (CVE) database
4777@uref{https://nvd.nist.gov/download.cfm#CVE_FEED, published by the US
4778NIST}.
4779
40a7d4e5
LC
4780@item formatting
4781Warn about obvious source code formatting issues: trailing white space,
4782use of tabulations, etc.
873c4085 4783@end table
b4f5e0e8
CR
4784
4785The general syntax is:
4786
4787@example
4788guix lint @var{options} @var{package}@dots{}
4789@end example
4790
4791If no package is given on the command line, then all packages are checked.
4792The @var{options} may be zero or more of the following:
4793
4794@table @code
f97c9175
AE
4795@item --list-checkers
4796@itemx -l
4797List and describe all the available checkers that will be run on packages
4798and exit.
b4f5e0e8 4799
dd7c013d
CR
4800@item --checkers
4801@itemx -c
4802Only enable the checkers specified in a comma-separated list using the
4803names returned by @code{--list-checkers}.
4804
b4f5e0e8 4805@end table
37166310 4806
fcc58db6
LC
4807@node Invoking guix size
4808@section Invoking @command{guix size}
4809
4810The @command{guix size} command helps package developers profile the
4811disk usage of packages. It is easy to overlook the impact of an
4812additional dependency added to a package, or the impact of using a
4813single output for a package that could easily be split (@pxref{Packages
f97c9175 4814with Multiple Outputs}). Such are the typical issues that
fcc58db6
LC
4815@command{guix size} can highlight.
4816
4817The command can be passed a package specification such as @code{gcc-4.8}
4818or @code{guile:debug}, or a file name in the store. Consider this
4819example:
4820
4821@example
4822$ guix size coreutils
4823store item total self
4824/gnu/store/@dots{}-coreutils-8.23 70.0 13.9 19.8%
4825/gnu/store/@dots{}-gmp-6.0.0a 55.3 2.5 3.6%
4826/gnu/store/@dots{}-acl-2.2.52 53.7 0.5 0.7%
4827/gnu/store/@dots{}-attr-2.4.46 53.2 0.3 0.5%
4828/gnu/store/@dots{}-gcc-4.8.4-lib 52.9 15.7 22.4%
4829/gnu/store/@dots{}-glibc-2.21 37.2 37.2 53.1%
4830@end example
4831
4832@cindex closure
4833The store items listed here constitute the @dfn{transitive closure} of
4834Coreutils---i.e., Coreutils and all its dependencies, recursively---as
4835would be returned by:
4836
4837@example
4838$ guix gc -R /gnu/store/@dots{}-coreutils-8.23
4839@end example
4840
f97c9175 4841Here the output shows three columns next to store items. The first column,
fcc58db6
LC
4842labeled ``total'', shows the size in mebibytes (MiB) of the closure of
4843the store item---that is, its own size plus the size of all its
4844dependencies. The next column, labeled ``self'', shows the size of the
f97c9175
AE
4845item itself. The last column shows the ratio of the size of the item
4846itself to the space occupied by all the items listed here.
fcc58db6
LC
4847
4848In this example, we see that the closure of Coreutils weighs in at
484970@tie{}MiB, half of which is taken by libc. (That libc represents a
4850large fraction of the closure is not a problem @i{per se} because it is
4851always available on the system anyway.)
4852
4853When the package passed to @command{guix size} is available in the
4854store, @command{guix size} queries the daemon to determine its
4855dependencies, and measures its size in the store, similar to @command{du
4856-ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU
4857Coreutils}).
4858
4859When the given package is @emph{not} in the store, @command{guix size}
f97c9175
AE
4860reports information based on the available substitutes
4861(@pxref{Substitutes}). This makes it possible it to profile disk usage of
4862store items that are not even on disk, only available remotely.
fcc58db6 4863
a8f996c6 4864The available options are:
fcc58db6
LC
4865
4866@table @option
4867
d490d06e
LC
4868@item --substitute-urls=@var{urls}
4869Use substitute information from @var{urls}.
4870@xref{client-substitute-urls, the same option for @code{guix build}}.
4871
a8f996c6 4872@item --map-file=@var{file}
f97c9175 4873Write a graphical map of disk usage in PNG format to @var{file}.
a8f996c6
LC
4874
4875For the example above, the map looks like this:
4876
4877@image{images/coreutils-size-map,5in,, map of Coreutils disk usage
4878produced by @command{guix size}}
4879
4880This option requires that
4881@uref{http://wingolog.org/software/guile-charting/, Guile-Charting} be
4882installed and visible in Guile's module search path. When that is not
4883the case, @command{guix size} fails as it tries to load it.
4884
fcc58db6
LC
4885@item --system=@var{system}
4886@itemx -s @var{system}
4887Consider packages for @var{system}---e.g., @code{x86_64-linux}.
4888
4889@end table
4890
88856916
LC
4891@node Invoking guix graph
4892@section Invoking @command{guix graph}
4893
4894@cindex DAG
4895Packages and their dependencies form a @dfn{graph}, specifically a
4896directed acyclic graph (DAG). It can quickly become difficult to have a
f97c9175
AE
4897mental model of the package DAG, so the @command{guix graph} command
4898provides a visual representation of the DAG. @command{guix graph}
4899emits a DAG representation in the input format of
88856916 4900@uref{http://www.graphviz.org/, Graphviz}, so its output can be passed
f97c9175 4901directly to the @command{dot} command of Graphviz. The general
88856916
LC
4902syntax is:
4903
4904@example
4905guix graph @var{options} @var{package}@dots{}
4906@end example
4907
4908For example, the following command generates a PDF file representing the
4909package DAG for the GNU@tie{}Core Utilities, showing its build-time
4910dependencies:
4911
4912@example
4913guix graph coreutils | dot -Tpdf > dag.pdf
4914@end example
4915
4916The output looks like this:
4917
4918@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}
4919
4920Nice little graph, no?
4921
f97c9175 4922But there is more than one graph! The one above is concise: it is the
88856916 4923graph of package objects, omitting implicit inputs such as GCC, libc,
f97c9175
AE
4924grep, etc. It is often useful to have such a concise graph, but
4925sometimes one may want to see more details. @command{guix graph} supports
4926several types of graphs, allowing you to choose the level of detail:
88856916
LC
4927
4928@table @code
4929@item package
f97c9175 4930This is the default type used in the example above. It shows the DAG of
88856916
LC
4931package objects, excluding implicit dependencies. It is concise, but
4932filters out many details.
4933
4934@item bag-emerged
4935This is the package DAG, @emph{including} implicit inputs.
4936
4937For instance, the following command:
4938
4939@example
4940guix graph --type=bag-emerged coreutils | dot -Tpdf > dag.pdf
4941@end example
4942
4943... yields this bigger graph:
4944
4945@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}
4946
4947At the bottom of the graph, we see all the implicit inputs of
4948@var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}}).
4949
f97c9175 4950Now, note that the dependencies of these implicit inputs---that is, the
88856916
LC
4951@dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown
4952here, for conciseness.
4953
4954@item bag
4955Similar to @code{bag-emerged}, but this time including all the bootstrap
4956dependencies.
4957
38b92daa
LC
4958@item bag-with-origins
4959Similar to @code{bag}, but also showing origins and their dependencies.
4960
88856916
LC
4961@item derivations
4962This is the most detailed representation: It shows the DAG of
4963derivations (@pxref{Derivations}) and plain store items. Compared to
4964the above representation, many additional nodes are visible, including
f97c9175 4965build scripts, patches, Guile modules, etc.
88856916
LC
4966
4967@end table
4968
f97c9175 4969All the types above correspond to @emph{build-time dependencies}. The
88856916
LC
4970following graph type represents the @emph{run-time dependencies}:
4971
4972@table @code
4973@item references
4974This is the graph of @dfn{references} of a package output, as returned
4975by @command{guix gc --references} (@pxref{Invoking guix gc}).
4976
4977If the given package output is not available in the store, @command{guix
4978graph} attempts to obtain dependency information from substitutes.
4979@end table
4980
4981The available options are the following:
4982
4983@table @option
4984@item --type=@var{type}
4985@itemx -t @var{type}
4986Produce a graph output of @var{type}, where @var{type} must be one of
4987the values listed above.
4988
4989@item --list-types
4990List the supported graph types.
4c8f997a
LC
4991
4992@item --expression=@var{expr}
4993@itemx -e @var{expr}
4994Consider the package @var{expr} evaluates to.
4995
4996This is useful to precisely refer to a package, as in this example:
4997
4998@example
4999guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'
5000@end example
88856916
LC
5001@end table
5002
5003
372c4bbc
DT
5004@node Invoking guix environment
5005@section Invoking @command{guix environment}
5006
f5fd4fd2 5007@cindex reproducible build environments
fe36d84e 5008@cindex development environments
372c4bbc
DT
5009The purpose of @command{guix environment} is to assist hackers in
5010creating reproducible development environments without polluting their
5011package profile. The @command{guix environment} tool takes one or more
f97c9175 5012packages, builds all of their inputs, and creates a shell
372c4bbc
DT
5013environment to use them.
5014
5015The general syntax is:
5016
5017@example
5018guix environment @var{options} @var{package}@dots{}
5019@end example
5020
fe36d84e
LC
5021The following example spawns a new shell set up for the development of
5022GNU@tie{}Guile:
372c4bbc
DT
5023
5024@example
5025guix environment guile
5026@end example
5027
f97c9175
AE
5028If the needed dependencies are not built yet, @command{guix environment}
5029automatically builds them. The environment of the new shell is an augmented
372c4bbc
DT
5030version of the environment that @command{guix environment} was run in.
5031It contains the necessary search paths for building the given package
5032added to the existing environment variables. To create a ``pure''
f97c9175 5033environment, in which the original environment variables have been unset,
50500f7c
LC
5034use the @code{--pure} option@footnote{Users sometimes wrongfully augment
5035environment variables such as @code{PATH} in their @file{~/.bashrc}
5036file. As a consequence, when @code{guix environment} launches it, Bash
5037may read @file{~/.bashrc}, thereby introducing ``impurities'' in these
5038environment variables. It is an error to define such environment
5039variables in @file{.bashrc}; instead, they should be defined in
5040@file{.bash_profile}, which is sourced only by log-in shells.
5041@xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for
5042details on Bash start-up files.}.
372c4bbc 5043
28de8d25
LC
5044@vindex GUIX_ENVIRONMENT
5045@command{guix environment} defines the @code{GUIX_ENVIRONMENT}
f97c9175 5046variable in the shell it spawns. This allows users to, say, define a
28de8d25
LC
5047specific prompt for development environments in their @file{.bashrc}
5048(@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):
5049
5050@example
5051if [ -n "$GUIX_ENVIRONMENT" ]
5052then
5053 export PS1="\u@@\h \w [dev]\$ "
5054fi
5055@end example
5056
372c4bbc
DT
5057Additionally, more than one package may be specified, in which case the
5058union of the inputs for the given packages are used. For example, the
5059command below spawns a shell where all of the dependencies of both Guile
5060and Emacs are available:
5061
5062@example
5063guix environment guile emacs
5064@end example
5065
1de2fe95
DT
5066Sometimes an interactive shell session is not desired. An arbitrary
5067command may be invoked by placing the @code{--} token to separate the
5068command from the rest of the arguments:
372c4bbc
DT
5069
5070@example
1de2fe95 5071guix environment guile -- make -j4
372c4bbc
DT
5072@end example
5073
fe36d84e
LC
5074In other situations, it is more convenient to specify the list of
5075packages needed in the environment. For example, the following command
5076runs @command{python} from an environment containing Python@tie{}2.7 and
5077NumPy:
5078
5079@example
1de2fe95 5080guix environment --ad-hoc python2-numpy python-2.7 -- python
fe36d84e
LC
5081@end example
5082
cc90fbbf
DT
5083Furthermore, one might want the dependencies of a package and also some
5084additional packages that are not build-time or runtime dependencies, but
5085are useful when developing nonetheless. Because of this, the
5086@code{--ad-hoc} flag is positional. Packages appearing before
5087@code{--ad-hoc} are interpreted as packages whose dependencies will be
5088added to the environment. Packages appearing after are interpreted as
5089packages that will be added to the environment directly. For example,
5090the following command creates a Guix development environment that
5091additionally includes Git and strace:
5092
5093@example
5094guix environment guix --ad-hoc git strace
5095@end example
5096
f535dcbe
DT
5097Sometimes it is desirable to isolate the environment as much as
5098possible, for maximal purity and reproducibility. In particular, when
5099using Guix on a host distro that is not GuixSD, it is desirable to
5100prevent access to @file{/usr/bin} and other system-wide resources from
5101the development environment. For example, the following command spawns
5102a Guile REPL in a ``container'' where only the store and the current
5103working directory are mounted:
5104
5105@example
5106guix environment --ad-hoc --container guile -- guile
5107@end example
5108
0f252e26 5109@quotation Note
cfd35b4e 5110The @code{--container} option requires Linux-libre 3.19 or newer.
0f252e26
DT
5111@end quotation
5112
fe36d84e 5113The available options are summarized below.
372c4bbc
DT
5114
5115@table @code
5116@item --expression=@var{expr}
5117@itemx -e @var{expr}
c9c282ce
DT
5118Create an environment for the package or list of packages that
5119@var{expr} evaluates to.
372c4bbc 5120
fe36d84e
LC
5121For example, running:
5122
5123@example
5124guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'
5125@end example
5126
5127starts a shell with the environment for this specific variant of the
5128PETSc package.
5129
c9c282ce
DT
5130Running:
5131
5132@example
5c2b2f00 5133guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'
c9c282ce
DT
5134@end example
5135
5136starts a shell with all the GuixSD base packages available.
5137
779aa003
DT
5138The above commands only the use default output of the given packages.
5139To select other outputs, two element tuples can be specified:
5140
5141@example
5142guix environment --ad-hoc -e '(list (@ (gnu packages bash) bash) "include")'
5143@end example
5144
372c4bbc
DT
5145@item --load=@var{file}
5146@itemx -l @var{file}
c9c282ce
DT
5147Create an environment for the package or list of packages that the code
5148within @var{file} evaluates to.
372c4bbc 5149
fe36d84e
LC
5150As an example, @var{file} might contain a definition like this
5151(@pxref{Defining Packages}):
5152
5153@example
5154@verbatiminclude environment-gdb.scm
5155@end example
5156
a54bd6d7
DT
5157@item --ad-hoc
5158Include all specified packages in the resulting environment, as if an
5159@i{ad hoc} package were defined with them as inputs. This option is
5160useful for quickly creating an environment without having to write a
5161package expression to contain the desired inputs.
5162
5163For instance, the command:
5164
5165@example
1de2fe95 5166guix environment --ad-hoc guile guile-sdl -- guile
a54bd6d7
DT
5167@end example
5168
5169runs @command{guile} in an environment where Guile and Guile-SDL are
5170available.
5171
417c39f1 5172Note that this example implicitly asks for the default output of
f97c9175 5173@code{guile} and @code{guile-sdl}, but it is possible to ask for a
417c39f1
LC
5174specific output---e.g., @code{glib:bin} asks for the @code{bin} output
5175of @code{glib} (@pxref{Packages with Multiple Outputs}).
5176
cc90fbbf
DT
5177This option may be composed with the default behavior of @command{guix
5178environment}. Packages appearing before @code{--ad-hoc} are interpreted
5179as packages whose dependencies will be added to the environment, the
5180default behavior. Packages appearing after are interpreted as packages
5181that will be added to the environment directly.
5182
372c4bbc
DT
5183@item --pure
5184Unset existing environment variables when building the new environment.
5185This has the effect of creating an environment in which search paths
5186only contain package inputs.
5187
5188@item --search-paths
5189Display the environment variable definitions that make up the
5190environment.
ce367ef3
LC
5191
5192@item --system=@var{system}
5193@itemx -s @var{system}
5194Attempt to build for @var{system}---e.g., @code{i686-linux}.
f535dcbe
DT
5195
5196@item --container
5197@itemx -C
5198@cindex container
5199Run @var{command} within an isolated container. The current working
56b6befb 5200directory outside the container is mapped inside the
f535dcbe
DT
5201container. Additionally, the spawned process runs as the current user
5202outside the container, but has root privileges in the context of the
5203container.
5204
5205@item --network
5206@itemx -N
5207For containers, share the network namespace with the host system.
5208Containers created without this flag only have access to the loopback
5209device.
5210
5211@item --expose=@var{source}[=@var{target}]
5212For containers, expose the file system @var{source} from the host system
5213as the read-only file system @var{target} within the container. If
5214@var{target} is not specified, @var{source} is used as the target mount
5215point in the container.
5216
5217The example below spawns a Guile REPL in a container in which the user's
5218home directory is accessible read-only via the @file{/exchange}
5219directory:
5220
5221@example
5222guix environment --container --expose=$HOME=/exchange guile -- guile
5223@end example
5224
5c2b2f00 5225@item --share=@var{source}[=@var{target}]
f535dcbe
DT
5226For containers, share the file system @var{source} from the host system
5227as the writable file system @var{target} within the container. If
5228@var{target} is not specified, @var{source} is used as the target mount
5229point in the container.
5230
5231The example below spawns a Guile REPL in a container in which the user's
5232home directory is accessible for both reading and writing via the
5233@file{/exchange} directory:
5234
5235@example
5236guix environment --container --share=$HOME=/exchange guile -- guile
5237@end example
372c4bbc
DT
5238@end table
5239
5240It also supports all of the common build options that @command{guix
ccd7158d 5241build} supports (@pxref{Common Build Options}).
372c4bbc 5242
aff8ce7c
DT
5243@node Invoking guix publish
5244@section Invoking @command{guix publish}
5245
5246The purpose of @command{guix publish} is to enable users to easily share
f97c9175 5247their store with others, who can then use it as a substitute server
8ce229fc
LC
5248(@pxref{Substitutes}).
5249
5250When @command{guix publish} runs, it spawns an HTTP server which allows
5251anyone with network access to obtain substitutes from it. This means
5252that any machine running Guix can also act as if it were a build farm,
5253since the HTTP interface is compatible with Hydra, the software behind
5254the @code{hydra.gnu.org} build farm.
aff8ce7c
DT
5255
5256For security, each substitute is signed, allowing recipients to check
5257their authenticity and integrity (@pxref{Substitutes}). Because
f97c9175 5258@command{guix publish} uses the signing key of the system, which is only
5463fe51
LC
5259readable by the system administrator, it must be started as root; the
5260@code{--user} option makes it drop root privileges early on.
aff8ce7c 5261
b18812b6
LC
5262The signing key pair must be generated before @command{guix publish} is
5263launched, using @command{guix archive --generate-key} (@pxref{Invoking
5264guix archive}).
5265
aff8ce7c
DT
5266The general syntax is:
5267
5268@example
5269guix publish @var{options}@dots{}
5270@end example
5271
5272Running @command{guix publish} without any additional arguments will
5273spawn an HTTP server on port 8080:
5274
5275@example
5276guix publish
5277@end example
5278
5279Once a publishing server has been authorized (@pxref{Invoking guix
5280archive}), the daemon may download substitutes from it:
5281
5282@example
5283guix-daemon --substitute-urls=http://example.org:8080
5284@end example
5285
5286The following options are available:
5287
5288@table @code
5289@item --port=@var{port}
5290@itemx -p @var{port}
5291Listen for HTTP requests on @var{port}.
5292
9e2292ef
LC
5293@item --listen=@var{host}
5294Listen on the network interface for @var{host}. The default is to
5295accept connections from any interface.
5296
5463fe51
LC
5297@item --user=@var{user}
5298@itemx -u @var{user}
5299Change privileges to @var{user} as soon as possible---i.e., once the
5300server socket is open and the signing key has been read.
5301
aff8ce7c
DT
5302@item --repl[=@var{port}]
5303@itemx -r [@var{port}]
5304Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile
8ce229fc
LC
5305Reference Manual}) on @var{port} (37146 by default). This is used
5306primarily for debugging a running @command{guix publish} server.
aff8ce7c
DT
5307@end table
5308
1c52181f
LC
5309Enabling @command{guix publish} on a GuixSD system is a one-liner: just
5310add a call to @code{guix-publish-service} in the @code{services} field
5311of the @code{operating-system} declaration (@pxref{guix-publish-service,
5312@code{guix-publish-service}}).
5313
d23c20f1
LC
5314
5315@node Invoking guix challenge
5316@section Invoking @command{guix challenge}
5317
5318@cindex reproducible builds
5319@cindex verifiable builds
5320
5321Do the binaries provided by this server really correspond to the source
f97c9175 5322code it claims to build? Is a package build process deterministic?
d23c20f1
LC
5323These are the questions the @command{guix challenge} command attempts to
5324answer.
5325
5326The former is obviously an important question: Before using a substitute
f97c9175 5327server (@pxref{Substitutes}), one had better @emph{verify} that it
d23c20f1
LC
5328provides the right binaries, and thus @emph{challenge} it. The latter
5329is what enables the former: If package builds are deterministic, then
5330independent builds of the package should yield the exact same result,
5331bit for bit; if a server provides a binary different from the one
5332obtained locally, it may be either corrupt or malicious.
5333
5334We know that the hash that shows up in @file{/gnu/store} file names is
5335the hash of all the inputs of the process that built the file or
5336directory---compilers, libraries, build scripts,
5337etc. (@pxref{Introduction}). Assuming deterministic build processes,
5338one store file name should map to exactly one build output.
5339@command{guix challenge} checks whether there is, indeed, a single
5340mapping by comparing the build outputs of several independent builds of
5341any given store item.
5342
f97c9175 5343The command output looks like this:
d23c20f1
LC
5344
5345@smallexample
5346$ guix challenge --substitute-urls="http://hydra.gnu.org http://guix.example.org"
5347updating list of substitutes from 'http://hydra.gnu.org'... 100.0%
5348updating list of substitutes from 'http://guix.example.org'... 100.0%
5349/gnu/store/@dots{}-openssl-1.0.2d contents differ:
5350 local hash: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
5351 http://hydra.gnu.org/nar/@dots{}-openssl-1.0.2d: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
5352 http://guix.example.org/nar/@dots{}-openssl-1.0.2d: 1zy4fmaaqcnjrzzajkdn3f5gmjk754b43qkq47llbyak9z0qjyim
5353/gnu/store/@dots{}-git-2.5.0 contents differ:
5354 local hash: 00p3bmryhjxrhpn2gxs2fy0a15lnip05l97205pgbk5ra395hyha
5355 http://hydra.gnu.org/nar/@dots{}-git-2.5.0: 069nb85bv4d4a6slrwjdy8v1cn4cwspm3kdbmyb81d6zckj3nq9f
5356 http://guix.example.org/nar/@dots{}-git-2.5.0: 0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73
5357/gnu/store/@dots{}-pius-2.1.1 contents differ:
5358 local hash: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
5359 http://hydra.gnu.org/nar/@dots{}-pius-2.1.1: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
5360 http://guix.example.org/nar/@dots{}-pius-2.1.1: 1cy25x1a4fzq5rk0pmvc8xhwyffnqz95h2bpvqsz2mpvlbccy0gs
5361@end smallexample
5362
5363@noindent
5364In this example, @command{guix challenge} first scans the store to
5365determine the set of locally-built derivations---as opposed to store
5366items that were downloaded from a substitute server---and then queries
5367all the substitute servers. It then reports those store items for which
5368the servers obtained a result different from the local build.
5369
5370@cindex non-determinism, in package builds
5371As an example, @code{guix.example.org} always gets a different answer.
5372Conversely, @code{hydra.gnu.org} agrees with local builds, except in the
5373case of Git. This might indicate that the build process of Git is
5374non-deterministic, meaning that its output varies as a function of
5375various things that Guix does not fully control, in spite of building
5376packages in isolated environments (@pxref{Features}). Most common
5377sources of non-determinism include the addition of timestamps in build
5378results, the inclusion of random numbers, and directory listings sorted
5379by inode number. See @uref{http://reproducible.debian.net/howto/}, for
5380more information.
5381
f97c9175 5382To find out what is wrong with this Git binary, we can do something along
d23c20f1
LC
5383these lines (@pxref{Invoking guix archive}):
5384
5385@example
5386$ wget -q -O - http://hydra.gnu.org/nar/@dots{}-git-2.5.0 \
5387 | guix archive -x /tmp/git
043f4698 5388$ diff -ur --no-dereference /gnu/store/@dots{}-git.2.5.0 /tmp/git
d23c20f1
LC
5389@end example
5390
5391This command shows the difference between the files resulting from the
5392local build, and the files resulting from the build on
5393@code{hydra.gnu.org} (@pxref{Overview, Comparing and Merging Files,,
5394diffutils, Comparing and Merging Files}). The @command{diff} command
5395works great for text files. When binary files differ, a better option
5396is @uref{http://diffoscope.org/, Diffoscope}, a tool that helps
5397visualize differences for all kinds of files.
5398
f97c9175 5399Once you have done that work, you can tell whether the differences are due
d23c20f1
LC
5400to a non-deterministic build process or to a malicious server. We try
5401hard to remove sources of non-determinism in packages to make it easier
f97c9175
AE
5402to verify substitutes, but of course, this is a process that
5403involves not just Guix, but a large part of the free software community.
d23c20f1
LC
5404In the meantime, @command{guix challenge} is one tool to help address
5405the problem.
5406
5407If you are writing packages for Guix, you are encouraged to check
5408whether @code{hydra.gnu.org} and other substitute servers obtain the
5409same build result as you did with:
5410
5411@example
5412$ guix challenge @var{package}
5413@end example
5414
5415@noindent
f97c9175 5416where @var{package} is a package specification such as
d23c20f1
LC
5417@code{guile-2.0} or @code{glibc:debug}.
5418
5419The general syntax is:
5420
5421@example
5422guix challenge @var{options} [@var{packages}@dots{}]
5423@end example
5424
5425The one option that matters is:
5426
5427@table @code
5428
5429@item --substitute-urls=@var{urls}
5430Consider @var{urls} the whitespace-separated list of substitute source
5431URLs to compare to.
5432
5433@end table
5434
5435
32efa254
DT
5436@node Invoking guix container
5437@section Invoking @command{guix container}
5438@cindex container
5439
5440@quotation Note
5441As of version @value{VERSION}, this tool is experimental. The interface
5442is subject to radical change in the future.
5443@end quotation
5444
5445The purpose of @command{guix container} is to manipulate processes
5446running within an isolated environment, commonly known as a
46c36586 5447``container'', typically created by the @command{guix environment}
32efa254
DT
5448(@pxref{Invoking guix environment}) and @command{guix system container}
5449(@pxref{Invoking guix system}) commands.
5450
5451The general syntax is:
5452
5453@example
5454guix container @var{action} @var{options}@dots{}
5455@end example
5456
5457@var{action} specifies the operation to perform with a container, and
5458@var{options} specifies the context-specific arguments for the action.
5459
5460The following actions are available:
5461
5462@table @code
5463@item exec
5464Execute a command within the context of a running container.
5465
5466The syntax is:
5467
5468@example
5469guix container exec @var{pid} @var{program} @var{arguments}@dots{}
5470@end example
5471
5472@var{pid} specifies the process ID of the running container.
f97c9175
AE
5473@var{program} specifies an executable file name within the root file
5474system of the container. @var{arguments} are the additional options that
5475will be passed to @var{program}.
32efa254
DT
5476
5477The following command launches an interactive login shell inside a
5478GuixSD container, started by @command{guix system container}, and whose
5479process ID is 9001:
5480
5481@example
5482guix container exec 9001 /run/current-system/profile/bin/bash --login
5483@end example
5484
5485Note that the @var{pid} cannot be the parent process of a container. It
f97c9175 5486must be PID 1 of the container or one of its child processes.
32efa254
DT
5487
5488@end table
5489
a1ba8475
LC
5490@c *********************************************************************
5491@node GNU Distribution
5492@chapter GNU Distribution
5493
3ca2731c 5494@cindex Guix System Distribution
4705641f 5495@cindex GuixSD
3ca2731c
LC
5496Guix comes with a distribution of the GNU system consisting entirely of
5497free software@footnote{The term ``free'' here refers to the
a1ba8475 5498@url{http://www.gnu.org/philosophy/free-sw.html,freedom provided to
3ca2731c 5499users of that software}.}. The
35ed9306
LC
5500distribution can be installed on its own (@pxref{System Installation}),
5501but it is also possible to install Guix as a package manager on top of
5502an installed GNU/Linux system (@pxref{Installation}). To distinguish
3ca2731c 5503between the two, we refer to the standalone distribution as the Guix
4705641f 5504System Distribution, or GuixSD.
35ed9306
LC
5505
5506The distribution provides core GNU packages such as GNU libc, GCC, and
5507Binutils, as well as many GNU and non-GNU applications. The complete
5508list of available packages can be browsed
093ae1be 5509@url{http://www.gnu.org/software/guix/packages,on-line} or by
d03bb653 5510running @command{guix package} (@pxref{Invoking guix package}):
a1ba8475
LC
5511
5512@example
e49951eb 5513guix package --list-available
a1ba8475
LC
5514@end example
5515
f97c9175 5516Our goal is to provide a practical 100% free software distribution of
401c53c4
LC
5517Linux-based and other variants of GNU, with a focus on the promotion and
5518tight integration of GNU components, and an emphasis on programs and
5519tools that help users exert that freedom.
5520
3ca2731c 5521Packages are currently available on the following platforms:
c320011d
LC
5522
5523@table @code
5524
5525@item x86_64-linux
5526Intel/AMD @code{x86_64} architecture, Linux-Libre kernel;
5527
5528@item i686-linux
5529Intel 32-bit architecture (IA32), Linux-Libre kernel;
5530
aa1e1947 5531@item armhf-linux
aa725117 5532ARMv7-A architecture with hard float, Thumb-2 and NEON,
f97c9175
AE
5533using the EABI hard-float application binary interface (ABI),
5534and Linux-Libre kernel.
aa1e1947 5535
c320011d
LC
5536@item mips64el-linux
5537little-endian 64-bit MIPS processors, specifically the Loongson series,
f97c9175 5538n32 ABI, and Linux-Libre kernel.
c320011d
LC
5539
5540@end table
5541
4705641f 5542GuixSD itself is currently only available on @code{i686} and @code{x86_64}.
3ca2731c 5543
c320011d
LC
5544@noindent
5545For information on porting to other architectures or kernels,
f97c9175 5546@pxref{Porting}.
c320011d 5547
401c53c4 5548@menu
5af6de3e 5549* System Installation:: Installing the whole operating system.
35ed9306 5550* System Configuration:: Configuring the operating system.
91ef73d4 5551* Installing Debugging Files:: Feeding the debugger.
05962f29 5552* Security Updates:: Deploying security fixes quickly.
401c53c4 5553* Package Modules:: Packages from the programmer's viewpoint.
da7cabd4 5554* Packaging Guidelines:: Growing the distribution.
401c53c4 5555* Bootstrapping:: GNU/Linux built from scratch.
8b315a6d 5556* Porting:: Targeting another platform or kernel.
401c53c4
LC
5557@end menu
5558
5559Building this distribution is a cooperative effort, and you are invited
081145cf 5560to join! @xref{Contributing}, for information about how you can help.
401c53c4 5561
5af6de3e
LC
5562@node System Installation
5563@section System Installation
5564
3ca2731c
LC
5565@cindex Guix System Distribution
5566This section explains how to install the Guix System Distribution
5567on a machine. The Guix package manager can
35ed9306
LC
5568also be installed on top of a running GNU/Linux system,
5569@pxref{Installation}.
5af6de3e
LC
5570
5571@ifinfo
5572@c This paragraph is for people reading this from tty2 of the
5573@c installation image.
5574You're reading this documentation with an Info reader. For details on
5575how to use it, hit the @key{RET} key (``return'' or ``enter'') on the
6621cdb6 5576link that follows: @pxref{Help,,, info, Info: An Introduction}. Hit
5af6de3e
LC
5577@kbd{l} afterwards to come back here.
5578@end ifinfo
5579
dedb8d5e
LC
5580@menu
5581* Limitations:: What you can expect.
5582* USB Stick Installation:: Preparing the installation medium.
5583* Preparing for Installation:: Networking, partitioning, etc.
5584* Proceeding with the Installation:: The real thing.
5585* Building the Installation Image:: How this comes to be.
5586@end menu
5587
5588@node Limitations
8aaaae38
LC
5589@subsection Limitations
5590
4705641f 5591As of version @value{VERSION}, the Guix System Distribution (GuixSD) is
3ca2731c 5592not production-ready. It may contain bugs and lack important
8aaaae38
LC
5593features. Thus, if you are looking for a stable production system that
5594respects your freedom as a computer user, a good solution at this point
5595is to consider @url{http://www.gnu.org/distros/free-distros.html, one of
f97c9175 5596the more established GNU/Linux distributions}. We hope you can soon switch
4705641f 5597to the GuixSD without fear, of course. In the meantime, you can
8aaaae38
LC
5598also keep using your distribution and try out the package manager on top
5599of it (@pxref{Installation}).
5600
5601Before you proceed with the installation, be aware of the following
5602noteworthy limitations applicable to version @value{VERSION}:
5603
5604@itemize
5605@item
5606The installation process does not include a graphical user interface and
5607requires familiarity with GNU/Linux (see the following subsections to
5608get a feel of what that means.)
5609
5610@item
093ae1be 5611The system does not yet provide full GNOME and KDE desktops. Xfce and
f97c9175 5612Enlightenment are available, though, if graphical desktop environments
093ae1be 5613are your thing, as well as a number of X11 window managers.
8aaaae38
LC
5614
5615@item
dbcb0ab1 5616Support for the Logical Volume Manager (LVM) is missing.
8aaaae38
LC
5617
5618@item
5619Few system services are currently supported out-of-the-box
5620(@pxref{Services}).
5621
5622@item
dedb8d5e 5623More than 3,000 packages are available, but you may
8aaaae38
LC
5624occasionally find that a useful package is missing.
5625@end itemize
5626
f97c9175
AE
5627You have been warned! But more than a disclaimer, this is an invitation
5628to report issues (and success stories!), and to join us in improving it.
8aaaae38 5629@xref{Contributing}, for more info.
5af6de3e 5630
dedb8d5e 5631@node USB Stick Installation
5af6de3e
LC
5632@subsection USB Stick Installation
5633
5634An installation image for USB sticks can be downloaded from
4705641f 5635@indicateurl{ftp://alpha.gnu.org/gnu/guix/guixsd-usb-install-@value{VERSION}.@var{system}.xz},
5af6de3e
LC
5636where @var{system} is one of:
5637
5638@table @code
5639@item x86_64-linux
5640for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;
5641
5642@item i686-linux
5643for a 32-bit GNU/Linux system on Intel-compatible CPUs.
5644@end table
5645
5646This image contains a single partition with the tools necessary for an
5647installation. It is meant to be copied @emph{as is} to a large-enough
5648USB stick.
5649
5650To copy the image to a USB stick, follow these steps:
5651
5652@enumerate
5653@item
5654Decompress the image using the @command{xz} command:
5655
5656@example
4705641f 5657xz -d guixsd-usb-install-@value{VERSION}.@var{system}.xz
5af6de3e
LC
5658@end example
5659
5660@item
f97c9175
AE
5661Insert a USB stick of 1@tie{}GiB or more into your machine, and determine
5662its device name. Assuming that the USB stick is known as @file{/dev/sdX},
5af6de3e
LC
5663copy the image with:
5664
5665@example
4705641f 5666dd if=guixsd-usb-install-@value{VERSION}.x86_64 of=/dev/sdX
5af6de3e
LC
5667@end example
5668
5669Access to @file{/dev/sdX} usually requires root privileges.
5670@end enumerate
5671
5672Once this is done, you should be able to reboot the system and boot from
5673the USB stick. The latter usually requires you to get in the BIOS' boot
5674menu, where you can choose to boot from the USB stick.
5675
dedb8d5e 5676@node Preparing for Installation
5af6de3e
LC
5677@subsection Preparing for Installation
5678
5679Once you have successfully booted the image on the USB stick, you should
5680end up with a root prompt. Several console TTYs are configured and can
5681be used to run commands as root. TTY2 shows this documentation,
5682browsable using the Info reader commands (@pxref{Help,,, info, Info: An
ae7ffa9e
LC
5683Introduction}). The installation system runs the GPM mouse daemon,
5684which allows you to select text with the left mouse button and to paste
5685it with the middle button.
5af6de3e 5686
dedb8d5e 5687@subsubsection Keyboard Layout
5af6de3e 5688
dedb8d5e
LC
5689@cindex keyboard layout
5690The installation image uses the US qwerty keyboard layout. If you want
5691to change it, you can use the @command{loadkeys} command. For example,
5692the following command selects the Dvorak keyboard layout:
5af6de3e 5693
dedb8d5e
LC
5694@example
5695loadkeys dvorak
5696@end example
5697
5698See the files under @file{/run/current-system/profile/share/keymaps} for
5699a list of available keyboard layouts. Run @command{man loadkeys} for
5700more information.
5701
5702@subsubsection Networking
5703
5704Run the following command see what your network interfaces are called:
235cba85
LC
5705
5706@example
dedb8d5e 5707ifconfig -a
235cba85
LC
5708@end example
5709
95c559c1 5710@c http://cgit.freedesktop.org/systemd/systemd/tree/src/udev/udev-builtin-net_id.c#n20
dedb8d5e
LC
5711Wired interfaces have a name starting with @samp{e}; for example, the
5712interface corresponding to the first on-board Ethernet controller is
5713called @samp{eno1}. Wireless interfaces have a name starting with
5714@samp{w}, like @samp{w1p2s0}.
5715
5716@table @asis
5717@item Wired connection
5718To configure a wired network run the following command, substituting
5719@var{interface} with the name of the wired interface you want to use.
5720
5721@example
5722ifconfig @var{interface} up
5723@end example
5724
5725@item Wireless connection
5726To configure wireless networking, you can create a configuration file
5727for the @command{wpa_supplicant} configuration tool (its location is not
5728important) using one of the available text editors such as
5729@command{zile}:
5730
5731@example
5732zile wpa_supplicant.conf
5733@end example
5734
5735As an example, the following stanza can go to this file and will work
5736for many wireless networks, provided you give the actual SSID and
5737passphrase for the network you are connecting to:
5738
5739@example
5740network=@{
5741 ssid=@var{my-ssid}
5742 key_mgmt=WPA-PSK
5743 psk="the network's secret passphrase"
5744@}
5745@end example
5746
5747Start the wireless service and run it in the background with the
5748following command (substitute @var{interface} with the name of the
5749network interface you want to use):
5750
5751@example
5752wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B
5753@end example
5754
5755Run @command{man wpa_supplication} for more information.
5756@end table
5757
5758At this point, you need to acquire an IP address. On a network where IP
5759addresses are automatically assigned @i{via} DHCP, you can run:
5760
5761@example
5762dhclient @var{interface}
5763@end example
5af6de3e 5764
dedb8d5e
LC
5765Try to ping a server to see if networking is up and running:
5766
5767@example
5768ping -c 3 gnu.org
5769@end example
5af6de3e
LC
5770
5771Setting up network access is almost always a requirement because the
5772image does not contain all the software and tools that may be needed.
5773
dedb8d5e
LC
5774@subsubsection Disk Partitioning
5775
5776Unless this has already been done, the next step is to partition, and
5777then format the target partition(s).
5778
5779The installation image includes several partitioning tools, including
5780Parted (@pxref{Overview,,, parted, GNU Parted User Manual}),
5781@command{fdisk}, and @command{cfdisk}. Run it and set up your disk with
5782the partition layout you want:
5783
5784@example
5785cfdisk
5786@end example
5787
5788Once you are done partitioning the target hard disk drive, you have to
5789create a file system on the relevant partition(s)@footnote{Currently
5790GuixSD pretty much assumes an ext4 file system. In particular, code
5791that reads partition UUIDs and labels only works with ext4. This will
5792be fixed in the future.}.
5af6de3e 5793
7ab44369
LC
5794Preferably, assign partitions a label so that you can easily and
5795reliably refer to them in @code{file-system} declarations (@pxref{File
5796Systems}). This is typically done using the @code{-L} option of
dedb8d5e
LC
5797@command{mkfs.ext4} and related commands. So, assuming the target root
5798partition lives at @file{/dev/sda1}, a file system with the label
5799@code{my-root} can be created with:
7ab44369 5800
dedb8d5e
LC
5801@example
5802mkfs.ext4 -L my-root /dev/sda1
5803@end example
dd816355 5804
316d65be
LC
5805@c FIXME: Uncomment this once GRUB fully supports encrypted roots.
5806@c A typical command sequence may be:
5807@c
5808@c @example
5809@c # fdisk /dev/sdX
5810@c @dots{} Create partitions etc.@dots{}
5811@c # cryptsetup luksFormat /dev/sdX1
5812@c # cryptsetup open --type luks /dev/sdX1 my-partition
5813@c # mkfs.ext4 -L my-root /dev/mapper/my-partition
5814@c @end example
6d6e6281 5815
dedb8d5e
LC
5816In addition to e2fsprogs, the suite of tools to manipulate
5817ext2/ext3/ext4 file systems, the installation image includes
5818Cryptsetup/LUKS for disk encryption.
5af6de3e 5819
dedb8d5e
LC
5820Once that is done, mount the target root partition under @file{/mnt}
5821with a command like (again, assuming @file{/dev/sda1} is the root
5822partition):
83a17b62 5823
dedb8d5e
LC
5824@example
5825mount /dev/sda1 /mnt
5826@end example
83a17b62 5827
dedb8d5e
LC
5828@node Proceeding with the Installation
5829@subsection Proceeding with the Installation
83a17b62 5830
dedb8d5e
LC
5831With the target partitions ready and the target root mounted on
5832@file{/mnt}, we're ready to go. First, run:
5af6de3e 5833
dedb8d5e
LC
5834@example
5835herd start cow-store /mnt
5836@end example
5af6de3e 5837
dedb8d5e
LC
5838This makes @file{/gnu/store} copy-on-write, such that packages added to
5839it during the installation phase are written to the target disk rather
5840than kept in memory.
5af6de3e 5841
dedb8d5e 5842Next, you have to edit a file and
5af6de3e
LC
5843provide the declaration of the operating system to be installed. To
5844that end, the installation system comes with two text editors: GNU nano
5845(@pxref{Top,,, nano, GNU nano Manual}), and GNU Zile, an Emacs clone.
5846It is better to store that file on the target root file system, say, as
5847@file{/mnt/etc/config.scm}.
5848
dedb8d5e
LC
5849@xref{Using the Configuration System}, for an overview of the
5850configuration file. The example configurations discussed in that
5851section are available under @file{/etc/configuration} in the
5852installation image. Thus, to get started with a system configuration
5853providing a graphical display server (a ``desktop'' system), you can run
5854something along these lines:
5855
5856@example
5857# mkdir /mnt/etc
5858# cp /etc/configuration/desktop.scm /mnt/etc/config.scm
5859# zile /mnt/etc/config.scm
5860@end example
5861
5862You should pay attention to what your configuration file contains, and
5863in particular:
5864
5865@itemize
5866@item
5867Make sure the @code{grub-configuration} form refers to the device you
5868want to install GRUB on.
5869
5870@item
5871Be sure that your partition labels match the value of their respective
5872@code{device} fields in your @code{file-system} configuration, assuming
5873your @code{file-system} configuration sets the value of @code{title} to
5874@code{'label}.
5875@end itemize
5af6de3e 5876
dd51caac
LC
5877Once you are done preparing the configuration file, the new system must
5878be initialized (remember that the target root file system is mounted
5879under @file{/mnt}):
5af6de3e
LC
5880
5881@example
5882guix system init /mnt/etc/config.scm /mnt
5883@end example
5884
5885@noindent
dedb8d5e 5886This copies all the necessary files and installs GRUB on
5af6de3e 5887@file{/dev/sdX}, unless you pass the @option{--no-grub} option. For
6621cdb6 5888more information, @pxref{Invoking guix system}. This command may trigger
5af6de3e
LC
5889downloads or builds of missing packages, which can take some time.
5890
1bd4e6db
LC
5891Once that command has completed---and hopefully succeeded!---you can run
5892@command{reboot} and boot into the new system. The @code{root} password
5893in the new system is initially empty; other users' passwords need to be
5894initialized by running the @command{passwd} command as @code{root},
5895unless your configuration specifies otherwise
5896(@pxref{user-account-password, user account passwords}).
5897
5898Join us on @code{#guix} on the Freenode IRC network or on
5af6de3e
LC
5899@file{guix-devel@@gnu.org} to share your experience---good or not so
5900good.
5901
dedb8d5e 5902@node Building the Installation Image
5af6de3e
LC
5903@subsection Building the Installation Image
5904
5905The installation image described above was built using the @command{guix
5906system} command, specifically:
5907
5908@example
8a225c66 5909guix system disk-image --image-size=850MiB gnu/system/install.scm
5af6de3e
LC
5910@end example
5911
5912@xref{Invoking guix system}, for more information. See
5913@file{gnu/system/install.scm} in the source tree for more information
5914about the installation image.
5915
cf4a9129
LC
5916@node System Configuration
5917@section System Configuration
b208a005 5918
cf4a9129 5919@cindex system configuration
3ca2731c 5920The Guix System Distribution supports a consistent whole-system configuration
cf4a9129
LC
5921mechanism. By that we mean that all aspects of the global system
5922configuration---such as the available system services, timezone and
5923locale settings, user accounts---are declared in a single place. Such
5924a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected.
91ef73d4 5925
cf4a9129
LC
5926One of the advantages of putting all the system configuration under the
5927control of Guix is that it supports transactional system upgrades, and
5928makes it possible to roll-back to a previous system instantiation,
5929should something go wrong with the new one (@pxref{Features}). Another
5930one is that it makes it easy to replicate the exact same configuration
5931across different machines, or at different points in time, without
5932having to resort to additional administration tools layered on top of
5933the system's own tools.
5934@c Yes, we're talking of Puppet, Chef, & co. here. ↑
91ef73d4 5935
cf4a9129
LC
5936This section describes this mechanism. First we focus on the system
5937administrator's viewpoint---explaining how the system is configured and
5938instantiated. Then we show how this mechanism can be extended, for
5939instance to support new system services.
91ef73d4 5940
cf4a9129
LC
5941@menu
5942* Using the Configuration System:: Customizing your GNU system.
7313a52e 5943* operating-system Reference:: Detail of operating-system declarations.
cf4a9129 5944* File Systems:: Configuring file system mounts.
510f9d86 5945* Mapped Devices:: Block device extra processing.
cf4a9129 5946* User Accounts:: Specifying user accounts.
598e19dc 5947* Locales:: Language and cultural convention settings.
cf4a9129 5948* Services:: Specifying system services.
0ae8c15a 5949* Setuid Programs:: Programs running with root privileges.
efb5e833 5950* X.509 Certificates:: Authenticating HTTPS servers.
996ed739 5951* Name Service Switch:: Configuring libc's name service switch.
fd1b1fa2 5952* Initial RAM Disk:: Linux-Libre bootstrapping.
88faf933 5953* GRUB Configuration:: Configuring the boot loader.
cf4a9129 5954* Invoking guix system:: Instantiating a system configuration.
97d76250 5955* Running GuixSD in a VM:: How to run GuixSD in a virtual machine.
cf4a9129
LC
5956* Defining Services:: Adding new service definitions.
5957@end menu
91ef73d4 5958
cf4a9129
LC
5959@node Using the Configuration System
5960@subsection Using the Configuration System
64d76fa6 5961
cf4a9129
LC
5962The operating system is configured by providing an
5963@code{operating-system} declaration in a file that can then be passed to
5964the @command{guix system} command (@pxref{Invoking guix system}). A
5965simple setup, with the default system services, the default Linux-Libre
5966kernel, initial RAM disk, and boot loader looks like this:
91ef73d4 5967
cf4a9129
LC
5968@findex operating-system
5969@lisp
dd51caac 5970@include os-config-bare-bones.texi
cf4a9129 5971@end lisp
401c53c4 5972
cf4a9129
LC
5973This example should be self-describing. Some of the fields defined
5974above, such as @code{host-name} and @code{bootloader}, are mandatory.
5975Others, such as @code{packages} and @code{services}, can be omitted, in
5976which case they get a default value.
e7f34eb0 5977
5d94ac51
LC
5978Below we discuss the effect of some of the most important fields
5979(@pxref{operating-system Reference}, for details about all the available
5980fields), and how to @dfn{instantiate} the operating system using
5981@command{guix system}.
5982
5983@unnumberedsubsubsec Globally-Visible Packages
5984
cf4a9129 5985@vindex %base-packages
5d94ac51
LC
5986The @code{packages} field lists packages that will be globally visible
5987on the system, for all user accounts---i.e., in every user's @code{PATH}
5988environment variable---in addition to the per-user profiles
5989(@pxref{Invoking guix package}). The @var{%base-packages} variable
5990provides all the tools one would expect for basic user and administrator
5991tasks---including the GNU Core Utilities, the GNU Networking Utilities,
5992the GNU Zile lightweight text editor, @command{find}, @command{grep},
5993etc. The example above adds tcpdump to those, taken from the @code{(gnu
5994packages admin)} module (@pxref{Package Modules}).
e7f34eb0 5995
f6c9fb1b
LC
5996@findex specification->package
5997Referring to packages by variable name, like @var{tcpdump} above, has
5998the advantage of being unambiguous; it also allows typos and such to be
5999diagnosed right away as ``unbound variables''. The downside is that one
6000needs to know which module defines which package, and to augment the
6001@code{use-package-modules} line accordingly. To avoid that, one can use
6002the @code{specification->package} procedure of the @code{(gnu packages)}
6003module, which returns the best package for a given name or name and
6004version:
6005
6006@lisp
6007(use-modules (gnu packages))
6008
6009(operating-system
6010 ;; ...
6011 (packages (append (map specification->package
6012 '("tcpdump" "htop" "gnupg-2.0"))
6013 %base-packages)))
6014@end lisp
6015
5d94ac51
LC
6016@unnumberedsubsubsec System Services
6017
cf4a9129
LC
6018@vindex %base-services
6019The @code{services} field lists @dfn{system services} to be made
6020available when the system starts (@pxref{Services}).
6021The @code{operating-system} declaration above specifies that, in
6022addition to the basic services, we want the @command{lshd} secure shell
cd6f6c22
LC
6023daemon listening on port 2222 (@pxref{Networking Services,
6024@code{lsh-service}}). Under the hood,
cf4a9129
LC
6025@code{lsh-service} arranges so that @code{lshd} is started with the
6026right command-line options, possibly with supporting configuration files
cd6f6c22
LC
6027generated as needed (@pxref{Defining Services}).
6028
6029@cindex customization, of services
6030@findex modify-services
6031Occasionally, instead of using the base services as is, you will want to
6032customize them. For instance, to change the configuration of
6033@code{guix-daemon} and Mingetty (the console log-in), you may write the
6034following instead of @var{%base-services}:
6035
6036@lisp
6037(modify-services %base-services
6038 (guix-service-type config =>
6039 (guix-configuration
6040 (inherit config)
6041 (use-substitutes? #f)
6042 (extra-options '("--gc-keep-outputs"))))
6043 (mingetty-service-type config =>
6044 (mingetty-configuration
6045 (inherit config)
6046 (motd (plain-file "motd" "Hi there!")))))
6047@end lisp
6048
6049@noindent
6050The effect here is to change the options passed to @command{guix-daemon}
6051when it is started, as well as the ``message of the day'' that appears
6052when logging in at the console. @xref{Service Reference,
6053@code{modify-services}}, for more on that.
a1ba8475 6054
dd51caac 6055The configuration for a typical ``desktop'' usage, with the X11 display
cd6f6c22 6056server, a desktop environment, network management, power management, and
dd51caac
LC
6057more, would look like this:
6058
6059@lisp
6060@include os-config-desktop.texi
6061@end lisp
6062
6063@xref{Desktop Services}, for the exact list of services provided by
efb5e833
LC
6064@var{%desktop-services}. @xref{X.509 Certificates}, for background
6065information about the @code{nss-certs} package that is used here.
dd51caac 6066
5d94ac51
LC
6067Again, @var{%desktop-services} is just a list of service objects. If
6068you want to remove services from there, you can do so using the
6069procedures for list filtering (@pxref{SRFI-1 Filtering and
6070Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the
6071following expression returns a list that contains all the services in
6072@var{%desktop-services} minus the Avahi service:
6073
6074@example
6075(remove (lambda (service)
6076 (eq? (service-kind service) avahi-service-type))
6077 %desktop-services)
6078@end example
6079
6080@unnumberedsubsubsec Instantiating the System
6081
6082Assuming the @code{operating-system} declaration
6083is stored in the @file{my-system-config.scm}
cf4a9129
LC
6084file, the @command{guix system reconfigure my-system-config.scm} command
6085instantiates that configuration, and makes it the default GRUB boot
65797bff
LC
6086entry (@pxref{Invoking guix system}).
6087
6088The normal way to change the system's configuration is by updating this
6089file and re-running @command{guix system reconfigure}. One should never
6090have to touch files in @command{/etc} or to run commands that modify the
6091system state such as @command{useradd} or @command{grub-install}. In
6092fact, you must avoid that since that would not only void your warranty
6093but also prevent you from rolling back to previous versions of your
6094system, should you ever need to.
6095
6096@cindex roll-back, of the operating system
6097Speaking of roll-back, each time you run @command{guix system
6098reconfigure}, a new @dfn{generation} of the system is created---without
6099modifying or deleting previous generations. Old system generations get
6100an entry in the GRUB boot menu, allowing you to boot them in case
6101something went wrong with the latest generation. Reassuring, no? The
6102@command{guix system list-generations} command lists the system
6103generations available on disk.
b81e1947 6104
5d94ac51
LC
6105@unnumberedsubsubsec The Programming Interface
6106
cf4a9129
LC
6107At the Scheme level, the bulk of an @code{operating-system} declaration
6108is instantiated with the following monadic procedure (@pxref{The Store
6109Monad}):
b81e1947 6110
cf4a9129
LC
6111@deffn {Monadic Procedure} operating-system-derivation os
6112Return a derivation that builds @var{os}, an @code{operating-system}
6113object (@pxref{Derivations}).
b81e1947 6114
cf4a9129
LC
6115The output of the derivation is a single directory that refers to all
6116the packages, configuration files, and other supporting files needed to
6117instantiate @var{os}.
6118@end deffn
b81e1947 6119
5d94ac51
LC
6120This procedure is provided by the @code{(gnu system)} module. Along
6121with @code{(gnu services)} (@pxref{Services}), this module contains the
6122guts of GuixSD. Make sure to visit it!
6123
6124
7313a52e
LC
6125@node operating-system Reference
6126@subsection @code{operating-system} Reference
6127
6128This section summarizes all the options available in
6129@code{operating-system} declarations (@pxref{Using the Configuration
6130System}).
6131
6132@deftp {Data Type} operating-system
6133This is the data type representing an operating system configuration.
6134By that, we mean all the global system configuration, not per-user
6135configuration (@pxref{Using the Configuration System}).
6136
6137@table @asis
6138@item @code{kernel} (default: @var{linux-libre})
fbb25e56 6139The package object of the operating system kernel to use@footnote{Currently
7313a52e
LC
6140only the Linux-libre kernel is supported. In the future, it will be
6141possible to use the GNU@tie{}Hurd.}.
6142
ee2a6304
LC
6143@item @code{kernel-arguments} (default: @code{'()})
6144List of strings or gexps representing additional arguments to pass on
6145the kernel's command-line---e.g., @code{("console=ttyS0")}.
6146
7313a52e 6147@item @code{bootloader}
88faf933 6148The system bootloader configuration object. @xref{GRUB Configuration}.
7313a52e
LC
6149
6150@item @code{initrd} (default: @code{base-initrd})
6151A two-argument monadic procedure that returns an initial RAM disk for
6152the Linux kernel. @xref{Initial RAM Disk}.
6153
f34c56be
LC
6154@item @code{firmware} (default: @var{%base-firmware})
6155@cindex firmware
6156List of firmware packages loadable by the operating system kernel.
6157
6158The default includes firmware needed for Atheros-based WiFi devices
6159(Linux-libre module @code{ath9k}.)
6160
7313a52e
LC
6161@item @code{host-name}
6162The host name.
6163
6164@item @code{hosts-file}
6165@cindex hosts file
24e02c28 6166A file-like object (@pxref{G-Expressions, file-like objects}) for use as
7313a52e 6167@file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library
24e02c28 6168Reference Manual}). The default is a file with entries for
7313a52e
LC
6169@code{localhost} and @var{host-name}.
6170
6171@item @code{mapped-devices} (default: @code{'()})
6172A list of mapped devices. @xref{Mapped Devices}.
6173
6174@item @code{file-systems}
6175A list of file systems. @xref{File Systems}.
6176
6177@item @code{swap-devices} (default: @code{'()})
6178@cindex swap devices
6179A list of strings identifying devices to be used for ``swap space''
6180(@pxref{Memory Concepts,,, libc, The GNU C Library Reference Manual}).
6181For example, @code{'("/dev/sda3")}.
6182
bf87f38a 6183@item @code{users} (default: @code{%base-user-accounts})
7313a52e
LC
6184@itemx @code{groups} (default: @var{%base-groups})
6185List of user accounts and groups. @xref{User Accounts}.
6186
6187@item @code{skeletons} (default: @code{(default-skeletons)})
6188A monadic list of pairs of target file name and files. These are the
6189files that will be used as skeletons as new accounts are created.
6190
6191For instance, a valid value may look like this:
6192
6193@example
6194(mlet %store-monad ((bashrc (text-file "bashrc" "\
6195 export PATH=$HOME/.guix-profile/bin")))
6196 (return `((".bashrc" ,bashrc))))
6197@end example
6198
6199@item @code{issue} (default: @var{%default-issue})
6200A string denoting the contents of the @file{/etc/issue} file, which is
6201what displayed when users log in on a text console.
6202
6203@item @code{packages} (default: @var{%base-packages})
6204The set of packages installed in the global profile, which is accessible
6205at @file{/run/current-system/profile}.
6206
6207The default set includes core utilities, but it is good practice to
6208install non-core utilities in user profiles (@pxref{Invoking guix
6209package}).
6210
6211@item @code{timezone}
6212A timezone identifying string---e.g., @code{"Europe/Paris"}.
6213
17c20385
LC
6214You can run the @command{tzselect} command to find out which timezone
6215string corresponds to your region. Choosing an invalid timezone name
6216causes @command{guix system} to fail.
6217
598e19dc
LC
6218@item @code{locale} (default: @code{"en_US.utf8"})
6219The name of the default locale (@pxref{Locale Names,,, libc, The GNU C
6220Library Reference Manual}). @xref{Locales}, for more information.
6221
6222@item @code{locale-definitions} (default: @var{%default-locale-definitions})
6223The list of locale definitions to be compiled and that may be used at
6224run time. @xref{Locales}.
7313a52e 6225
34760ae7
LC
6226@item @code{locale-libcs} (default: @code{(list @var{glibc})})
6227The list of GNU@tie{}libc packages whose locale data and tools are used
6228to build the locale definitions. @xref{Locales}, for compatibility
6229considerations that justify this option.
6230
996ed739
LC
6231@item @code{name-service-switch} (default: @var{%default-nss})
6232Configuration of libc's name service switch (NSS)---a
6233@code{<name-service-switch>} object. @xref{Name Service Switch}, for
6234details.
6235
7313a52e 6236@item @code{services} (default: @var{%base-services})
28d939af 6237A list of service objects denoting system services. @xref{Services}.
7313a52e
LC
6238
6239@item @code{pam-services} (default: @code{(base-pam-services)})
6240@cindex PAM
6241@cindex pluggable authentication modules
6242Linux @dfn{pluggable authentication module} (PAM) services.
6243@c FIXME: Add xref to PAM services section.
6244
6245@item @code{setuid-programs} (default: @var{%setuid-programs})
6246List of string-valued G-expressions denoting setuid programs.
6247@xref{Setuid Programs}.
6248
f5a9ffa0
AK
6249@item @code{sudoers-file} (default: @var{%sudoers-specification})
6250@cindex sudoers file
84765839
LC
6251The contents of the @file{/etc/sudoers} file as a file-like object
6252(@pxref{G-Expressions, @code{local-file} and @code{plain-file}}).
7313a52e
LC
6253
6254This file specifies which users can use the @command{sudo} command, what
6255they are allowed to do, and what privileges they may gain. The default
6256is that only @code{root} and members of the @code{wheel} group may use
6257@code{sudo}.
6258
6259@end table
6260@end deftp
6261
cf4a9129
LC
6262@node File Systems
6263@subsection File Systems
b81e1947 6264
cf4a9129
LC
6265The list of file systems to be mounted is specified in the
6266@code{file-systems} field of the operating system's declaration
6267(@pxref{Using the Configuration System}). Each file system is declared
6268using the @code{file-system} form, like this:
b81e1947
LC
6269
6270@example
cf4a9129
LC
6271(file-system
6272 (mount-point "/home")
6273 (device "/dev/sda3")
6274 (type "ext4"))
b81e1947
LC
6275@end example
6276
cf4a9129
LC
6277As usual, some of the fields are mandatory---those shown in the example
6278above---while others can be omitted. These are described below.
b81e1947 6279
cf4a9129
LC
6280@deftp {Data Type} file-system
6281Objects of this type represent file systems to be mounted. They
6282contain the following members:
5ff3c4b8 6283
cf4a9129
LC
6284@table @asis
6285@item @code{type}
6286This is a string specifying the type of the file system---e.g.,
6287@code{"ext4"}.
5ff3c4b8 6288
cf4a9129
LC
6289@item @code{mount-point}
6290This designates the place where the file system is to be mounted.
b81e1947 6291
cf4a9129
LC
6292@item @code{device}
6293This names the ``source'' of the file system. By default it is the name
6294of a node under @file{/dev}, but its meaning depends on the @code{title}
6295field described below.
401c53c4 6296
cf4a9129
LC
6297@item @code{title} (default: @code{'device})
6298This is a symbol that specifies how the @code{device} field is to be
6299interpreted.
401c53c4 6300
cf4a9129
LC
6301When it is the symbol @code{device}, then the @code{device} field is
6302interpreted as a file name; when it is @code{label}, then @code{device}
6303is interpreted as a partition label name; when it is @code{uuid},
6304@code{device} is interpreted as a partition unique identifier (UUID).
da7cabd4 6305
661a1d79 6306UUIDs may be converted from their string representation (as shown by the
0767f6a6
LC
6307@command{tune2fs -l} command) using the @code{uuid} form@footnote{The
6308@code{uuid} form expects 16-byte UUIDs as defined in
6309@uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the
6310form of UUID used by the ext2 family of file systems and others, but it
6311is different from ``UUIDs'' found in FAT file systems, for instance.},
6312like this:
661a1d79
LC
6313
6314@example
6315(file-system
6316 (mount-point "/home")
6317 (type "ext4")
6318 (title 'uuid)
6319 (device (uuid "4dab5feb-d176-45de-b287-9b0a6e4c01cb")))
6320@end example
6321
cf4a9129 6322The @code{label} and @code{uuid} options offer a way to refer to disk
661a1d79
LC
6323partitions without having to hard-code their actual device
6324name@footnote{Note that, while it is tempting to use
6325@file{/dev/disk/by-uuid} and similar device names to achieve the same
6326result, this is not recommended: These special device nodes are created
6327by the udev daemon and may be unavailable at the time the device is
6328mounted.}.
da7cabd4 6329
5f86a66e
LC
6330However, when a file system's source is a mapped device (@pxref{Mapped
6331Devices}), its @code{device} field @emph{must} refer to the mapped
6332device name---e.g., @file{/dev/mapper/root-partition}---and consequently
6333@code{title} must be set to @code{'device}. This is required so that
6334the system knows that mounting the file system depends on having the
6335corresponding device mapping established.
6336
cf4a9129
LC
6337@item @code{flags} (default: @code{'()})
6338This is a list of symbols denoting mount flags. Recognized flags
2c071ce9
LC
6339include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow
6340access to special files), @code{no-suid} (ignore setuid and setgid
6341bits), and @code{no-exec} (disallow program execution.)
da7cabd4 6342
cf4a9129
LC
6343@item @code{options} (default: @code{#f})
6344This is either @code{#f}, or a string denoting mount options.
da7cabd4 6345
be21979d
LC
6346@item @code{mount?} (default: @code{#t})
6347This value indicates whether to automatically mount the file system when
6348the system is brought up. When set to @code{#f}, the file system gets
6349an entry in @file{/etc/fstab} (read by the @command{mount} command) but
6350is not automatically mounted.
6351
cf4a9129
LC
6352@item @code{needed-for-boot?} (default: @code{#f})
6353This Boolean value indicates whether the file system is needed when
6354booting. If that is true, then the file system is mounted when the
6355initial RAM disk (initrd) is loaded. This is always the case, for
6356instance, for the root file system.
da7cabd4 6357
cf4a9129
LC
6358@item @code{check?} (default: @code{#t})
6359This Boolean indicates whether the file system needs to be checked for
6360errors before being mounted.
f9cc8971 6361
4e469051
LC
6362@item @code{create-mount-point?} (default: @code{#f})
6363When true, the mount point is created if it does not exist yet.
6364
e51710d1
LC
6365@item @code{dependencies} (default: @code{'()})
6366This is a list of @code{<file-system>} objects representing file systems
6367that must be mounted before (and unmounted after) this one.
6368
6369As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is
6370a dependency of @file{/sys/fs/cgroup/cpu} and
6371@file{/sys/fs/cgroup/memory}.
6372
cf4a9129
LC
6373@end table
6374@end deftp
da7cabd4 6375
a69576ea
LC
6376The @code{(gnu system file-systems)} exports the following useful
6377variables.
6378
6379@defvr {Scheme Variable} %base-file-systems
6380These are essential file systems that are required on normal systems,
cc0e575a 6381such as @var{%pseudo-terminal-file-system} and @var{%immutable-store} (see
3392ce5d
LC
6382below.) Operating system declarations should always contain at least
6383these.
a69576ea
LC
6384@end defvr
6385
7f239fd3
LC
6386@defvr {Scheme Variable} %pseudo-terminal-file-system
6387This is the file system to be mounted as @file{/dev/pts}. It supports
6388@dfn{pseudo-terminals} created @i{via} @code{openpty} and similar
6389functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference
6390Manual}). Pseudo-terminals are used by terminal emulators such as
6391@command{xterm}.
6392@end defvr
6393
db17ae5c
LC
6394@defvr {Scheme Variable} %shared-memory-file-system
6395This file system is mounted as @file{/dev/shm} and is used to support
6396memory sharing across processes (@pxref{Memory-mapped I/O,
6397@code{shm_open},, libc, The GNU C Library Reference Manual}).
6398@end defvr
6399
3392ce5d
LC
6400@defvr {Scheme Variable} %immutable-store
6401This file system performs a read-only ``bind mount'' of
6402@file{/gnu/store}, making it read-only for all the users including
6403@code{root}. This prevents against accidental modification by software
6404running as @code{root} or by system administrators.
6405
6406The daemon itself is still able to write to the store: it remounts it
6407read-write in its own ``name space.''
6408@end defvr
6409
a69576ea
LC
6410@defvr {Scheme Variable} %binary-format-file-system
6411The @code{binfmt_misc} file system, which allows handling of arbitrary
6412executable file types to be delegated to user space. This requires the
6413@code{binfmt.ko} kernel module to be loaded.
6414@end defvr
6415
6416@defvr {Scheme Variable} %fuse-control-file-system
6417The @code{fusectl} file system, which allows unprivileged users to mount
6418and unmount user-space FUSE file systems. This requires the
6419@code{fuse.ko} kernel module to be loaded.
6420@end defvr
6421
510f9d86
LC
6422@node Mapped Devices
6423@subsection Mapped Devices
6424
6425@cindex device mapping
6426@cindex mapped devices
6427The Linux kernel has a notion of @dfn{device mapping}: a block device,
6428such as a hard disk partition, can be @dfn{mapped} into another device,
6429with additional processing over the data that flows through
6430it@footnote{Note that the GNU@tie{}Hurd makes no difference between the
6431concept of a ``mapped device'' and that of a file system: both boil down
6432to @emph{translating} input/output operations made on a file to
6433operations on its backing store. Thus, the Hurd implements mapped
6434devices, like file systems, using the generic @dfn{translator} mechanism
6435(@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A
6436typical example is encryption device mapping: all writes to the mapped
6437device are encrypted, and all reads are deciphered, transparently.
6438
6439Mapped devices are declared using the @code{mapped-device} form:
6440
6441@example
6442(mapped-device
6443 (source "/dev/sda3")
6444 (target "home")
6445 (type luks-device-mapping))
6446@end example
6447
6448@noindent
6449@cindex disk encryption
6450@cindex LUKS
6451This example specifies a mapping from @file{/dev/sda3} to
6452@file{/dev/mapper/home} using LUKS---the
6453@url{http://code.google.com/p/cryptsetup,Linux Unified Key Setup}, a
6454standard mechanism for disk encryption. The @file{/dev/mapper/home}
6455device can then be used as the @code{device} of a @code{file-system}
6456declaration (@pxref{File Systems}). The @code{mapped-device} form is
6457detailed below.
6458
6459@deftp {Data Type} mapped-device
6460Objects of this type represent device mappings that will be made when
6461the system boots up.
6462
9cb426b8
LC
6463@table @code
6464@item source
510f9d86
LC
6465This string specifies the name of the block device to be mapped, such as
6466@code{"/dev/sda3"}.
6467
9cb426b8 6468@item target
510f9d86
LC
6469This string specifies the name of the mapping to be established. For
6470example, specifying @code{"my-partition"} will lead to the creation of
6471the @code{"/dev/mapper/my-partition"} device.
6472
9cb426b8 6473@item type
510f9d86
LC
6474This must be a @code{mapped-device-kind} object, which specifies how
6475@var{source} is mapped to @var{target}.
6476@end table
6477@end deftp
6478
6479@defvr {Scheme Variable} luks-device-mapping
6480This defines LUKS block device encryption using the @command{cryptsetup}
6481command, from the same-named package. This relies on the
6482@code{dm-crypt} Linux kernel module.
6483@end defvr
6484
cf4a9129
LC
6485@node User Accounts
6486@subsection User Accounts
ee85f3db 6487
9bea87a5
LC
6488User accounts and groups are entirely managed through the
6489@code{operating-system} declaration. They are specified with the
6490@code{user-account} and @code{user-group} forms:
ee85f3db 6491
cf4a9129
LC
6492@example
6493(user-account
6494 (name "alice")
6495 (group "users")
24e752c0
LC
6496 (supplementary-groups '("wheel" ;allow use of sudo, etc.
6497 "audio" ;sound card
6498 "video" ;video devices such as webcams
6499 "cdrom")) ;the good ol' CD-ROM
cf4a9129
LC
6500 (comment "Bob's sister")
6501 (home-directory "/home/alice"))
6502@end example
25083588 6503
9bea87a5
LC
6504When booting or upon completion of @command{guix system reconfigure},
6505the system ensures that only the user accounts and groups specified in
6506the @code{operating-system} declaration exist, and with the specified
6507properties. Thus, account or group creations or modifications made by
6508directly invoking commands such as @command{useradd} are lost upon
6509reconfiguration or reboot. This ensures that the system remains exactly
6510as declared.
6511
cf4a9129
LC
6512@deftp {Data Type} user-account
6513Objects of this type represent user accounts. The following members may
6514be specified:
ee85f3db 6515
cf4a9129
LC
6516@table @asis
6517@item @code{name}
6518The name of the user account.
ee85f3db 6519
cf4a9129
LC
6520@item @code{group}
6521This is the name (a string) or identifier (a number) of the user group
6522this account belongs to.
ee85f3db 6523
cf4a9129
LC
6524@item @code{supplementary-groups} (default: @code{'()})
6525Optionally, this can be defined as a list of group names that this
6526account belongs to.
ee85f3db 6527
cf4a9129
LC
6528@item @code{uid} (default: @code{#f})
6529This is the user ID for this account (a number), or @code{#f}. In the
6530latter case, a number is automatically chosen by the system when the
6531account is created.
ee85f3db 6532
cf4a9129
LC
6533@item @code{comment} (default: @code{""})
6534A comment about the account, such as the account's owner full name.
c8c871d1 6535
cf4a9129
LC
6536@item @code{home-directory}
6537This is the name of the home directory for the account.
ee85f3db 6538
cf4a9129
LC
6539@item @code{shell} (default: Bash)
6540This is a G-expression denoting the file name of a program to be used as
6541the shell (@pxref{G-Expressions}).
ee85f3db 6542
cf4a9129
LC
6543@item @code{system?} (default: @code{#f})
6544This Boolean value indicates whether the account is a ``system''
6545account. System accounts are sometimes treated specially; for instance,
6546graphical login managers do not list them.
ee85f3db 6547
1bd4e6db 6548@anchor{user-account-password}
cf4a9129 6549@item @code{password} (default: @code{#f})
eb59595c
LC
6550You would normally leave this field to @code{#f}, initialize user
6551passwords as @code{root} with the @command{passwd} command, and then let
9bea87a5
LC
6552users change it with @command{passwd}. Passwords set with
6553@command{passwd} are of course preserved across reboot and
6554reconfiguration.
eb59595c
LC
6555
6556If you @emph{do} want to have a preset password for an account, then
6557this field must contain the encrypted password, as a string.
5d1f1177
LC
6558@xref{crypt,,, libc, The GNU C Library Reference Manual}, for more information
6559on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference
eb59595c 6560Manual}, for information on Guile's @code{crypt} procedure.
c8c871d1 6561
cf4a9129
LC
6562@end table
6563@end deftp
ee85f3db 6564
cf4a9129 6565User group declarations are even simpler:
ee85f3db 6566
cf4a9129
LC
6567@example
6568(user-group (name "students"))
6569@end example
ee85f3db 6570
cf4a9129
LC
6571@deftp {Data Type} user-group
6572This type is for, well, user groups. There are just a few fields:
af8a56b8 6573
cf4a9129
LC
6574@table @asis
6575@item @code{name}
6576The group's name.
ee85f3db 6577
cf4a9129
LC
6578@item @code{id} (default: @code{#f})
6579The group identifier (a number). If @code{#f}, a new number is
6580automatically allocated when the group is created.
ee85f3db 6581
c8fa3426
LC
6582@item @code{system?} (default: @code{#f})
6583This Boolean value indicates whether the group is a ``system'' group.
6584System groups have low numerical IDs.
6585
cf4a9129
LC
6586@item @code{password} (default: @code{#f})
6587What, user groups can have a password? Well, apparently yes. Unless
6588@code{#f}, this field specifies the group's password.
ee85f3db 6589
cf4a9129
LC
6590@end table
6591@end deftp
401c53c4 6592
cf4a9129
LC
6593For convenience, a variable lists all the basic user groups one may
6594expect:
401c53c4 6595
cf4a9129
LC
6596@defvr {Scheme Variable} %base-groups
6597This is the list of basic user groups that users and/or packages expect
6598to be present on the system. This includes groups such as ``root'',
6599``wheel'', and ``users'', as well as groups used to control access to
6600specific devices such as ``audio'', ``disk'', and ``cdrom''.
6601@end defvr
401c53c4 6602
bf87f38a
LC
6603@defvr {Scheme Variable} %base-user-accounts
6604This is the list of basic system accounts that programs may expect to
6605find on a GNU/Linux system, such as the ``nobody'' account.
6606
6607Note that the ``root'' account is not included here. It is a
6608special-case and is automatically added whether or not it is specified.
6609@end defvr
6610
598e19dc
LC
6611@node Locales
6612@subsection Locales
6613
6614@cindex locale
6615A @dfn{locale} defines cultural conventions for a particular language
6616and region of the world (@pxref{Locales,,, libc, The GNU C Library
6617Reference Manual}). Each locale has a name that typically has the form
b2636518 6618@code{@var{language}_@var{territory}.@var{codeset}}---e.g.,
598e19dc
LC
6619@code{fr_LU.utf8} designates the locale for the French language, with
6620cultural conventions from Luxembourg, and using the UTF-8 encoding.
6621
6622@cindex locale definition
6623Usually, you will want to specify the default locale for the machine
6624using the @code{locale} field of the @code{operating-system} declaration
6625(@pxref{operating-system Reference, @code{locale}}).
6626
f5582b2c
LC
6627The selected locale is automatically added to the @dfn{locale
6628definitions} known to the system if needed, with its codeset inferred
6629from its name---e.g., @code{bo_CN.utf8} will be assumed to use the
6630@code{UTF-8} codeset. Additional locale definitions can be specified in
6631the @code{locale-definitions} slot of @code{operating-system}---this is
6632useful, for instance, if the codeset could not be inferred from the
6633locale name. The default set of locale definitions includes some widely
6634used locales, but not all the available locales, in order to save space.
6635
6636For instance, to add the North Frisian locale for Germany, the value of
6637that field may be:
598e19dc
LC
6638
6639@example
6640(cons (locale-definition
6641 (name "fy_DE.utf8") (source "fy_DE"))
6642 %default-locale-definitions)
6643@end example
6644
6645Likewise, to save space, one might want @code{locale-definitions} to
6646list only the locales that are actually used, as in:
6647
6648@example
6649(list (locale-definition
6650 (name "ja_JP.eucjp") (source "ja_JP")
6651 (charset "EUC-JP")))
6652@end example
6653
5c3c1427
LC
6654@vindex LOCPATH
6655The compiled locale definitions are available at
46bd6edd
LC
6656@file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc
6657version, which is the default location where the GNU@tie{}libc provided
6658by Guix looks for locale data. This can be overridden using the
6659@code{LOCPATH} environment variable (@pxref{locales-and-locpath,
5c3c1427
LC
6660@code{LOCPATH} and locale packages}).
6661
598e19dc
LC
6662The @code{locale-definition} form is provided by the @code{(gnu system
6663locale)} module. Details are given below.
6664
6665@deftp {Data Type} locale-definition
6666This is the data type of a locale definition.
6667
6668@table @asis
6669
6670@item @code{name}
6671The name of the locale. @xref{Locale Names,,, libc, The GNU C Library
6672Reference Manual}, for more information on locale names.
6673
6674@item @code{source}
6675The name of the source for that locale. This is typically the
6676@code{@var{language}_@var{territory}} part of the locale name.
6677
6678@item @code{charset} (default: @code{"UTF-8"})
6679The ``character set'' or ``code set'' for that locale,
6680@uref{http://www.iana.org/assignments/character-sets, as defined by
6681IANA}.
6682
6683@end table
6684@end deftp
6685
6686@defvr {Scheme Variable} %default-locale-definitions
b2636518
LC
6687An arbitrary list of commonly used UTF-8 locales, used as the default
6688value of the @code{locale-definitions} field of @code{operating-system}
598e19dc 6689declarations.
b2636518
LC
6690
6691@cindex locale name
6692@cindex normalized codeset in locale names
6693These locale definitions use the @dfn{normalized codeset} for the part
6694that follows the dot in the name (@pxref{Using gettextized software,
6695normalized codeset,, libc, The GNU C Library Reference Manual}). So for
6696instance it has @code{uk_UA.utf8} but @emph{not}, say,
6697@code{uk_UA.UTF-8}.
598e19dc 6698@end defvr
401c53c4 6699
34760ae7
LC
6700@subsubsection Locale Data Compatibility Considerations
6701
6702@cindex incompatibility, of locale data
6703@code{operating-system} declarations provide a @code{locale-libcs} field
6704to specify the GNU@tie{}libc packages that are used to compile locale
6705declarations (@pxref{operating-system Reference}). ``Why would I
6706care?'', you may ask. Well, it turns out that the binary format of
6707locale data is occasionally incompatible from one libc version to
6708another.
6709
6710@c See <https://sourceware.org/ml/libc-alpha/2015-09/msg00575.html>
6711@c and <https://lists.gnu.org/archive/html/guix-devel/2015-08/msg00737.html>.
6712For instance, a program linked against libc version 2.21 is unable to
6713read locale data produced with libc 2.22; worse, that program
6714@emph{aborts} instead of simply ignoring the incompatible locale
6715data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip
6716the incompatible locale data, which is already an improvement.}.
6717Similarly, a program linked against libc 2.22 can read most, but not
6718all, the locale data from libc 2.21 (specifically, @code{LC_COLLATE}
6719data is incompatible); thus calls to @code{setlocale} may fail, but
6720programs will not abort.
6721
6722The ``problem'' in GuixSD is that users have a lot of freedom: They can
6723choose whether and when to upgrade software in their profiles, and might
6724be using a libc version different from the one the system administrator
6725used to build the system-wide locale data.
6726
6727Fortunately, unprivileged users can also install their own locale data
6728and define @var{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath,
6729@code{GUIX_LOCPATH} and locale packages}).
6730
6731Still, it is best if the system-wide locale data at
6732@file{/run/current-system/locale} is built for all the libc versions
6733actually in use on the system, so that all the programs can access
6734it---this is especially crucial on a multi-user system. To do that, the
6735administrator can specify several libc packages in the
6736@code{locale-libcs} field of @code{operating-system}:
6737
6738@example
6739(use-package-modules base)
6740
6741(operating-system
6742 ;; @dots{}
6743 (locale-libcs (list glibc-2.21 (canonical-package glibc))))
6744@end example
6745
6746This example would lead to a system containing locale definitions for
6747both libc 2.21 and the current version of libc in
6748@file{/run/current-system/locale}.
6749
6750
cf4a9129
LC
6751@node Services
6752@subsection Services
401c53c4 6753
cf4a9129
LC
6754@cindex system services
6755An important part of preparing an @code{operating-system} declaration is
6756listing @dfn{system services} and their configuration (@pxref{Using the
6757Configuration System}). System services are typically daemons launched
6758when the system boots, or other actions needed at that time---e.g.,
d8b94dbd
LC
6759configuring network access.
6760
dd17bc38
AK
6761Services are managed by the GNU@tie{}Shepherd (@pxref{Introduction,,,
6762shepherd, The GNU Shepherd Manual}). On a running system, the
6763@command{herd} command allows you to list the available services, show
6764their status, start and stop them, or do other specific operations
6765(@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:
d8b94dbd
LC
6766
6767@example
dd17bc38 6768# herd status
d8b94dbd
LC
6769@end example
6770
6771The above command, run as @code{root}, lists the currently defined
dd17bc38 6772services. The @command{herd doc} command shows a synopsis of the given
d8b94dbd
LC
6773service:
6774
6775@example
dd17bc38 6776# herd doc nscd
d8b94dbd
LC
6777Run libc's name service cache daemon (nscd).
6778@end example
6779
6780The @command{start}, @command{stop}, and @command{restart} sub-commands
6781have the effect you would expect. For instance, the commands below stop
6782the nscd service and restart the Xorg display server:
6783
6784@example
dd17bc38 6785# herd stop nscd
d8b94dbd 6786Service nscd has been stopped.
dd17bc38 6787# herd restart xorg-server
d8b94dbd
LC
6788Service xorg-server has been stopped.
6789Service xorg-server has been started.
6790@end example
401c53c4 6791
cf4a9129 6792The following sections document the available services, starting with
d8b94dbd
LC
6793the core services, that may be used in an @code{operating-system}
6794declaration.
401c53c4 6795
cf4a9129
LC
6796@menu
6797* Base Services:: Essential system services.
6798* Networking Services:: Network setup, SSH daemon, etc.
6799* X Window:: Graphical display.
fe1a39d3 6800* Desktop Services:: D-Bus and desktop services.
105369a4 6801* Database Services:: SQL databases.
d8c18af8 6802* Mail Services:: IMAP, POP3, SMTP, and all that.
58724c48 6803* Web Services:: Web servers.
aa4ed923 6804* Various Services:: Other services.
cf4a9129 6805@end menu
401c53c4 6806
cf4a9129
LC
6807@node Base Services
6808@subsubsection Base Services
a1ba8475 6809
cf4a9129
LC
6810The @code{(gnu services base)} module provides definitions for the basic
6811services that one expects from the system. The services exported by
6812this module are listed below.
401c53c4 6813
cf4a9129 6814@defvr {Scheme Variable} %base-services
31771497
LC
6815This variable contains a list of basic services (@pxref{Service Types
6816and Services}, for more information on service objects) one would
cf4a9129
LC
6817expect from the system: a login service (mingetty) on each tty, syslogd,
6818libc's name service cache daemon (nscd), the udev device manager, and
6819more.
401c53c4 6820
cf4a9129
LC
6821This is the default value of the @code{services} field of
6822@code{operating-system} declarations. Usually, when customizing a
6823system, you will want to append services to @var{%base-services}, like
6824this:
401c53c4 6825
cf4a9129 6826@example
fa1e31b8 6827(cons* (avahi-service) (lsh-service) %base-services)
cf4a9129
LC
6828@end example
6829@end defvr
401c53c4 6830
be1c2c54 6831@deffn {Scheme Procedure} host-name-service @var{name}
cf4a9129
LC
6832Return a service that sets the host name to @var{name}.
6833@end deffn
401c53c4 6834
66e4f01c
LC
6835@deffn {Scheme Procedure} mingetty-service @var{config}
6836Return a service to run mingetty according to @var{config}, a
6837@code{<mingetty-configuration>} object, which specifies the tty to run, among
6838other things.
cf4a9129 6839@end deffn
401c53c4 6840
66e4f01c
LC
6841@deftp {Data Type} mingetty-configuration
6842This is the data type representing the configuration of Mingetty, which
6843implements console log-in.
6844
6845@table @asis
6846
6847@item @code{tty}
6848The name of the console this Mingetty runs on---e.g., @code{"tty1"}.
6849
6850@item @code{motd}
6851A file-like object containing the ``message of the day''.
6852
6853@item @code{auto-login} (default: @code{#f})
6854When true, this field must be a string denoting the user name under
f9b9a033 6855which the system automatically logs in. When it is @code{#f}, a
66e4f01c
LC
6856user name and password must be entered to log in.
6857
6858@item @code{login-program} (default: @code{#f})
6859This must be either @code{#f}, in which case the default log-in program
6860is used (@command{login} from the Shadow tool suite), or a gexp denoting
6861the name of the log-in program.
6862
6863@item @code{login-pause?} (default: @code{#f})
6864When set to @code{#t} in conjunction with @var{auto-login}, the user
6865will have to press a key before the log-in shell is launched.
6866
6867@item @code{mingetty} (default: @var{mingetty})
6868The Mingetty package to use.
6869
6870@end table
6871@end deftp
6872
6454b333
LC
6873@cindex name service cache daemon
6874@cindex nscd
be1c2c54 6875@deffn {Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @
4aee6e60 6876 [#:name-services '()]
b893f1ae
LC
6877Return a service that runs libc's name service cache daemon (nscd) with the
6878given @var{config}---an @code{<nscd-configuration>} object. @xref{Name
6879Service Switch}, for an example.
cf4a9129 6880@end deffn
401c53c4 6881
6454b333
LC
6882@defvr {Scheme Variable} %nscd-default-configuration
6883This is the default @code{<nscd-configuration>} value (see below) used
6884by @code{nscd-service}. This uses the caches defined by
6885@var{%nscd-default-caches}; see below.
6886@end defvr
6887
6888@deftp {Data Type} nscd-configuration
6889This is the type representing the name service cache daemon (nscd)
6890configuration.
6891
6892@table @asis
6893
b893f1ae
LC
6894@item @code{name-services} (default: @code{'()})
6895List of packages denoting @dfn{name services} that must be visible to
6896the nscd---e.g., @code{(list @var{nss-mdns})}.
6897
6898@item @code{glibc} (default: @var{glibc})
6899Package object denoting the GNU C Library providing the @command{nscd}
6900command.
6901
6454b333
LC
6902@item @code{log-file} (default: @code{"/var/log/nscd.log"})
6903Name of nscd's log file. This is where debugging output goes when
6904@code{debug-level} is strictly positive.
6905
6906@item @code{debug-level} (default: @code{0})
6907Integer denoting the debugging levels. Higher numbers mean more
6908debugging output is logged.
6909
6910@item @code{caches} (default: @var{%nscd-default-caches})
6911List of @code{<nscd-cache>} objects denoting things to be cached; see
6912below.
6913
6914@end table
6915@end deftp
6916
6917@deftp {Data Type} nscd-cache
6918Data type representing a cache database of nscd and its parameters.
6919
6920@table @asis
6921
6922@item @code{database}
6923This is a symbol representing the name of the database to be cached.
6924Valid values are @code{passwd}, @code{group}, @code{hosts}, and
6925@code{services}, which designate the corresponding NSS database
6926(@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual}).
6927
6928@item @code{positive-time-to-live}
6929@itemx @code{negative-time-to-live} (default: @code{20})
6930A number representing the number of seconds during which a positive or
6931negative lookup result remains in cache.
6932
6933@item @code{check-files?} (default: @code{#t})
6934Whether to check for updates of the files corresponding to
6935@var{database}.
6936
6937For instance, when @var{database} is @code{hosts}, setting this flag
6938instructs nscd to check for updates in @file{/etc/hosts} and to take
6939them into account.
6940
6941@item @code{persistent?} (default: @code{#t})
6942Whether the cache should be stored persistently on disk.
6943
6944@item @code{shared?} (default: @code{#t})
6945Whether the cache should be shared among users.
6946
6947@item @code{max-database-size} (default: 32@tie{}MiB)
6948Maximum size in bytes of the database cache.
6949
6950@c XXX: 'suggested-size' and 'auto-propagate?' seem to be expert
6951@c settings, so leave them out.
6952
6953@end table
6954@end deftp
6955
6956@defvr {Scheme Variable} %nscd-default-caches
6957List of @code{<nscd-cache>} objects used by default by
6958@code{nscd-configuration} (see above.)
6959
6960It enables persistent and aggressive caching of service and host name
6961lookups. The latter provides better host name lookup performance,
6962resilience in the face of unreliable name servers, and also better
6963privacy---often the result of host name lookups is in local cache, so
6964external name servers do not even need to be queried.
6965@end defvr
6966
6967
be1c2c54 6968@deffn {Scheme Procedure} syslog-service [#:config-file #f]
1bb76f75
AK
6969Return a service that runs @code{syslogd}. If configuration file name
6970@var{config-file} is not specified, use some reasonable default
cf4a9129
LC
6971settings.
6972@end deffn
401c53c4 6973
0adfe95a
LC
6974@anchor{guix-configuration-type}
6975@deftp {Data Type} guix-configuration
6976This data type represents the configuration of the Guix build daemon.
6977@xref{Invoking guix-daemon}, for more information.
6978
6979@table @asis
6980@item @code{guix} (default: @var{guix})
6981The Guix package to use.
401c53c4 6982
0adfe95a
LC
6983@item @code{build-group} (default: @code{"guixbuild"})
6984Name of the group for build user accounts.
401c53c4 6985
0adfe95a
LC
6986@item @code{build-accounts} (default: @code{10})
6987Number of build user accounts to create.
401c53c4 6988
0adfe95a
LC
6989@item @code{authorize-key?} (default: @code{#t})
6990Whether to authorize the substitute key for @code{hydra.gnu.org}
6991(@pxref{Substitutes}).
6992
6993@item @code{use-substitutes?} (default: @code{#t})
6994Whether to use substitutes.
6995
b0b9f6e0
LC
6996@item @code{substitute-urls} (default: @var{%default-substitute-urls})
6997The list of URLs where to look for substitutes by default.
6998
0adfe95a
LC
6999@item @code{extra-options} (default: @code{'()})
7000List of extra command-line options for @command{guix-daemon}.
7001
7002@item @code{lsof} (default: @var{lsof})
7003@itemx @code{lsh} (default: @var{lsh})
7004The lsof and lsh packages to use.
7005
7006@end table
7007@end deftp
7008
7009@deffn {Scheme Procedure} guix-service @var{config}
7010Return a service that runs the Guix build daemon according to
7011@var{config}.
cf4a9129 7012@end deffn
a1ba8475 7013
be1c2c54 7014@deffn {Scheme Procedure} udev-service [#:udev udev]
cf4a9129
LC
7015Run @var{udev}, which populates the @file{/dev} directory dynamically.
7016@end deffn
401c53c4 7017
be1c2c54 7018@deffn {Scheme Procedure} console-keymap-service @var{file}
dedb8d5e 7019@cindex keyboard layout
5eca9459
AK
7020Return a service to load console keymap from @var{file} using
7021@command{loadkeys} command.
7022@end deffn
7023
8664cc88
LC
7024@deffn {Scheme Procedure} gpm-service-type [#:gpm @var{gpm}] @
7025 [#:options]
7026Run @var{gpm}, the general-purpose mouse daemon, with the given
7027command-line @var{options}. GPM allows users to use the mouse in the console,
7028notably to select, copy, and paste text. The default value of @var{options}
7029uses the @code{ps2} protocol, which works for both USB and PS/2 mice.
7030
7031This service is not part of @var{%base-services}.
7032@end deffn
7033
1c52181f
LC
7034@anchor{guix-publish-service}
7035@deffn {Scheme Procedure} guix-publish-service [#:guix @var{guix}] @
7036 [#:port 80] [#:host "localhost"]
7037Return a service that runs @command{guix publish} listening on @var{host}
7038and @var{port} (@pxref{Invoking guix publish}).
7039
7040This assumes that @file{/etc/guix} already contains a signing key pair as
7041created by @command{guix archive --generate-key} (@pxref{Invoking guix
7042archive}). If that is not the case, the service will fail to start.
7043@end deffn
7044
a69576ea 7045
cf4a9129
LC
7046@node Networking Services
7047@subsubsection Networking Services
401c53c4 7048
fa1e31b8 7049The @code{(gnu services networking)} module provides services to configure
cf4a9129 7050the network interface.
a1ba8475 7051
a023cca8 7052@cindex DHCP, networking service
be1c2c54 7053@deffn {Scheme Procedure} dhcp-client-service [#:dhcp @var{isc-dhcp}]
a023cca8
LC
7054Return a service that runs @var{dhcp}, a Dynamic Host Configuration
7055Protocol (DHCP) client, on all the non-loopback network interfaces.
7056@end deffn
7057
be1c2c54 7058@deffn {Scheme Procedure} static-networking-service @var{interface} @var{ip} @
cf4a9129
LC
7059 [#:gateway #f] [#:name-services @code{'()}]
7060Return a service that starts @var{interface} with address @var{ip}. If
7061@var{gateway} is true, it must be a string specifying the default network
7062gateway.
7063@end deffn
8b315a6d 7064
b7d0c494 7065@cindex wicd
87f40011 7066@cindex network management
be1c2c54 7067@deffn {Scheme Procedure} wicd-service [#:wicd @var{wicd}]
87f40011
LC
7068Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network
7069management daemon that aims to simplify wired and wireless networking.
7070
7071This service adds the @var{wicd} package to the global profile, providing
7072several commands to interact with the daemon and configure networking:
7073@command{wicd-client}, a graphical user interface, and the @command{wicd-cli}
7074and @command{wicd-curses} user interfaces.
b7d0c494
MW
7075@end deffn
7076
c0a9589d
SB
7077@cindex NetworkManager
7078@deffn {Scheme Procedure} network-manager-service @
7079 [#:network-manager @var{network-manager}]
7080Return a service that runs NetworkManager, a network connection manager
7081that attempting to keep active network connectivity when available.
7082@end deffn
7083
be1c2c54 7084@deffn {Scheme Procedure} ntp-service [#:ntp @var{ntp}] @
63854bcb
LC
7085 [#:name-service @var{%ntp-servers}]
7086Return a service that runs the daemon from @var{ntp}, the
7087@uref{http://www.ntp.org, Network Time Protocol package}. The daemon will
7088keep the system clock synchronized with that of @var{servers}.
7089@end deffn
7090
7091@defvr {Scheme Variable} %ntp-servers
7092List of host names used as the default NTP servers.
7093@end defvr
7094
375c6108
LC
7095@deffn {Scheme Procedure} tor-service [@var{config-file}] [#:tor @var{tor}]
7096Return a service to run the @uref{https://torproject.org, Tor} anonymous
7097networking daemon.
8b315a6d 7098
375c6108 7099The daemon runs as the @code{tor} unprivileged user. It is passed
6331bde7
LC
7100@var{config-file}, a file-like object, with an additional @code{User tor} line
7101and lines for hidden services added via @code{tor-hidden-service}. Run
7102@command{man tor} for information about the configuration file.
7103@end deffn
7104
24a8ef3b 7105@cindex hidden service
6331bde7
LC
7106@deffn {Scheme Procedure} tor-hidden-service @var{name} @var{mapping}
7107Define a new Tor @dfn{hidden service} called @var{name} and implementing
7108@var{mapping}. @var{mapping} is a list of port/host tuples, such as:
7109
7110@example
24a8ef3b
LC
7111 '((22 "127.0.0.1:22")
7112 (80 "127.0.0.1:8080"))
6331bde7
LC
7113@end example
7114
7115In this example, port 22 of the hidden service is mapped to local port 22, and
7116port 80 is mapped to local port 8080.
7117
6629099a
LC
7118This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where
7119the @file{hostname} file contains the @code{.onion} host name for the hidden
6331bde7
LC
7120service.
7121
7122See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor
7123project's documentation} for more information.
cf4a9129 7124@end deffn
8b315a6d 7125
be1c2c54 7126@deffn {Scheme Procedure} bitlbee-service [#:bitlbee bitlbee] @
4627a464
LC
7127 [#:interface "127.0.0.1"] [#:port 6667] @
7128 [#:extra-settings ""]
7129Return a service that runs @url{http://bitlbee.org,BitlBee}, a daemon that
7130acts as a gateway between IRC and chat networks.
7131
7132The daemon will listen to the interface corresponding to the IP address
7133specified in @var{interface}, on @var{port}. @code{127.0.0.1} means that only
7134local clients can connect, whereas @code{0.0.0.0} means that connections can
7135come from any networking interface.
7136
7137In addition, @var{extra-settings} specifies a string to append to the
7138configuration file.
7139@end deffn
7140
f4391bec 7141Furthermore, @code{(gnu services ssh)} provides the following service.
8b315a6d 7142
be1c2c54 7143@deffn {Scheme Procedure} lsh-service [#:host-key "/etc/lsh/host-key"] @
5833bf33 7144 [#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @
cf4a9129
LC
7145 [#:allow-empty-passwords? #f] [#:root-login? #f] @
7146 [#:syslog-output? #t] [#:x11-forwarding? #t] @
7147 [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @
21cc905a 7148 [#:public-key-authentication? #t] [#:initialize? #t]
cf4a9129
LC
7149Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}.
7150@var{host-key} must designate a file containing the host key, and readable
7151only by root.
72e25e35 7152
5833bf33
DP
7153When @var{daemonic?} is true, @command{lshd} will detach from the
7154controlling terminal and log its output to syslogd, unless one sets
7155@var{syslog-output?} to false. Obviously, it also makes lsh-service
7156depend on existence of syslogd service. When @var{pid-file?} is true,
7157@command{lshd} writes its PID to the file called @var{pid-file}.
7158
cf4a9129
LC
7159When @var{initialize?} is true, automatically create the seed and host key
7160upon service activation if they do not exist yet. This may take long and
7161require interaction.
8b315a6d 7162
20dd519c
LC
7163When @var{initialize?} is false, it is up to the user to initialize the
7164randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create
7165a key pair with the private key stored in file @var{host-key} (@pxref{lshd
7166basics,,, lsh, LSH Manual}).
7167
cf4a9129
LC
7168When @var{interfaces} is empty, lshd listens for connections on all the
7169network interfaces; otherwise, @var{interfaces} must be a list of host names
7170or addresses.
9bf3c1a7 7171
20dd519c
LC
7172@var{allow-empty-passwords?} specifies whether to accept log-ins with empty
7173passwords, and @var{root-login?} specifies whether to accept log-ins as
cf4a9129 7174root.
4af2447e 7175
cf4a9129
LC
7176The other options should be self-descriptive.
7177@end deffn
4af2447e 7178
fa0c1d61
LC
7179@defvr {Scheme Variable} %facebook-host-aliases
7180This variable contains a string for use in @file{/etc/hosts}
7181(@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each
7182line contains a entry that maps a known server name of the Facebook
7183on-line service---e.g., @code{www.facebook.com}---to the local
7184host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}.
7185
7186This variable is typically used in the @code{hosts-file} field of an
7313a52e
LC
7187@code{operating-system} declaration (@pxref{operating-system Reference,
7188@file{/etc/hosts}}):
fa0c1d61
LC
7189
7190@example
7191(use-modules (gnu) (guix))
7192
7193(operating-system
7194 (host-name "mymachine")
7195 ;; ...
7196 (hosts-file
7197 ;; Create a /etc/hosts file with aliases for "localhost"
7198 ;; and "mymachine", as well as for Facebook servers.
24e02c28
LC
7199 (plain-file "hosts"
7200 (string-append (local-host-aliases host-name)
7201 %facebook-host-aliases))))
fa0c1d61
LC
7202@end example
7203
7204This mechanism can prevent programs running locally, such as Web
7205browsers, from accessing Facebook.
7206@end defvr
7207
965a7332
LC
7208The @code{(gnu services avahi)} provides the following definition.
7209
be1c2c54 7210@deffn {Scheme Procedure} avahi-service [#:avahi @var{avahi}] @
965a7332
LC
7211 [#:host-name #f] [#:publish? #t] [#:ipv4? #t] @
7212 [#:ipv6? #t] [#:wide-area? #f] @
7213 [#:domains-to-browse '()]
7214Return a service that runs @command{avahi-daemon}, a system-wide
7215mDNS/DNS-SD responder that allows for service discovery and
cc9c1f39
LC
7216"zero-configuration" host name lookups (see @uref{http://avahi.org/}), and
7217extends the name service cache daemon (nscd) so that it can resolve
7218@code{.local} host names using
1065bed9
LC
7219@uref{http://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. Additionally,
7220add the @var{avahi} package to the system profile so that commands such as
7221@command{avahi-browse} are directly usable.
965a7332
LC
7222
7223If @var{host-name} is different from @code{#f}, use that as the host name to
7224publish for this machine; otherwise, use the machine's actual host name.
7225
7226When @var{publish?} is true, publishing of host names and services is allowed;
7227in particular, avahi-daemon will publish the machine's host name and IP
7228address via mDNS on the local network.
7229
7230When @var{wide-area?} is true, DNS-SD over unicast DNS is enabled.
7231
7232Boolean values @var{ipv4?} and @var{ipv6?} determine whether to use IPv4/IPv6
7233sockets.
7234@end deffn
7235
7236
cf4a9129
LC
7237@node X Window
7238@subsubsection X Window
68ad877c 7239
cf4a9129
LC
7240Support for the X Window graphical display system---specifically
7241Xorg---is provided by the @code{(gnu services xorg)} module. Note that
7242there is no @code{xorg-service} procedure. Instead, the X server is
7243started by the @dfn{login manager}, currently SLiM.
4af2447e 7244
be1c2c54 7245@deffn {Scheme Procedure} slim-service [#:allow-empty-passwords? #f] @
0ecc3bf3
LC
7246 [#:auto-login? #f] [#:default-user ""] [#:startx] @
7247 [#:theme @var{%default-slim-theme}] @
4bd43bbe 7248 [#:theme-name @var{%default-slim-theme-name}]
cf4a9129
LC
7249Return a service that spawns the SLiM graphical login manager, which in
7250turn starts the X display server with @var{startx}, a command as returned by
7251@code{xorg-start-command}.
4af2447e 7252
04e4e6ab
LC
7253@cindex X session
7254
7255SLiM automatically looks for session types described by the @file{.desktop}
7256files in @file{/run/current-system/profile/share/xsessions} and allows users
7257to choose a session from the log-in screen using @kbd{F1}. Packages such as
7258@var{xfce}, @var{sawfish}, and @var{ratpoison} provide @file{.desktop} files;
7259adding them to the system-wide set of packages automatically makes them
7260available at the log-in screen.
7261
7262In addition, @file{~/.xsession} files are honored. When available,
7263@file{~/.xsession} must be an executable that starts a window manager
7264and/or other X clients.
7265
cf4a9129
LC
7266When @var{allow-empty-passwords?} is true, allow logins with an empty
7267password. When @var{auto-login?} is true, log in automatically as
7268@var{default-user}.
0ecc3bf3
LC
7269
7270If @var{theme} is @code{#f}, the use the default log-in theme; otherwise
7271@var{theme} must be a gexp denoting the name of a directory containing the
7272theme to use. In that case, @var{theme-name} specifies the name of the
7273theme.
cf4a9129 7274@end deffn
4af2447e 7275
0ecc3bf3
LC
7276@defvr {Scheme Variable} %default-theme
7277@defvrx {Scheme Variable} %default-theme-name
7278The G-Expression denoting the default SLiM theme and its name.
7279@end defvr
7280
be1c2c54 7281@deffn {Scheme Procedure} xorg-start-command [#:guile] @
d1cdd7ba 7282 [#:configuration-file #f] [#:xorg-server @var{xorg-server}]
f703413e 7283Return a derivation that builds a @var{guile} script to start the X server
d1cdd7ba
LC
7284from @var{xorg-server}. @var{configuration-file} is the server configuration
7285file or a derivation that builds it; when omitted, the result of
7286@code{xorg-configuration-file} is used.
7287
7288Usually the X server is started by a login manager.
7289@end deffn
7290
be1c2c54 7291@deffn {Scheme Procedure} xorg-configuration-file @
12422c9d 7292 [#:drivers '()] [#:resolutions '()] [#:extra-config '()]
d1cdd7ba
LC
7293Return a configuration file for the Xorg server containing search paths for
7294all the common drivers.
f703413e
LC
7295
7296@var{drivers} must be either the empty list, in which case Xorg chooses a
7297graphics driver automatically, or a list of driver names that will be tried in
d1cdd7ba 7298this order---e.g., @code{(\"modesetting\" \"vesa\")}.
d2e59637
LC
7299
7300Likewise, when @var{resolutions} is the empty list, Xorg chooses an
7301appropriate screen resolution; otherwise, it must be a list of
7302resolutions---e.g., @code{((1024 768) (640 480))}.
12422c9d
LC
7303
7304Last, @var{extra-config} is a list of strings or objects appended to the
7305@code{text-file*} argument list. It is used to pass extra text to be added
7306verbatim to the configuration file.
f703413e 7307@end deffn
4af2447e 7308
6726282b
LC
7309@deffn {Scheme Procedure} screen-locker-service @var{package} [@var{name}]
7310Add @var{package}, a package for a screen-locker or screen-saver whose
7311command is @var{program}, to the set of setuid programs and add a PAM entry
7312for it. For example:
7313
7314@lisp
7315(screen-locker-service xlockmore "xlock")
7316@end lisp
7317
7318makes the good ol' XlockMore usable.
7319@end deffn
7320
7321
fe1a39d3
LC
7322@node Desktop Services
7323@subsubsection Desktop Services
aa4ed923 7324
fe1a39d3
LC
7325The @code{(gnu services desktop)} module provides services that are
7326usually useful in the context of a ``desktop'' setup---that is, on a
7327machine running a graphical display server, possibly with graphical user
7328interfaces, etc.
aa4ed923 7329
4467be21
LC
7330To simplify things, the module defines a variable containing the set of
7331services that users typically expect on a machine with a graphical
7332environment and networking:
7333
7334@defvr {Scheme Variable} %desktop-services
7335This is a list of services that builds upon @var{%base-services} and
7336adds or adjust services for a typical ``desktop'' setup.
7337
7338In particular, it adds a graphical login manager (@pxref{X Window,
6726282b
LC
7339@code{slim-service}}), screen lockers,
7340a network management tool (@pxref{Networking
4467be21 7341Services, @code{wicd-service}}), energy and color management services,
4650a77e 7342the @code{elogind} login and seat manager, the Polkit privilege service,
cee32ee4
AW
7343the GeoClue location service, an NTP client (@pxref{Networking
7344Services}), the Avahi daemon, and has the name service switch service
7345configured to be able to use @code{nss-mdns} (@pxref{Name Service
7346Switch, mDNS}).
4467be21
LC
7347@end defvr
7348
7349The @var{%desktop-services} variable can be used as the @code{services}
7350field of an @code{operating-system} declaration (@pxref{operating-system
7351Reference, @code{services}}).
7352
0adfe95a
LC
7353The actual service definitions provided by @code{(gnu services dbus)}
7354and @code{(gnu services desktop)} are described below.
4467be21 7355
0adfe95a 7356@deffn {Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]
fe1a39d3
LC
7357Return a service that runs the ``system bus'', using @var{dbus}, with
7358support for @var{services}.
aa4ed923 7359
fe1a39d3
LC
7360@uref{http://dbus.freedesktop.org/, D-Bus} is an inter-process communication
7361facility. Its system bus is used to allow system services to communicate
7362and be notified of system-wide events.
aa4ed923 7363
fe1a39d3
LC
7364@var{services} must be a list of packages that provide an
7365@file{etc/dbus-1/system.d} directory containing additional D-Bus configuration
7366and policy files. For example, to allow avahi-daemon to use the system bus,
7367@var{services} must be equal to @code{(list avahi)}.
aa4ed923
AK
7368@end deffn
7369
0adfe95a 7370@deffn {Scheme Procedure} elogind-service [#:config @var{config}]
4650a77e
AW
7371Return a service that runs the @code{elogind} login and
7372seat management daemon. @uref{https://github.com/andywingo/elogind,
7373Elogind} exposes a D-Bus interface that can be used to know which users
7374are logged in, know what kind of sessions they have open, suspend the
7375system, inhibit system suspend, reboot the system, and other tasks.
7376
7377Elogind handles most system-level power events for a computer, for
7378example suspending the system when a lid is closed, or shutting it down
7379when the power button is pressed.
7380
7381The @var{config} keyword argument specifies the configuration for
7382elogind, and should be the result of a @code{(elogind-configuration
7383(@var{parameter} @var{value})...)} invocation. Available parameters and
7384their default values are:
7385
7386@table @code
7387@item kill-user-processes?
7388@code{#f}
7389@item kill-only-users
7390@code{()}
7391@item kill-exclude-users
7392@code{("root")}
7393@item inhibit-delay-max-seconds
7394@code{5}
7395@item handle-power-key
7396@code{poweroff}
7397@item handle-suspend-key
7398@code{suspend}
7399@item handle-hibernate-key
7400@code{hibernate}
7401@item handle-lid-switch
7402@code{suspend}
7403@item handle-lid-switch-docked
7404@code{ignore}
7405@item power-key-ignore-inhibited?
7406@code{#f}
7407@item suspend-key-ignore-inhibited?
7408@code{#f}
7409@item hibernate-key-ignore-inhibited?
7410@code{#f}
7411@item lid-switch-ignore-inhibited?
7412@code{#t}
7413@item holdoff-timeout-seconds
7414@code{30}
7415@item idle-action
7416@code{ignore}
7417@item idle-action-seconds
7418@code{(* 30 60)}
7419@item runtime-directory-size-percent
7420@code{10}
7421@item runtime-directory-size
7422@code{#f}
7423@item remove-ipc?
7424@code{#t}
7425@item suspend-state
7426@code{("mem" "standby" "freeze")}
7427@item suspend-mode
7428@code{()}
7429@item hibernate-state
7430@code{("disk")}
7431@item hibernate-mode
7432@code{("platform" "shutdown")}
7433@item hybrid-sleep-state
7434@code{("disk")}
7435@item hybrid-sleep-mode
7436@code{("suspend" "platform" "shutdown")}
7437@end table
7438@end deffn
7439
be1c2c54 7440@deffn {Scheme Procedure} polkit-service @
4650a77e 7441 [#:polkit @var{polkit}]
222e3319
LC
7442Return a service that runs the
7443@uref{http://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege
7444management service}, which allows system administrators to grant access to
7445privileged operations in a structured way. By querying the Polkit service, a
7446privileged system component can know when it should grant additional
7447capabilities to ordinary users. For example, an ordinary user can be granted
7448the capability to suspend the system if the user is logged in locally.
4650a77e
AW
7449@end deffn
7450
be1c2c54 7451@deffn {Scheme Procedure} upower-service [#:upower @var{upower}] @
be234128
AW
7452 [#:watts-up-pro? #f] @
7453 [#:poll-batteries? #t] @
7454 [#:ignore-lid? #f] @
7455 [#:use-percentage-for-policy? #f] @
7456 [#:percentage-low 10] @
7457 [#:percentage-critical 3] @
7458 [#:percentage-action 2] @
7459 [#:time-low 1200] @
7460 [#:time-critical 300] @
7461 [#:time-action 120] @
7462 [#:critical-power-action 'hybrid-sleep]
7463Return a service that runs @uref{http://upower.freedesktop.org/,
7464@command{upowerd}}, a system-wide monitor for power consumption and battery
7465levels, with the given configuration settings. It implements the
7466@code{org.freedesktop.UPower} D-Bus interface, and is notably used by
7467GNOME.
7468@end deffn
7469
2b9e0a94
LC
7470@deffn {Scheme Procedure} udisks-service [#:udisks @var{udisks}]
7471Return a service for @uref{http://udisks.freedesktop.org/docs/latest/,
7472UDisks}, a @dfn{disk management} daemon that provides user interfaces with
7473notifications and ways to mount/unmount disks. Programs that talk to UDisks
7474include the @command{udisksctl} command, part of UDisks, and GNOME Disks.
7475@end deffn
7476
be1c2c54 7477@deffn {Scheme Procedure} colord-service [#:colord @var{colord}]
7ce597ff
AW
7478Return a service that runs @command{colord}, a system service with a D-Bus
7479interface to manage the color profiles of input and output devices such as
7480screens and scanners. It is notably used by the GNOME Color Manager graphical
7481tool. See @uref{http://www.freedesktop.org/software/colord/, the colord web
7482site} for more information.
7483@end deffn
7484
cee32ee4
AW
7485@deffn {Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]
7486Return an configuration allowing an application to access GeoClue
7487location data. @var{name} is the Desktop ID of the application, without
7488the @code{.desktop} part. If @var{allowed?} is true, the application
7489will have access to location information by default. The boolean
7490@var{system?} value indicates that an application is a system component
7491or not. Finally @var{users} is a list of UIDs of all users for which
7492this application is allowed location info access. An empty users list
7493means that all users are allowed.
7494@end deffn
7495
7496@defvr {Scheme Variable} %standard-geoclue-applications
7497The standard list of well-known GeoClue application configurations,
7498granting authority to GNOME's date-and-time utility to ask for the
7499current location in order to set the time zone, and allowing the Firefox
7500(IceCat) and Epiphany web browsers to request location information.
7501Firefox and Epiphany both query the user before allowing a web page to
7502know the user's location.
7503@end defvr
7504
be1c2c54 7505@deffn {Scheme Procedure} geoclue-service [#:colord @var{colord}] @
cee32ee4
AW
7506 [#:whitelist '()] @
7507 [#:wifi-geolocation-url "https://location.services.mozilla.com/v1/geolocate?key=geoclue"] @
7508 [#:submit-data? #f]
7509 [#:wifi-submission-url "https://location.services.mozilla.com/v1/submit?key=geoclue"] @
7510 [#:submission-nick "geoclue"] @
7511 [#:applications %standard-geoclue-applications]
7512Return a service that runs the GeoClue location service. This service
7513provides a D-Bus interface to allow applications to request access to a
7514user's physical location, and optionally to add information to online
7515location databases. See
7516@uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue
7517web site} for more information.
7518@end deffn
7519
105369a4
DT
7520@node Database Services
7521@subsubsection Database Services
7522
7523The @code{(gnu services databases)} module provides the following service.
7524
be1c2c54 7525@deffn {Scheme Procedure} postgresql-service [#:postgresql postgresql] @
105369a4
DT
7526 [#:config-file] [#:data-directory ``/var/lib/postgresql/data'']
7527Return a service that runs @var{postgresql}, the PostgreSQL database
7528server.
7529
7530The PostgreSQL daemon loads its runtime configuration from
7531@var{config-file} and stores the database cluster in
7532@var{data-directory}.
7533@end deffn
fe1a39d3 7534
d8c18af8
AW
7535@node Mail Services
7536@subsubsection Mail Services
7537
7538The @code{(gnu services mail)} module provides Guix service definitions
7539for mail services. Currently the only implemented service is Dovecot,
7540an IMAP, POP3, and LMTP server.
7541
7542Guix does not yet have a mail transfer agent (MTA), although for some
7543lightweight purposes the @code{esmtp} relay-only MTA may suffice. Help
7544is needed to properly integrate a full MTA, such as Postfix. Patches
7545welcome!
7546
7547To add an IMAP/POP3 server to a GuixSD system, add a
7548@code{dovecot-service} to the operating system definition:
7549
7550@deffn {Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]
7551Return a service that runs the Dovecot IMAP/POP3/LMTP mail server.
7552@end deffn
7553
7554By default, Dovecot doesn't need much configuration; the default
7555configuration object created by @code{(dovecot-configuration)} will
7556suffice if your mail is delivered to @code{~/Maildir}. A self-signed
7557certificate will be generated for TLS-protected connections, though
7558Dovecot will also listen on cleartext ports by default. There are a
7559number of options though which mail administrators might need to change,
7560and as is the case with other services, Guix allows the system
7561administrator to specify these parameters via a uniform Scheme interface.
7562
7563For example, to specify that mail is located at @code{maildir~/.mail},
7564one would instantiate the Dovecot service like this:
7565
7566@example
7567(dovecot-service #:config
7568 (dovecot-configuration
7569 (mail-location "maildir:~/.mail")))
7570@end example
7571
7572The available configuration parameters follow. Each parameter
7573definition is preceded by its type; for example, @samp{string-list foo}
7574indicates that the @code{foo} parameter should be specified as a list of
7575strings. There is also a way to specify the configuration as a string,
7576if you have an old @code{dovecot.conf} file that you want to port over
7577from some other system; see the end for more details.
7578
7579@c The following documentation was initially generated by
7580@c (generate-documentation) in (gnu services mail). Manually maintained
7581@c documentation is better, so we shouldn't hesitate to edit below as
7582@c needed. However if the change you want to make to this documentation
7583@c can be done in an automated way, it's probably easier to change
7584@c (generate-documentation) than to make it below and have to deal with
7585@c the churn as dovecot updates.
7586
7587Available @code{dovecot-configuration} fields are:
7588
7589@deftypevr {@code{dovecot-configuration} parameter} package dovecot
7590The dovecot package.
7591@end deftypevr
7592
7593@deftypevr {@code{dovecot-configuration} parameter} comma-separated-string-list listen
7594A list of IPs or hosts where to listen in for connections. @samp{*}
7595listens in all IPv4 interfaces, @samp{::} listens in all IPv6
7596interfaces. If you want to specify non-default ports or anything more
7597complex, customize the address and port fields of the
7598@samp{inet-listener} of the specific services you are interested in.
7599@end deftypevr
7600
7601@deftypevr {@code{dovecot-configuration} parameter} protocol-configuration-list protocols
7602List of protocols we want to serve. Available protocols include
7603@samp{imap}, @samp{pop3}, and @samp{lmtp}.
7604
7605Available @code{protocol-configuration} fields are:
7606
7607@deftypevr {@code{protocol-configuration} parameter} string name
7608The name of the protocol.
7609@end deftypevr
7610
7611@deftypevr {@code{protocol-configuration} parameter} string auth-socket-path
7612UNIX socket path to master authentication server to find users.
7613This is used by imap (for shared users) and lda.
7614Defaults to @samp{"/var/run/dovecot/auth-userdb"}.
7615@end deftypevr
7616
7617@deftypevr {@code{protocol-configuration} parameter} space-separated-string-list mail-plugins
7618Space separated list of plugins to load.
7619@end deftypevr
7620
7621@deftypevr {@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections
7622Maximum number of IMAP connections allowed for a user from each IP
7623address. NOTE: The username is compared case-sensitively.
7624Defaults to @samp{10}.
7625@end deftypevr
7626
7627@end deftypevr
7628
7629@deftypevr {@code{dovecot-configuration} parameter} service-configuration-list services
7630List of services to enable. Available services include @samp{imap},
7631@samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and
7632@samp{lmtp}.
7633
7634Available @code{service-configuration} fields are:
7635
7636@deftypevr {@code{service-configuration} parameter} string kind
7637The service kind. Valid values include @code{director},
7638@code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap},
7639@code{pop3}, @code{auth}, @code{auth-worker}, @code{dict},
7640@code{tcpwrap}, @code{quota-warning}, or anything else.
7641@end deftypevr
7642
7643@deftypevr {@code{service-configuration} parameter} listener-configuration-list listeners
7644Listeners for the service. A listener is either an
7645@code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or
7646an @code{inet-listener-configuration}.
7647Defaults to @samp{()}.
7648
7649Available @code{unix-listener-configuration} fields are:
7650
7651@deftypevr {@code{unix-listener-configuration} parameter} file-name path
7652The file name on which to listen.
7653@end deftypevr
7654
7655@deftypevr {@code{unix-listener-configuration} parameter} string mode
7656The access mode for the socket.
7657Defaults to @samp{"0600"}.
7658@end deftypevr
7659
7660@deftypevr {@code{unix-listener-configuration} parameter} string user
f9b9a033 7661The user to own the socket.
d8c18af8
AW
7662Defaults to @samp{""}.
7663@end deftypevr
7664
7665@deftypevr {@code{unix-listener-configuration} parameter} string group
7666The group to own the socket.
7667Defaults to @samp{""}.
7668@end deftypevr
7669
7670
7671Available @code{fifo-listener-configuration} fields are:
7672
7673@deftypevr {@code{fifo-listener-configuration} parameter} file-name path
7674The file name on which to listen.
7675@end deftypevr
7676
7677@deftypevr {@code{fifo-listener-configuration} parameter} string mode
7678The access mode for the socket.
7679Defaults to @samp{"0600"}.
7680@end deftypevr
7681
7682@deftypevr {@code{fifo-listener-configuration} parameter} string user
f9b9a033 7683The user to own the socket.
d8c18af8
AW
7684Defaults to @samp{""}.
7685@end deftypevr
7686
7687@deftypevr {@code{fifo-listener-configuration} parameter} string group
7688The group to own the socket.
7689Defaults to @samp{""}.
7690@end deftypevr
7691
7692
7693Available @code{inet-listener-configuration} fields are:
7694
7695@deftypevr {@code{inet-listener-configuration} parameter} string protocol
7696The protocol to listen for.
7697@end deftypevr
7698
7699@deftypevr {@code{inet-listener-configuration} parameter} string address
7700The address on which to listen, or empty for all addresses.
7701Defaults to @samp{""}.
7702@end deftypevr
7703
7704@deftypevr {@code{inet-listener-configuration} parameter} non-negative-integer port
7705The port on which to listen.
7706@end deftypevr
7707
7708@deftypevr {@code{inet-listener-configuration} parameter} boolean ssl?
7709Whether to use SSL for this service; @samp{yes}, @samp{no}, or
7710@samp{required}.
7711Defaults to @samp{#t}.
7712@end deftypevr
7713
7714@end deftypevr
7715
7716@deftypevr {@code{service-configuration} parameter} non-negative-integer service-count
7717Number of connections to handle before starting a new process.
7718Typically the only useful values are 0 (unlimited) or 1. 1 is more
7719secure, but 0 is faster. <doc/wiki/LoginProcess.txt>.
7720Defaults to @samp{1}.
7721@end deftypevr
7722
7723@deftypevr {@code{service-configuration} parameter} non-negative-integer process-min-avail
7724Number of processes to always keep waiting for more connections.
7725Defaults to @samp{0}.
7726@end deftypevr
7727
7728@deftypevr {@code{service-configuration} parameter} non-negative-integer vsz-limit
7729If you set @samp{service-count 0}, you probably need to grow
7730this.
7731Defaults to @samp{256000000}.
7732@end deftypevr
7733
7734@end deftypevr
7735
7736@deftypevr {@code{dovecot-configuration} parameter} dict-configuration dict
7737Dict configuration, as created by the @code{dict-configuration}
7738constructor.
7739
7740Available @code{dict-configuration} fields are:
7741
7742@deftypevr {@code{dict-configuration} parameter} free-form-fields entries
7743A list of key-value pairs that this dict should hold.
7744Defaults to @samp{()}.
7745@end deftypevr
7746
7747@end deftypevr
7748
7749@deftypevr {@code{dovecot-configuration} parameter} passdb-configuration-list passdbs
7750List of passdb configurations, each one created by the
7751@code{passdb-configuration} constructor.
7752
7753Available @code{passdb-configuration} fields are:
7754
7755@deftypevr {@code{passdb-configuration} parameter} string driver
7756The driver that the passdb should use. Valid values include
7757@samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and
7758@samp{static}.
7759Defaults to @samp{"pam"}.
7760@end deftypevr
7761
7762@deftypevr {@code{passdb-configuration} parameter} free-form-args args
7763A list of key-value args to the passdb driver.
7764Defaults to @samp{()}.
7765@end deftypevr
7766
7767@end deftypevr
7768
7769@deftypevr {@code{dovecot-configuration} parameter} userdb-configuration-list userdbs
7770List of userdb configurations, each one created by the
7771@code{userdb-configuration} constructor.
7772
7773Available @code{userdb-configuration} fields are:
7774
7775@deftypevr {@code{userdb-configuration} parameter} string driver
7776The driver that the userdb should use. Valid values include
7777@samp{passwd} and @samp{static}.
7778Defaults to @samp{"passwd"}.
7779@end deftypevr
7780
7781@deftypevr {@code{userdb-configuration} parameter} free-form-args args
7782A list of key-value args to the userdb driver.
7783Defaults to @samp{()}.
7784@end deftypevr
7785
7786@deftypevr {@code{userdb-configuration} parameter} free-form-args override-fields
7787Override fields from passwd.
7788Defaults to @samp{()}.
7789@end deftypevr
7790
7791@end deftypevr
7792
7793@deftypevr {@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration
7794Plug-in configuration, created by the @code{plugin-configuration}
7795constructor.
7796@end deftypevr
7797
7798@deftypevr {@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces
7799List of namespaces. Each item in the list is created by the
7800@code{namespace-configuration} constructor.
7801
7802Available @code{namespace-configuration} fields are:
7803
7804@deftypevr {@code{namespace-configuration} parameter} string name
7805Name for this namespace.
7806@end deftypevr
7807
7808@deftypevr {@code{namespace-configuration} parameter} string type
7809Namespace type: @samp{private}, @samp{shared} or @samp{public}.
7810Defaults to @samp{"private"}.
7811@end deftypevr
7812
7813@deftypevr {@code{namespace-configuration} parameter} string separator
7814Hierarchy separator to use. You should use the same separator for
7815all namespaces or some clients get confused. @samp{/} is usually a good
7816one. The default however depends on the underlying mail storage
7817format.
7818Defaults to @samp{""}.
7819@end deftypevr
7820
7821@deftypevr {@code{namespace-configuration} parameter} string prefix
7822Prefix required to access this namespace. This needs to be
7823different for all namespaces. For example @samp{Public/}.
7824Defaults to @samp{""}.
7825@end deftypevr
7826
7827@deftypevr {@code{namespace-configuration} parameter} string location
7828Physical location of the mailbox. This is in same format as
7829mail_location, which is also the default for it.
7830Defaults to @samp{""}.
7831@end deftypevr
7832
7833@deftypevr {@code{namespace-configuration} parameter} boolean inbox?
7834There can be only one INBOX, and this setting defines which
7835namespace has it.
7836Defaults to @samp{#f}.
7837@end deftypevr
7838
7839@deftypevr {@code{namespace-configuration} parameter} boolean hidden?
7840If namespace is hidden, it's not advertised to clients via NAMESPACE
7841extension. You'll most likely also want to set @samp{list? #f}. This is mostly
7842useful when converting from another server with different namespaces
7843which you want to deprecate but still keep working. For example you can
7844create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/}
7845and @samp{mail/}.
7846Defaults to @samp{#f}.
7847@end deftypevr
7848
7849@deftypevr {@code{namespace-configuration} parameter} boolean list?
7850Show the mailboxes under this namespace with LIST command. This
7851makes the namespace visible for clients that don't support NAMESPACE
7852extension. The special @code{children} value lists child mailboxes, but
7853hides the namespace prefix.
7854Defaults to @samp{#t}.
7855@end deftypevr
7856
7857@deftypevr {@code{namespace-configuration} parameter} boolean subscriptions?
7858Namespace handles its own subscriptions. If set to @code{#f}, the
7859parent namespace handles them. The empty prefix should always have this
7860as @code{#t}.)
7861Defaults to @samp{#t}.
7862@end deftypevr
7863
7864@deftypevr {@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes
7865List of predefined mailboxes in this namespace.
7866Defaults to @samp{()}.
7867
7868Available @code{mailbox-configuration} fields are:
7869
7870@deftypevr {@code{mailbox-configuration} parameter} string name
7871Name for this mailbox.
7872@end deftypevr
7873
7874@deftypevr {@code{mailbox-configuration} parameter} string auto
7875@samp{create} will automatically create this mailbox.
7876@samp{subscribe} will both create and subscribe to the mailbox.
7877Defaults to @samp{"no"}.
7878@end deftypevr
7879
7880@deftypevr {@code{mailbox-configuration} parameter} space-separated-string-list special-use
7881List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154.
7882Valid values are @code{\All}, @code{\Archive}, @code{\Drafts},
7883@code{\Flagged}, @code{\Junk}, @code{\Sent}, and @code{\Trash}.
7884Defaults to @samp{()}.
7885@end deftypevr
7886
7887@end deftypevr
7888
7889@end deftypevr
7890
7891@deftypevr {@code{dovecot-configuration} parameter} file-name base-dir
7892Base directory where to store runtime data.
7893Defaults to @samp{"/var/run/dovecot/"}.
7894@end deftypevr
7895
7896@deftypevr {@code{dovecot-configuration} parameter} string login-greeting
7897Greeting message for clients.
7898Defaults to @samp{"Dovecot ready."}.
7899@end deftypevr
7900
7901@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks
7902List of trusted network ranges. Connections from these IPs are
7903allowed to override their IP addresses and ports (for logging and for
7904authentication checks). @samp{disable-plaintext-auth} is also ignored
7905for these networks. Typically you'd specify your IMAP proxy servers
7906here.
7907Defaults to @samp{()}.
7908@end deftypevr
7909
7910@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets
7911List of login access check sockets (e.g. tcpwrap).
7912Defaults to @samp{()}.
7913@end deftypevr
7914
7915@deftypevr {@code{dovecot-configuration} parameter} boolean verbose-proctitle?
7916Show more verbose process titles (in ps). Currently shows user name
7917and IP address. Useful for seeing who are actually using the IMAP
7918processes (e.g. shared mailboxes or if same uid is used for multiple
7919accounts).
7920Defaults to @samp{#f}.
7921@end deftypevr
7922
7923@deftypevr {@code{dovecot-configuration} parameter} boolean shutdown-clients?
7924Should all processes be killed when Dovecot master process shuts down.
7925Setting this to @code{#f} means that Dovecot can be upgraded without
7926forcing existing client connections to close (although that could also
7927be a problem if the upgrade is e.g. because of a security fix).
7928Defaults to @samp{#t}.
7929@end deftypevr
7930
7931@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count
7932If non-zero, run mail commands via this many connections to doveadm
7933server, instead of running them directly in the same process.
7934Defaults to @samp{0}.
7935@end deftypevr
7936
7937@deftypevr {@code{dovecot-configuration} parameter} string doveadm-socket-path
7938UNIX socket or host:port used for connecting to doveadm server.
7939Defaults to @samp{"doveadm-server"}.
7940@end deftypevr
7941
7942@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list import-environment
7943List of environment variables that are preserved on Dovecot startup
7944and passed down to all of its child processes. You can also give
7945key=value pairs to always set specific settings.
7946@end deftypevr
7947
7948@deftypevr {@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?
7949Disable LOGIN command and all other plaintext authentications unless
7950SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP
7951matches the local IP (i.e. you're connecting from the same computer),
7952the connection is considered secure and plaintext authentication is
7953allowed. See also ssl=required setting.
7954Defaults to @samp{#t}.
7955@end deftypevr
7956
7957@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size
7958Authentication cache size (e.g. @samp{#e10e6}). 0 means it's disabled.
7959Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set
7960for caching to be used.
7961Defaults to @samp{0}.
7962@end deftypevr
7963
7964@deftypevr {@code{dovecot-configuration} parameter} string auth-cache-ttl
7965Time to live for cached data. After TTL expires the cached record
7966is no longer used, *except* if the main database lookup returns internal
7967failure. We also try to handle password changes automatically: If
7968user's previous authentication was successful, but this one wasn't, the
7969cache isn't used. For now this works only with plaintext
7970authentication.
7971Defaults to @samp{"1 hour"}.
7972@end deftypevr
7973
7974@deftypevr {@code{dovecot-configuration} parameter} string auth-cache-negative-ttl
7975TTL for negative hits (user not found, password mismatch).
79760 disables caching them completely.
7977Defaults to @samp{"1 hour"}.
7978@end deftypevr
7979
7980@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-realms
7981List of realms for SASL authentication mechanisms that need them.
7982You can leave it empty if you don't want to support multiple realms.
7983Many clients simply use the first one listed here, so keep the default
7984realm first.
7985Defaults to @samp{()}.
7986@end deftypevr
7987
7988@deftypevr {@code{dovecot-configuration} parameter} string auth-default-realm
7989Default realm/domain to use if none was specified. This is used for
7990both SASL realms and appending @@domain to username in plaintext
7991logins.
7992Defaults to @samp{""}.
7993@end deftypevr
7994
7995@deftypevr {@code{dovecot-configuration} parameter} string auth-username-chars
7996List of allowed characters in username. If the user-given username
7997contains a character not listed in here, the login automatically fails.
7998This is just an extra check to make sure user can't exploit any
7999potential quote escaping vulnerabilities with SQL/LDAP databases. If
8000you want to allow all characters, set this value to empty.
8001Defaults to @samp{"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@"}.
8002@end deftypevr
8003
8004@deftypevr {@code{dovecot-configuration} parameter} string auth-username-translation
8005Username character translations before it's looked up from
8006databases. The value contains series of from -> to characters. For
8007example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are
8008translated to @samp{@@}.
8009Defaults to @samp{""}.
8010@end deftypevr
8011
8012@deftypevr {@code{dovecot-configuration} parameter} string auth-username-format
8013Username formatting before it's looked up from databases. You can
8014use the standard variables here, e.g. %Lu would lowercase the username,
8015%n would drop away the domain if it was given, or @samp{%n-AT-%d} would
8016change the @samp{@@} into @samp{-AT-}. This translation is done after
8017@samp{auth-username-translation} changes.
8018Defaults to @samp{"%Lu"}.
8019@end deftypevr
8020
8021@deftypevr {@code{dovecot-configuration} parameter} string auth-master-user-separator
8022If you want to allow master users to log in by specifying the master
8023username within the normal username string (i.e. not using SASL
8024mechanism's support for it), you can specify the separator character
8025here. The format is then <username><separator><master username>.
8026UW-IMAP uses @samp{*} as the separator, so that could be a good
8027choice.
8028Defaults to @samp{""}.
8029@end deftypevr
8030
8031@deftypevr {@code{dovecot-configuration} parameter} string auth-anonymous-username
8032Username to use for users logging in with ANONYMOUS SASL
8033mechanism.
8034Defaults to @samp{"anonymous"}.
8035@end deftypevr
8036
8037@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count
8038Maximum number of dovecot-auth worker processes. They're used to
8039execute blocking passdb and userdb queries (e.g. MySQL and PAM).
8040They're automatically created and destroyed as needed.
8041Defaults to @samp{30}.
8042@end deftypevr
8043
8044@deftypevr {@code{dovecot-configuration} parameter} string auth-gssapi-hostname
8045Host name to use in GSSAPI principal names. The default is to use
8046the name returned by gethostname(). Use @samp{$ALL} (with quotes) to
8047allow all keytab entries.
8048Defaults to @samp{""}.
8049@end deftypevr
8050
8051@deftypevr {@code{dovecot-configuration} parameter} string auth-krb5-keytab
8052Kerberos keytab to use for the GSSAPI mechanism. Will use the
8053system default (usually /etc/krb5.keytab) if not specified. You may
8054need to change the auth service to run as root to be able to read this
8055file.
8056Defaults to @samp{""}.
8057@end deftypevr
8058
8059@deftypevr {@code{dovecot-configuration} parameter} boolean auth-use-winbind?
8060Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon
8061and @samp{ntlm-auth} helper.
8062<doc/wiki/Authentication/Mechanisms/Winbind.txt>.
8063Defaults to @samp{#f}.
8064@end deftypevr
8065
8066@deftypevr {@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path
8067Path for Samba's @samp{ntlm-auth} helper binary.
8068Defaults to @samp{"/usr/bin/ntlm_auth"}.
8069@end deftypevr
8070
8071@deftypevr {@code{dovecot-configuration} parameter} string auth-failure-delay
8072Time to delay before replying to failed authentications.
8073Defaults to @samp{"2 secs"}.
8074@end deftypevr
8075
8076@deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?
8077Require a valid SSL client certificate or the authentication
8078fails.
8079Defaults to @samp{#f}.
8080@end deftypevr
8081
8082@deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?
8083Take the username from client's SSL certificate, using
8084@code{X509_NAME_get_text_by_NID()} which returns the subject's DN's
8085CommonName.
8086Defaults to @samp{#f}.
8087@end deftypevr
8088
8089@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms
8090List of wanted authentication mechanisms. Supported mechanisms are:
8091@samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5},
8092@samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi},
8093@samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also
8094@samp{disable-plaintext-auth} setting.
8095@end deftypevr
8096
8097@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-servers
8098List of IPs or hostnames to all director servers, including ourself.
8099Ports can be specified as ip:port. The default port is the same as what
8100director service's @samp{inet-listener} is using.
8101Defaults to @samp{()}.
8102@end deftypevr
8103
8104@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers
8105List of IPs or hostnames to all backend mail servers. Ranges are
8106allowed too, like 10.0.0.10-10.0.0.30.
8107Defaults to @samp{()}.
8108@end deftypevr
8109
8110@deftypevr {@code{dovecot-configuration} parameter} string director-user-expire
8111How long to redirect users to a specific server after it no longer
8112has any connections.
8113Defaults to @samp{"15 min"}.
8114@end deftypevr
8115
8116@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer director-doveadm-port
8117TCP/IP port that accepts doveadm connections (instead of director
8118connections) If you enable this, you'll also need to add
8119@samp{inet-listener} for the port.
8120Defaults to @samp{0}.
8121@end deftypevr
8122
8123@deftypevr {@code{dovecot-configuration} parameter} string director-username-hash
8124How the username is translated before being hashed. Useful values
8125include %Ln if user can log in with or without @@domain, %Ld if mailboxes
8126are shared within domain.
8127Defaults to @samp{"%Lu"}.
8128@end deftypevr
8129
8130@deftypevr {@code{dovecot-configuration} parameter} string log-path
8131Log file to use for error messages. @samp{syslog} logs to syslog,
8132@samp{/dev/stderr} logs to stderr.
8133Defaults to @samp{"syslog"}.
8134@end deftypevr
8135
8136@deftypevr {@code{dovecot-configuration} parameter} string info-log-path
8137Log file to use for informational messages. Defaults to
8138@samp{log-path}.
8139Defaults to @samp{""}.
8140@end deftypevr
8141
8142@deftypevr {@code{dovecot-configuration} parameter} string debug-log-path
8143Log file to use for debug messages. Defaults to
8144@samp{info-log-path}.
8145Defaults to @samp{""}.
8146@end deftypevr
8147
8148@deftypevr {@code{dovecot-configuration} parameter} string syslog-facility
8149Syslog facility to use if you're logging to syslog. Usually if you
8150don't want to use @samp{mail}, you'll use local0..local7. Also other
8151standard facilities are supported.
8152Defaults to @samp{"mail"}.
8153@end deftypevr
8154
8155@deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose?
8156Log unsuccessful authentication attempts and the reasons why they
8157failed.
8158Defaults to @samp{#f}.
8159@end deftypevr
8160
8161@deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose-passwords?
8162In case of password mismatches, log the attempted password. Valid
8163values are no, plain and sha1. sha1 can be useful for detecting brute
8164force password attempts vs. user simply trying the same password over
8165and over again. You can also truncate the value to n chars by appending
8166":n" (e.g. sha1:6).
8167Defaults to @samp{#f}.
8168@end deftypevr
8169
8170@deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug?
8171Even more verbose logging for debugging purposes. Shows for example
8172SQL queries.
8173Defaults to @samp{#f}.
8174@end deftypevr
8175
8176@deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug-passwords?
8177In case of password mismatches, log the passwords and used scheme so
8178the problem can be debugged. Enabling this also enables
8179@samp{auth-debug}.
8180Defaults to @samp{#f}.
8181@end deftypevr
8182
8183@deftypevr {@code{dovecot-configuration} parameter} boolean mail-debug?
8184Enable mail process debugging. This can help you figure out why
8185Dovecot isn't finding your mails.
8186Defaults to @samp{#f}.
8187@end deftypevr
8188
8189@deftypevr {@code{dovecot-configuration} parameter} boolean verbose-ssl?
8190Show protocol level SSL errors.
8191Defaults to @samp{#f}.
8192@end deftypevr
8193
8194@deftypevr {@code{dovecot-configuration} parameter} string log-timestamp
8195Prefix for each line written to log file. % codes are in
8196strftime(3) format.
8197Defaults to @samp{"\"%b %d %H:%M:%S \""}.
8198@end deftypevr
8199
8200@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements
8201List of elements we want to log. The elements which have a
8202non-empty variable value are joined together to form a comma-separated
8203string.
8204@end deftypevr
8205
8206@deftypevr {@code{dovecot-configuration} parameter} string login-log-format
8207Login log format. %s contains @samp{login-log-format-elements}
8208string, %$ contains the data we want to log.
8209Defaults to @samp{"%$: %s"}.
8210@end deftypevr
8211
8212@deftypevr {@code{dovecot-configuration} parameter} string mail-log-prefix
8213Log prefix for mail processes. See doc/wiki/Variables.txt for list
8214of possible variables you can use.
8215Defaults to @samp{"\"%s(%u): \""}.
8216@end deftypevr
8217
8218@deftypevr {@code{dovecot-configuration} parameter} string deliver-log-format
8219Format to use for logging mail deliveries. You can use variables:
8220@table @code
8221@item %$
8222Delivery status message (e.g. @samp{saved to INBOX})
8223@item %m
8224Message-ID
8225@item %s
8226Subject
8227@item %f
8228From address
8229@item %p
8230Physical size
8231@item %w
8232Virtual size.
8233@end table
8234Defaults to @samp{"msgid=%m: %$"}.
8235@end deftypevr
8236
8237@deftypevr {@code{dovecot-configuration} parameter} string mail-location
8238Location for users' mailboxes. The default is empty, which means
8239that Dovecot tries to find the mailboxes automatically. This won't work
8240if the user doesn't yet have any mail, so you should explicitly tell
8241Dovecot the full location.
8242
8243If you're using mbox, giving a path to the INBOX
8244file (e.g. /var/mail/%u) isn't enough. You'll also need to tell Dovecot
8245where the other mailboxes are kept. This is called the "root mail
8246directory", and it must be the first path given in the
8247@samp{mail-location} setting.
8248
8249There are a few special variables you can use, eg.:
8250
8251@table @samp
8252@item %u
8253username
8254@item %n
8255user part in user@@domain, same as %u if there's no domain
8256@item %d
8257domain part in user@@domain, empty if there's no domain
8258@item %h
8259home director
8260@end table
8261
8262See doc/wiki/Variables.txt for full list. Some examples:
8263@table @samp
8264@item maildir:~/Maildir
8265@item mbox:~/mail:INBOX=/var/mail/%u
8266@item mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%
8267@end table
8268Defaults to @samp{""}.
8269@end deftypevr
8270
8271@deftypevr {@code{dovecot-configuration} parameter} string mail-uid
8272System user and group used to access mails. If you use multiple,
8273userdb can override these by returning uid or gid fields. You can use
8274either numbers or names. <doc/wiki/UserIds.txt>.
8275Defaults to @samp{""}.
8276@end deftypevr
8277
8278@deftypevr {@code{dovecot-configuration} parameter} string mail-gid
8279
8280Defaults to @samp{""}.
8281@end deftypevr
8282
8283@deftypevr {@code{dovecot-configuration} parameter} string mail-privileged-group
8284Group to enable temporarily for privileged operations. Currently
8285this is used only with INBOX when either its initial creation or
8286dotlocking fails. Typically this is set to "mail" to give access to
8287/var/mail.
8288Defaults to @samp{""}.
8289@end deftypevr
8290
8291@deftypevr {@code{dovecot-configuration} parameter} string mail-access-groups
8292Grant access to these supplementary groups for mail processes.
8293Typically these are used to set up access to shared mailboxes. Note
8294that it may be dangerous to set these if users can create
8295symlinks (e.g. if "mail" group is set here, ln -s /var/mail ~/mail/var
8296could allow a user to delete others' mailboxes, or ln -s
8297/secret/shared/box ~/mail/mybox would allow reading it).
8298Defaults to @samp{""}.
8299@end deftypevr
8300
8301@deftypevr {@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?
8302Allow full filesystem access to clients. There's no access checks
8303other than what the operating system does for the active UID/GID. It
8304works with both maildir and mboxes, allowing you to prefix mailboxes
8305names with e.g. /path/ or ~user/.
8306Defaults to @samp{#f}.
8307@end deftypevr
8308
8309@deftypevr {@code{dovecot-configuration} parameter} boolean mmap-disable?
8310Don't use mmap() at all. This is required if you store indexes to
8311shared filesystems (NFS or clustered filesystem).
8312Defaults to @samp{#f}.
8313@end deftypevr
8314
8315@deftypevr {@code{dovecot-configuration} parameter} boolean dotlock-use-excl?
8316Rely on @samp{O_EXCL} to work when creating dotlock files. NFS
8317supports @samp{O_EXCL} since version 3, so this should be safe to use
8318nowadays by default.
8319Defaults to @samp{#t}.
8320@end deftypevr
8321
8322@deftypevr {@code{dovecot-configuration} parameter} string mail-fsync
8323When to use fsync() or fdatasync() calls:
8324@table @code
8325@item optimized
8326Whenever necessary to avoid losing important data
8327@item always
8328Useful with e.g. NFS when write()s are delayed
8329@item never
8330Never use it (best performance, but crashes can lose data).
8331@end table
8332Defaults to @samp{"optimized"}.
8333@end deftypevr
8334
8335@deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-storage?
8336Mail storage exists in NFS. Set this to yes to make Dovecot flush
8337NFS caches whenever needed. If you're using only a single mail server
8338this isn't needed.
8339Defaults to @samp{#f}.
8340@end deftypevr
8341
8342@deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-index?
8343Mail index files also exist in NFS. Setting this to yes requires
8344@samp{mmap-disable? #t} and @samp{fsync-disable? #f}.
8345Defaults to @samp{#f}.
8346@end deftypevr
8347
8348@deftypevr {@code{dovecot-configuration} parameter} string lock-method
8349Locking method for index files. Alternatives are fcntl, flock and
8350dotlock. Dotlocking uses some tricks which may create more disk I/O
8351than other locking methods. NFS users: flock doesn't work, remember to
8352change @samp{mmap-disable}.
8353Defaults to @samp{"fcntl"}.
8354@end deftypevr
8355
8356@deftypevr {@code{dovecot-configuration} parameter} file-name mail-temp-dir
8357Directory in which LDA/LMTP temporarily stores incoming mails >128
8358kB.
8359Defaults to @samp{"/tmp"}.
8360@end deftypevr
8361
8362@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid
8363Valid UID range for users. This is mostly to make sure that users can't
8364log in as daemons or other system users. Note that denying root logins is
8365hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid}
8366is set to 0.
8367Defaults to @samp{500}.
8368@end deftypevr
8369
8370@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid
8371
8372Defaults to @samp{0}.
8373@end deftypevr
8374
8375@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid
8376Valid GID range for users. Users having non-valid GID as primary group ID
8377aren't allowed to log in. If user belongs to supplementary groups with
8378non-valid GIDs, those groups are not set.
8379Defaults to @samp{1}.
8380@end deftypevr
8381
8382@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid
8383
8384Defaults to @samp{0}.
8385@end deftypevr
8386
8387@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length
8388Maximum allowed length for mail keyword name. It's only forced when
8389trying to create new keywords.
8390Defaults to @samp{50}.
8391@end deftypevr
8392
8393@deftypevr {@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs
8394List of directories under which chrooting is allowed for mail
8395processes (i.e. /var/mail will allow chrooting to /var/mail/foo/bar
8396too). This setting doesn't affect @samp{login-chroot}
8397@samp{mail-chroot} or auth chroot settings. If this setting is empty,
8398"/./" in home dirs are ignored. WARNING: Never add directories here
8399which local users can modify, that may lead to root exploit. Usually
8400this should be done only if you don't allow shell access for users.
8401<doc/wiki/Chrooting.txt>.
8402Defaults to @samp{()}.
8403@end deftypevr
8404
8405@deftypevr {@code{dovecot-configuration} parameter} string mail-chroot
8406Default chroot directory for mail processes. This can be overridden
8407for specific users in user database by giving /./ in user's home
8408directory (e.g. /home/./user chroots into /home). Note that usually
8409there is no real need to do chrooting, Dovecot doesn't allow users to
8410access files outside their mail directory anyway. If your home
8411directories are prefixed with the chroot directory, append "/." to
8412@samp{mail-chroot}. <doc/wiki/Chrooting.txt>.
8413Defaults to @samp{""}.
8414@end deftypevr
8415
8416@deftypevr {@code{dovecot-configuration} parameter} file-name auth-socket-path
8417UNIX socket path to master authentication server to find users.
8418This is used by imap (for shared users) and lda.
8419Defaults to @samp{"/var/run/dovecot/auth-userdb"}.
8420@end deftypevr
8421
8422@deftypevr {@code{dovecot-configuration} parameter} file-name mail-plugin-dir
8423Directory where to look up mail plugins.
8424Defaults to @samp{"/usr/lib/dovecot"}.
8425@end deftypevr
8426
8427@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins
8428List of plugins to load for all services. Plugins specific to IMAP,
8429LDA, etc. are added to this list in their own .conf files.
8430Defaults to @samp{()}.
8431@end deftypevr
8432
8433@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count
8434The minimum number of mails in a mailbox before updates are done to
8435cache file. This allows optimizing Dovecot's behavior to do less disk
8436writes at the cost of more disk reads.
8437Defaults to @samp{0}.
8438@end deftypevr
8439
8440@deftypevr {@code{dovecot-configuration} parameter} string mailbox-idle-check-interval
8441When IDLE command is running, mailbox is checked once in a while to
8442see if there are any new mails or other changes. This setting defines
8443the minimum time to wait between those checks. Dovecot can also use
8444dnotify, inotify and kqueue to find out immediately when changes
8445occur.
8446Defaults to @samp{"30 secs"}.
8447@end deftypevr
8448
8449@deftypevr {@code{dovecot-configuration} parameter} boolean mail-save-crlf?
8450Save mails with CR+LF instead of plain LF. This makes sending those
8451mails take less CPU, especially with sendfile() syscall with Linux and
8452FreeBSD. But it also creates a bit more disk I/O which may just make it
8453slower. Also note that if other software reads the mboxes/maildirs,
8454they may handle the extra CRs wrong and cause problems.
8455Defaults to @samp{#f}.
8456@end deftypevr
8457
8458@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?
8459By default LIST command returns all entries in maildir beginning
8460with a dot. Enabling this option makes Dovecot return only entries
8461which are directories. This is done by stat()ing each entry, so it
8462causes more disk I/O.
8463 (For systems setting struct @samp{dirent->d_type} this check is free
8464and it's done always regardless of this setting).
8465Defaults to @samp{#f}.
8466@end deftypevr
8467
8468@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?
8469When copying a message, do it with hard links whenever possible.
8470This makes the performance much better, and it's unlikely to have any
8471side effects.
8472Defaults to @samp{#t}.
8473@end deftypevr
8474
8475@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?
8476Assume Dovecot is the only MUA accessing Maildir: Scan cur/
8477directory only when its mtime changes unexpectedly or when we can't find
8478the mail otherwise.
8479Defaults to @samp{#f}.
8480@end deftypevr
8481
8482@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks
8483Which locking methods to use for locking mbox. There are four
8484available:
8485
8486@table @code
8487@item dotlock
8488Create <mailbox>.lock file. This is the oldest and most NFS-safe
8489solution. If you want to use /var/mail/ like directory, the users will
8490need write access to that directory.
8491@item dotlock-try
8492Same as dotlock, but if it fails because of permissions or because there
8493isn't enough disk space, just skip it.
8494@item fcntl
8495Use this if possible. Works with NFS too if lockd is used.
8496@item flock
8497May not exist in all systems. Doesn't work with NFS.
8498@item lockf
8499May not exist in all systems. Doesn't work with NFS.
8500@end table
8501
8502You can use multiple locking methods; if you do the order they're declared
8503in is important to avoid deadlocks if other MTAs/MUAs are using multiple
8504locking methods as well. Some operating systems don't allow using some of
8505them simultaneously.
8506@end deftypevr
8507
8508@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks
8509
8510@end deftypevr
8511
8512@deftypevr {@code{dovecot-configuration} parameter} string mbox-lock-timeout
8513Maximum time to wait for lock (all of them) before aborting.
8514Defaults to @samp{"5 mins"}.
8515@end deftypevr
8516
8517@deftypevr {@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout
8518If dotlock exists but the mailbox isn't modified in any way,
8519override the lock file after this much time.
8520Defaults to @samp{"2 mins"}.
8521@end deftypevr
8522
8523@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?
8524When mbox changes unexpectedly we have to fully read it to find out
8525what changed. If the mbox is large this can take a long time. Since
8526the change is usually just a newly appended mail, it'd be faster to
8527simply read the new mails. If this setting is enabled, Dovecot does
8528this but still safely fallbacks to re-reading the whole mbox file
8529whenever something in mbox isn't how it's expected to be. The only real
8530downside to this setting is that if some other MUA changes message
8531flags, Dovecot doesn't notice it immediately. Note that a full sync is
8532done with SELECT, EXAMINE, EXPUNGE and CHECK commands.
8533Defaults to @samp{#t}.
8534@end deftypevr
8535
8536@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?
8537Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT,
8538EXAMINE, EXPUNGE or CHECK commands. If this is set,
8539@samp{mbox-dirty-syncs} is ignored.
8540Defaults to @samp{#f}.
8541@end deftypevr
8542
8543@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?
8544Delay writing mbox headers until doing a full write sync (EXPUNGE
8545and CHECK commands and when closing the mailbox). This is especially
8546useful for POP3 where clients often delete all mails. The downside is
8547that our changes aren't immediately visible to other MUAs.
8548Defaults to @samp{#t}.
8549@end deftypevr
8550
8551@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size
8552If mbox size is smaller than this (e.g. 100k), don't write index
8553files. If an index file already exists it's still read, just not
8554updated.
8555Defaults to @samp{0}.
8556@end deftypevr
8557
8558@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size
8559Maximum dbox file size until it's rotated.
8560Defaults to @samp{2000000}.
8561@end deftypevr
8562
8563@deftypevr {@code{dovecot-configuration} parameter} string mdbox-rotate-interval
8564Maximum dbox file age until it's rotated. Typically in days. Day
8565begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check
8566disabled.
8567Defaults to @samp{"1d"}.
8568@end deftypevr
8569
8570@deftypevr {@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?
8571When creating new mdbox files, immediately preallocate their size to
8572@samp{mdbox-rotate-size}. This setting currently works only in Linux
8573with some filesystems (ext4, xfs).
8574Defaults to @samp{#f}.
8575@end deftypevr
8576
8577@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-dir
8578sdbox and mdbox support saving mail attachments to external files,
8579which also allows single instance storage for them. Other backends
8580don't support this for now.
8581
8582WARNING: This feature hasn't been tested much yet. Use at your own risk.
8583
8584Directory root where to store mail attachments. Disabled, if empty.
8585Defaults to @samp{""}.
8586@end deftypevr
8587
8588@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size
8589Attachments smaller than this aren't saved externally. It's also
8590possible to write a plugin to disable saving specific attachments
8591externally.
8592Defaults to @samp{128000}.
8593@end deftypevr
8594
8595@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-fs
8596Filesystem backend to use for saving attachments:
8597@table @code
8598@item posix
8599No SiS done by Dovecot (but this might help FS's own deduplication)
8600@item sis posix
8601SiS with immediate byte-by-byte comparison during saving
8602@item sis-queue posix
8603SiS with delayed comparison and deduplication.
8604@end table
8605Defaults to @samp{"sis posix"}.
8606@end deftypevr
8607
8608@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-hash
8609Hash format to use in attachment filenames. You can add any text and
8610variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}},
8611@code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be
8612truncated, e.g. @code{%@{sha256:80@}} returns only first 80 bits.
8613Defaults to @samp{"%@{sha1@}"}.
8614@end deftypevr
8615
8616@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-process-limit
8617
8618Defaults to @samp{100}.
8619@end deftypevr
8620
8621@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-client-limit
8622
8623Defaults to @samp{1000}.
8624@end deftypevr
8625
8626@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit
8627Default VSZ (virtual memory size) limit for service processes.
8628This is mainly intended to catch and kill processes that leak memory
8629before they eat up everything.
8630Defaults to @samp{256000000}.
8631@end deftypevr
8632
8633@deftypevr {@code{dovecot-configuration} parameter} string default-login-user
8634Login user is internally used by login processes. This is the most
8635untrusted user in Dovecot system. It shouldn't have access to anything
8636at all.
8637Defaults to @samp{"dovenull"}.
8638@end deftypevr
8639
8640@deftypevr {@code{dovecot-configuration} parameter} string default-internal-user
8641Internal user is used by unprivileged processes. It should be
8642separate from login user, so that login processes can't disturb other
8643processes.
8644Defaults to @samp{"dovecot"}.
8645@end deftypevr
8646
8647@deftypevr {@code{dovecot-configuration} parameter} string ssl?
8648SSL/TLS support: yes, no, required. <doc/wiki/SSL.txt>.
8649Defaults to @samp{"required"}.
8650@end deftypevr
8651
8652@deftypevr {@code{dovecot-configuration} parameter} string ssl-cert
8653PEM encoded X.509 SSL/TLS certificate (public key).
8654Defaults to @samp{"</etc/dovecot/default.pem"}.
8655@end deftypevr
8656
8657@deftypevr {@code{dovecot-configuration} parameter} string ssl-key
8658PEM encoded SSL/TLS private key. The key is opened before
8659dropping root privileges, so keep the key file unreadable by anyone but
8660root.
8661Defaults to @samp{"</etc/dovecot/private/default.pem"}.
8662@end deftypevr
8663
8664@deftypevr {@code{dovecot-configuration} parameter} string ssl-key-password
8665If key file is password protected, give the password here.
8666Alternatively give it when starting dovecot with -p parameter. Since
8667this file is often world-readable, you may want to place this setting
8668instead to a different.
8669Defaults to @samp{""}.
8670@end deftypevr
8671
8672@deftypevr {@code{dovecot-configuration} parameter} string ssl-ca
8673PEM encoded trusted certificate authority. Set this only if you
8674intend to use @samp{ssl-verify-client-cert? #t}. The file should
8675contain the CA certificate(s) followed by the matching
8676CRL(s). (e.g. @samp{ssl-ca </etc/ssl/certs/ca.pem}).
8677Defaults to @samp{""}.
8678@end deftypevr
8679
8680@deftypevr {@code{dovecot-configuration} parameter} boolean ssl-require-crl?
8681Require that CRL check succeeds for client certificates.
8682Defaults to @samp{#t}.
8683@end deftypevr
8684
8685@deftypevr {@code{dovecot-configuration} parameter} boolean ssl-verify-client-cert?
8686Request client to send a certificate. If you also want to require
8687it, set @samp{auth-ssl-require-client-cert? #t} in auth section.
8688Defaults to @samp{#f}.
8689@end deftypevr
8690
8691@deftypevr {@code{dovecot-configuration} parameter} string ssl-cert-username-field
8692Which field from certificate to use for username. commonName and
8693x500UniqueIdentifier are the usual choices. You'll also need to set
8694@samp{auth-ssl-username-from-cert? #t}.
8695Defaults to @samp{"commonName"}.
8696@end deftypevr
8697
8698@deftypevr {@code{dovecot-configuration} parameter} hours ssl-parameters-regenerate
8699How often to regenerate the SSL parameters file. Generation is
8700quite CPU intensive operation. The value is in hours, 0 disables
8701regeneration entirely.
8702Defaults to @samp{168}.
8703@end deftypevr
8704
8705@deftypevr {@code{dovecot-configuration} parameter} string ssl-protocols
8706SSL protocols to use.
8707Defaults to @samp{"!SSLv2"}.
8708@end deftypevr
8709
8710@deftypevr {@code{dovecot-configuration} parameter} string ssl-cipher-list
8711SSL ciphers to use.
8712Defaults to @samp{"ALL:!LOW:!SSLv2:!EXP:!aNULL"}.
8713@end deftypevr
8714
8715@deftypevr {@code{dovecot-configuration} parameter} string ssl-crypto-device
8716SSL crypto device to use, for valid values run "openssl engine".
8717Defaults to @samp{""}.
8718@end deftypevr
8719
8720@deftypevr {@code{dovecot-configuration} parameter} string postmaster-address
8721Address to use when sending rejection mails.
8722Default is postmaster@@<your domain>. %d expands to recipient domain.
8723Defaults to @samp{""}.
8724@end deftypevr
8725
8726@deftypevr {@code{dovecot-configuration} parameter} string hostname
8727Hostname to use in various parts of sent mails (e.g. in Message-Id)
8728and in LMTP replies. Default is the system's real hostname@@domain.
8729Defaults to @samp{""}.
8730@end deftypevr
8731
8732@deftypevr {@code{dovecot-configuration} parameter} boolean quota-full-tempfail?
8733If user is over quota, return with temporary failure instead of
8734bouncing the mail.
8735Defaults to @samp{#f}.
8736@end deftypevr
8737
8738@deftypevr {@code{dovecot-configuration} parameter} file-name sendmail-path
8739Binary to use for sending mails.
8740Defaults to @samp{"/usr/sbin/sendmail"}.
8741@end deftypevr
8742
8743@deftypevr {@code{dovecot-configuration} parameter} string submission-host
8744If non-empty, send mails via this SMTP host[:port] instead of
8745sendmail.
8746Defaults to @samp{""}.
8747@end deftypevr
8748
8749@deftypevr {@code{dovecot-configuration} parameter} string rejection-subject
8750Subject: header to use for rejection mails. You can use the same
8751variables as for @samp{rejection-reason} below.
8752Defaults to @samp{"Rejected: %s"}.
8753@end deftypevr
8754
8755@deftypevr {@code{dovecot-configuration} parameter} string rejection-reason
8756Human readable error message for rejection mails. You can use
8757variables:
8758
8759@table @code
8760@item %n
8761CRLF
8762@item %r
8763reason
8764@item %s
8765original subject
8766@item %t
8767recipient
8768@end table
8769Defaults to @samp{"Your message to <%t> was automatically rejected:%n%r"}.
8770@end deftypevr
8771
8772@deftypevr {@code{dovecot-configuration} parameter} string recipient-delimiter
8773Delimiter character between local-part and detail in email
8774address.
8775Defaults to @samp{"+"}.
8776@end deftypevr
8777
8778@deftypevr {@code{dovecot-configuration} parameter} string lda-original-recipient-header
8779Header where the original recipient address (SMTP's RCPT TO:
8780address) is taken from if not available elsewhere. With dovecot-lda -a
8781parameter overrides this. A commonly used header for this is
8782X-Original-To.
8783Defaults to @samp{""}.
8784@end deftypevr
8785
8786@deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?
8787Should saving a mail to a nonexistent mailbox automatically create
8788it?.
8789Defaults to @samp{#f}.
8790@end deftypevr
8791
8792@deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?
8793Should automatically created mailboxes be also automatically
8794subscribed?.
8795Defaults to @samp{#f}.
8796@end deftypevr
8797
8798@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length
8799Maximum IMAP command line length. Some clients generate very long
8800command lines with huge mailboxes, so you may need to raise this if you
8801get "Too long argument" or "IMAP command line too large" errors
8802often.
8803Defaults to @samp{64000}.
8804@end deftypevr
8805
8806@deftypevr {@code{dovecot-configuration} parameter} string imap-logout-format
8807IMAP logout format string:
8808@table @code
8809@item %i
8810total number of bytes read from client
8811@item %o
8812total number of bytes sent to client.
8813@end table
8814Defaults to @samp{"in=%i out=%o"}.
8815@end deftypevr
8816
8817@deftypevr {@code{dovecot-configuration} parameter} string imap-capability
8818Override the IMAP CAPABILITY response. If the value begins with '+',
8819add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
8820Defaults to @samp{""}.
8821@end deftypevr
8822
8823@deftypevr {@code{dovecot-configuration} parameter} string imap-idle-notify-interval
8824How long to wait between "OK Still here" notifications when client
8825is IDLEing.
8826Defaults to @samp{"2 mins"}.
8827@end deftypevr
8828
8829@deftypevr {@code{dovecot-configuration} parameter} string imap-id-send
8830ID field names and values to send to clients. Using * as the value
8831makes Dovecot use the default value. The following fields have default
8832values currently: name, version, os, os-version, support-url,
8833support-email.
8834Defaults to @samp{""}.
8835@end deftypevr
8836
8837@deftypevr {@code{dovecot-configuration} parameter} string imap-id-log
8838ID fields sent by client to log. * means everything.
8839Defaults to @samp{""}.
8840@end deftypevr
8841
8842@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds
8843Workarounds for various client bugs:
8844
8845@table @code
8846@item delay-newmail
8847Send EXISTS/RECENT new mail notifications only when replying to NOOP and
8848CHECK commands. Some clients ignore them otherwise, for example OSX
8849Mail (<v2.1). Outlook Express breaks more badly though, without this it
8850may show user "Message no longer in server" errors. Note that OE6
8851still breaks even with this workaround if synchronization is set to
8852"Headers Only".
8853
8854@item tb-extra-mailbox-sep
8855Thunderbird gets somehow confused with LAYOUT=fs (mbox and dbox) and
8856adds extra @samp{/} suffixes to mailbox names. This option causes Dovecot to
8857ignore the extra @samp{/} instead of treating it as invalid mailbox name.
8858
8859@item tb-lsub-flags
8860Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
8861This makes Thunderbird realize they aren't selectable and show them
8862greyed out, instead of only later giving "not selectable" popup error.
8863@end table
8864Defaults to @samp{()}.
8865@end deftypevr
8866
8867@deftypevr {@code{dovecot-configuration} parameter} string imap-urlauth-host
8868Host allowed in URLAUTH URLs sent by client. "*" allows all.
8869Defaults to @samp{""}.
8870@end deftypevr
8871
8872
8873Whew! Lots of configuration options. The nice thing about it though is
8874that GuixSD has a complete interface to Dovecot's configuration
8875language. This allows not only a nice way to declare configurations,
8876but also offers reflective capabilities as well: users can write code to
8877inspect and transform configurations from within Scheme.
8878
8879However, it could be that you just want to get a @code{dovecot.conf} up
8880and running. In that case, you can pass an
8881@code{opaque-dovecot-configuration} as the @code{#:config} paramter to
8882@code{dovecot-service}. As its name indicates, an opaque configuration
8883does not have easy reflective capabilities.
8884
8885Available @code{opaque-dovecot-configuration} fields are:
8886
8887@deftypevr {@code{opaque-dovecot-configuration} parameter} package dovecot
8888The dovecot package.
8889@end deftypevr
8890
8891@deftypevr {@code{opaque-dovecot-configuration} parameter} string string
8892The contents of the @code{dovecot.conf}, as a string.
8893@end deftypevr
8894
8895For example, if your @code{dovecot.conf} is just the empty string, you
8896could instantiate a dovecot service like this:
8897
8898@example
8899(dovecot-service #:config
8900 (opaque-dovecot-configuration
8901 (string "")))
8902@end example
8903
58724c48
DT
8904@node Web Services
8905@subsubsection Web Services
8906
8907The @code{(gnu services web)} module provides the following service:
8908
be1c2c54 8909@deffn {Scheme Procedure} nginx-service [#:nginx nginx] @
58724c48
DT
8910 [#:log-directory ``/var/log/nginx''] @
8911 [#:run-directory ``/var/run/nginx''] @
8912 [#:config-file]
8913
8914Return a service that runs @var{nginx}, the nginx web server.
8915
8916The nginx daemon loads its runtime configuration from @var{config-file}.
8917Log files are written to @var{log-directory} and temporary runtime data
8918files are written to @var{run-directory}. For proper operation, these
8919arguments should match what is in @var{config-file} to ensure that the
8920directories are created when the service is activated.
8921
8922@end deffn
8923
fe1a39d3
LC
8924@node Various Services
8925@subsubsection Various Services
8926
8927The @code{(gnu services lirc)} module provides the following service.
8928
be1c2c54 8929@deffn {Scheme Procedure} lirc-service [#:lirc lirc] @
fe1a39d3
LC
8930 [#:device #f] [#:driver #f] [#:config-file #f] @
8931 [#:extra-options '()]
8932Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that
8933decodes infrared signals from remote controls.
8934
8935Optionally, @var{device}, @var{driver} and @var{config-file}
8936(configuration file name) may be specified. See @command{lircd} manual
8937for details.
8938
8939Finally, @var{extra-options} is a list of additional command-line options
8940passed to @command{lircd}.
8941@end deffn
8942
8943
0ae8c15a
LC
8944@node Setuid Programs
8945@subsection Setuid Programs
8946
8947@cindex setuid programs
8948Some programs need to run with ``root'' privileges, even when they are
8949launched by unprivileged users. A notorious example is the
4d40227c
LC
8950@command{passwd} program, which users can run to change their
8951password, and which needs to access the @file{/etc/passwd} and
0ae8c15a
LC
8952@file{/etc/shadow} files---something normally restricted to root, for
8953obvious security reasons. To address that, these executables are
8954@dfn{setuid-root}, meaning that they always run with root privileges
8955(@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual},
f7e4ae7f 8956for more info about the setuid mechanism.)
0ae8c15a
LC
8957
8958The store itself @emph{cannot} contain setuid programs: that would be a
8959security issue since any user on the system can write derivations that
8960populate the store (@pxref{The Store}). Thus, a different mechanism is
8961used: instead of changing the setuid bit directly on files that are in
8962the store, we let the system administrator @emph{declare} which programs
8963should be setuid root.
8964
8965The @code{setuid-programs} field of an @code{operating-system}
8966declaration contains a list of G-expressions denoting the names of
8967programs to be setuid-root (@pxref{Using the Configuration System}).
8968For instance, the @command{passwd} program, which is part of the Shadow
8969package, can be designated by this G-expression (@pxref{G-Expressions}):
8970
8971@example
8972#~(string-append #$shadow "/bin/passwd")
8973@end example
8974
8975A default set of setuid programs is defined by the
8976@code{%setuid-programs} variable of the @code{(gnu system)} module.
8977
8978@defvr {Scheme Variable} %setuid-programs
8979A list of G-expressions denoting common programs that are setuid-root.
8980
8981The list includes commands such as @command{passwd}, @command{ping},
8982@command{su}, and @command{sudo}.
8983@end defvr
8984
8985Under the hood, the actual setuid programs are created in the
8986@file{/run/setuid-programs} directory at system activation time. The
8987files in this directory refer to the ``real'' binaries, which are in the
8988store.
8989
efb5e833
LC
8990@node X.509 Certificates
8991@subsection X.509 Certificates
8992
8993@cindex HTTPS, certificates
8994@cindex X.509 certificates
8995@cindex TLS
8996Web servers available over HTTPS (that is, HTTP over the transport-layer
8997security mechanism, TLS) send client programs an @dfn{X.509 certificate}
8998that the client can then use to @emph{authenticate} the server. To do
8999that, clients verify that the server's certificate is signed by a
9000so-called @dfn{certificate authority} (CA). But to verify the CA's
9001signature, clients must have first acquired the CA's certificate.
9002
9003Web browsers such as GNU@tie{}IceCat include their own set of CA
9004certificates, such that they are able to verify CA signatures
9005out-of-the-box.
9006
9007However, most other programs that can talk HTTPS---@command{wget},
9008@command{git}, @command{w3m}, etc.---need to be told where CA
9009certificates can be found.
9010
9011@cindex @code{nss-certs}
9012In GuixSD, this is done by adding a package that provides certificates
9013to the @code{packages} field of the @code{operating-system} declaration
9014(@pxref{operating-system Reference}). GuixSD includes one such package,
9015@code{nss-certs}, which is a set of CA certificates provided as part of
9016Mozilla's Network Security Services.
9017
9018Note that it is @emph{not} part of @var{%base-packages}, so you need to
9019explicitly add it. The @file{/etc/ssl/certs} directory, which is where
9020most applications and libraries look for certificates by default, points
9021to the certificates installed globally.
9022
9023Unprivileged users can also install their own certificate package in
9024their profile. A number of environment variables need to be defined so
9025that applications and libraries know where to find them. Namely, the
9026OpenSSL library honors the @code{SSL_CERT_DIR} and @code{SSL_CERT_FILE}
9027variables. Some applications add their own environment variables; for
9028instance, the Git version control system honors the certificate bundle
9029pointed to by the @code{GIT_SSL_CAINFO} environment variable.
9030
9031
996ed739
LC
9032@node Name Service Switch
9033@subsection Name Service Switch
9034
9035@cindex name service switch
9036@cindex NSS
9037The @code{(gnu system nss)} module provides bindings to the
9038configuration file of libc's @dfn{name service switch} or @dfn{NSS}
9039(@pxref{NSS Configuration File,,, libc, The GNU C Library Reference
9040Manual}). In a nutshell, the NSS is a mechanism that allows libc to be
9041extended with new ``name'' lookup methods for system databases, which
9042includes host names, service names, user accounts, and more (@pxref{Name
9043Service Switch, System Databases and Name Service Switch,, libc, The GNU
9044C Library Reference Manual}).
9045
9046The NSS configuration specifies, for each system database, which lookup
9047method is to be used, and how the various methods are chained
9048together---for instance, under which circumstances NSS should try the
9049next method in the list. The NSS configuration is given in the
9050@code{name-service-switch} field of @code{operating-system} declarations
9051(@pxref{operating-system Reference, @code{name-service-switch}}).
9052
4c9050c6
LC
9053@cindex nss-mdns
9054@cindex .local, host name lookup
996ed739 9055As an example, the declaration below configures the NSS to use the
4c9050c6
LC
9056@uref{http://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns}
9057back-end}, which supports host name lookups over multicast DNS (mDNS)
9058for host names ending in @code{.local}:
996ed739
LC
9059
9060@example
9061(name-service-switch
9062 (hosts (list %files ;first, check /etc/hosts
9063
9064 ;; If the above did not succeed, try
9065 ;; with 'mdns_minimal'.
9066 (name-service
9067 (name "mdns_minimal")
9068
9069 ;; 'mdns_minimal' is authoritative for
9070 ;; '.local'. When it returns "not found",
9071 ;; no need to try the next methods.
9072 (reaction (lookup-specification
9073 (not-found => return))))
9074
9075 ;; Then fall back to DNS.
9076 (name-service
9077 (name "dns"))
9078
9079 ;; Finally, try with the "full" 'mdns'.
9080 (name-service
9081 (name "mdns")))))
9082@end example
9083
15137a29
LC
9084Don't worry: the @code{%mdns-host-lookup-nss} variable (see below)
9085contains this configuration, so you won't have to type it if all you
9086want is to have @code{.local} host lookup working.
9087
4c9050c6
LC
9088Note that, in this case, in addition to setting the
9089@code{name-service-switch} of the @code{operating-system} declaration,
cc9c1f39
LC
9090you also need to use @code{avahi-service} (@pxref{Networking Services,
9091@code{avahi-service}}), or @var{%desktop-services}, which includes it
9092(@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible
9093to the name service cache daemon (@pxref{Base Services,
9094@code{nscd-service}}).
15137a29
LC
9095
9096For convenience, the following variables provide typical NSS
9097configurations.
9098
9099@defvr {Scheme Variable} %default-nss
9100This is the default name service switch configuration, a
9101@code{name-service-switch} object.
9102@end defvr
9103
9104@defvr {Scheme Variable} %mdns-host-lookup-nss
9105This is the name service switch configuration with support for host name
9106lookup over multicast DNS (mDNS) for host names ending in @code{.local}.
9107@end defvr
4c9050c6 9108
996ed739
LC
9109The reference for name service switch configuration is given below. It
9110is a direct mapping of the C library's configuration file format, so
9111please refer to the C library manual for more information (@pxref{NSS
9112Configuration File,,, libc, The GNU C Library Reference Manual}).
9113Compared to libc's NSS configuration file format, it has the advantage
9114not only of adding this warm parenthetic feel that we like, but also
9115static checks: you'll know about syntax errors and typos as soon as you
9116run @command{guix system}.
9117
996ed739
LC
9118@deftp {Data Type} name-service-switch
9119
9120This is the data type representation the configuration of libc's name
9121service switch (NSS). Each field below represents one of the supported
9122system databases.
9123
9124@table @code
9125@item aliases
9126@itemx ethers
9127@itemx group
9128@itemx gshadow
9129@itemx hosts
9130@itemx initgroups
9131@itemx netgroup
9132@itemx networks
9133@itemx password
9134@itemx public-key
9135@itemx rpc
9136@itemx services
9137@itemx shadow
9138The system databases handled by the NSS. Each of these fields must be a
9139list of @code{<name-service>} objects (see below.)
9140@end table
9141@end deftp
9142
9143@deftp {Data Type} name-service
9144
9145This is the data type representing an actual name service and the
9146associated lookup action.
9147
9148@table @code
9149@item name
9150A string denoting the name service (@pxref{Services in the NSS
9151configuration,,, libc, The GNU C Library Reference Manual}).
9152
4aee6e60
LC
9153Note that name services listed here must be visible to nscd. This is
9154achieved by passing the @code{#:name-services} argument to
9155@code{nscd-service} the list of packages providing the needed name
9156services (@pxref{Base Services, @code{nscd-service}}).
9157
996ed739
LC
9158@item reaction
9159An action specified using the @code{lookup-specification} macro
9160(@pxref{Actions in the NSS configuration,,, libc, The GNU C Library
9161Reference Manual}). For example:
9162
9163@example
9164(lookup-specification (unavailable => continue)
9165 (success => return))
9166@end example
9167@end table
9168@end deftp
0ae8c15a 9169
fd1b1fa2
LC
9170@node Initial RAM Disk
9171@subsection Initial RAM Disk
9172
9173@cindex initial RAM disk (initrd)
9174@cindex initrd (initial RAM disk)
9175For bootstrapping purposes, the Linux-Libre kernel is passed an
9176@dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary
9177root file system, as well as an initialization script. The latter is
9178responsible for mounting the real root file system, and for loading any
9179kernel modules that may be needed to achieve that.
9180
9181The @code{initrd} field of an @code{operating-system} declaration allows
9182you to specify which initrd you would like to use. The @code{(gnu
9183system linux-initrd)} module provides two ways to build an initrd: the
9184high-level @code{base-initrd} procedure, and the low-level
9185@code{expression->initrd} procedure.
9186
9187The @code{base-initrd} procedure is intended to cover most common uses.
9188For example, if you want to add a bunch of kernel modules to be loaded
9189at boot time, you can define the @code{initrd} field of the operating
9190system declaration like this:
9191
9192@example
52ac153e 9193(initrd (lambda (file-systems . rest)
027981d6
LC
9194 ;; Create a standard initrd that has modules "foo.ko"
9195 ;; and "bar.ko", as well as their dependencies, in
9196 ;; addition to the modules available by default.
52ac153e 9197 (apply base-initrd file-systems
027981d6 9198 #:extra-modules '("foo" "bar")
52ac153e 9199 rest)))
fd1b1fa2
LC
9200@end example
9201
52ac153e
LC
9202The @code{base-initrd} procedure also handles common use cases that
9203involves using the system as a QEMU guest, or as a ``live'' system whose
9204root file system is volatile.
fd1b1fa2 9205
e90cf6c1
LC
9206The initial RAM disk produced by @code{base-initrd} honors several
9207options passed on the Linux kernel command line (that is, arguments
9208passed @i{via} GRUB's @code{linux} command, or with QEMU's
9209@code{-append} option), notably:
9210
9211@table @code
9212@item --load=@var{boot}
9213Tell the initial RAM disk to load @var{boot}, a file containing a Scheme
9214program, once it has mounted the root file system.
9215
9216GuixSD uses this option to yield control to a boot program that runs the
dd17bc38 9217service activation programs and then spawns the GNU@tie{}Shepherd, the
e90cf6c1
LC
9218initialization system.
9219
9220@item --root=@var{root}
9221Mount @var{root} as the root file system. @var{root} can be a device
9222device name like @code{/dev/sda1}, a partition label, or a partition
9223UUID.
9224
9225@item --system=@var{system}
9226Have @file{/run/booted-system} and @file{/run/current-system} point to
9227@var{system}.
9228
9229@item modprobe.blacklist=@var{modules}@dots{}
9230@cindex module, black-listing
9231@cindex black list, of kernel modules
9232Instruct the initial RAM disk as well as the @command{modprobe} command
9233(from the kmod package) to refuse to load @var{modules}. @var{modules}
9234must be a comma-separated list of module names---e.g.,
9235@code{usbkbd,9pnet}.
9236
9237@item --repl
9238Start a read-eval-print loop (REPL) from the initial RAM disk before it
9239tries to load kernel modules and to mount the root file system. Our
9240marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will
9241love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference
9242Manual}, for more information on Guile's REPL.
9243
9244@end table
9245
9246Now that you know all the features that initial RAM disks produced by
9247@code{base-initrd} provide, here is how to use it and customize it
9248further.
9249
fd1b1fa2 9250@deffn {Monadic Procedure} base-initrd @var{file-systems} @
9059b97d 9251 [#:qemu-networking? #f] [#:virtio? #t] [#:volatile-root? #f] @
52ac153e 9252 [#:extra-modules '()] [#:mapped-devices '()]
fd1b1fa2
LC
9253Return a monadic derivation that builds a generic initrd. @var{file-systems} is
9254a list of file-systems to be mounted by the initrd, possibly in addition to
9255the root file system specified on the kernel command line via @code{--root}.
52ac153e
LC
9256@var{mapped-devices} is a list of device mappings to realize before
9257@var{file-systems} are mounted (@pxref{Mapped Devices}).
fd1b1fa2
LC
9258
9259When @var{qemu-networking?} is true, set up networking with the standard QEMU
9260parameters. When @var{virtio?} is true, load additional modules so the initrd can
9261be used as a QEMU guest with para-virtualized I/O drivers.
9262
9263When @var{volatile-root?} is true, the root file system is writable but any changes
9264to it are lost.
9265
9266The initrd is automatically populated with all the kernel modules necessary
9267for @var{file-systems} and for the given options. However, additional kernel
9268modules can be listed in @var{extra-modules}. They will be added to the initrd, and
9269loaded at boot time in the order in which they appear.
9270@end deffn
9271
9272Needless to say, the initrds we produce and use embed a
9273statically-linked Guile, and the initialization program is a Guile
9274program. That gives a lot of flexibility. The
9275@code{expression->initrd} procedure builds such an initrd, given the
9276program to run in that initrd.
9277
9278@deffn {Monadic Procedure} expression->initrd @var{exp} @
9279 [#:guile %guile-static-stripped] [#:name "guile-initrd"] @
42d10464 9280 [#:modules '()]
fd1b1fa2
LC
9281Return a derivation that builds a Linux initrd (a gzipped cpio archive)
9282containing @var{guile} and that evaluates @var{exp}, a G-expression,
df650fa8
LC
9283upon booting. All the derivations referenced by @var{exp} are
9284automatically copied to the initrd.
fd1b1fa2 9285
42d10464
LC
9286@var{modules} is a list of Guile module names to be embedded in the
9287initrd.
fd1b1fa2
LC
9288@end deffn
9289
88faf933
LC
9290@node GRUB Configuration
9291@subsection GRUB Configuration
9292
9293@cindex GRUB
9294@cindex boot loader
9295
9296The operating system uses GNU@tie{}GRUB as its boot loader
9297(@pxref{Overview, overview of GRUB,, grub, GNU GRUB Manual}). It is
9298configured using @code{grub-configuration} declarations. This data type
9299is exported by the @code{(gnu system grub)} module, and described below.
9300
9301@deftp {Data Type} grub-configuration
9302The type of a GRUB configuration declaration.
9303
9304@table @asis
9305
9306@item @code{device}
9307This is a string denoting the boot device. It must be a device name
9308understood by the @command{grub-install} command, such as
9309@code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub,
9310GNU GRUB Manual}).
9311
9312@item @code{menu-entries} (default: @code{()})
9313A possibly empty list of @code{menu-entry} objects (see below), denoting
9314entries to appear in the GRUB boot menu, in addition to the current
9315system entry and the entry pointing to previous system generations.
9316
9317@item @code{default-entry} (default: @code{0})
9318The index of the default boot menu entry. Index 0 is for the current
9319system's entry.
9320
9321@item @code{timeout} (default: @code{5})
9322The number of seconds to wait for keyboard input before booting. Set to
93230 to boot immediately, and to -1 to wait indefinitely.
9324
9325@item @code{theme} (default: @var{%default-theme})
9326The @code{grub-theme} object describing the theme to use.
9327@end table
9328
9329@end deftp
9330
9331Should you want to list additional boot menu entries @i{via} the
9332@code{menu-entries} field above, you will need to create them with the
9333@code{menu-entry} form:
9334
9335@deftp {Data Type} menu-entry
9336The type of an entry in the GRUB boot menu.
9337
9338@table @asis
9339
9340@item @code{label}
35ed9306 9341The label to show in the menu---e.g., @code{"GNU"}.
88faf933
LC
9342
9343@item @code{linux}
9344The Linux kernel to boot.
9345
9346@item @code{linux-arguments} (default: @code{()})
9347The list of extra Linux kernel command-line arguments---e.g.,
9348@code{("console=ttyS0")}.
9349
9350@item @code{initrd}
9351A G-Expression or string denoting the file name of the initial RAM disk
9352to use (@pxref{G-Expressions}).
9353
9354@end table
9355@end deftp
9356
9357@c FIXME: Write documentation once it's stable.
9358Themes are created using the @code{grub-theme} form, which is not
9359documented yet.
9360
9361@defvr {Scheme Variable} %default-theme
9362This is the default GRUB theme used by the operating system, with a
9363fancy background image displaying the GNU and Guix logos.
9364@end defvr
9365
9366
cf4a9129
LC
9367@node Invoking guix system
9368@subsection Invoking @code{guix system}
0918e64a 9369
cf4a9129
LC
9370Once you have written an operating system declaration, as seen in the
9371previous section, it can be @dfn{instantiated} using the @command{guix
9372system} command. The synopsis is:
4af2447e 9373
cf4a9129
LC
9374@example
9375guix system @var{options}@dots{} @var{action} @var{file}
9376@end example
4af2447e 9377
cf4a9129
LC
9378@var{file} must be the name of a file containing an
9379@code{operating-system} declaration. @var{action} specifies how the
a40424bd 9380operating system is instantiated. Currently the following values are
cf4a9129 9381supported:
4af2447e 9382
cf4a9129
LC
9383@table @code
9384@item reconfigure
9385Build the operating system described in @var{file}, activate it, and
9386switch to it@footnote{This action is usable only on systems already
65797bff 9387running GuixSD.}.
4af2447e 9388
cf4a9129
LC
9389This effects all the configuration specified in @var{file}: user
9390accounts, system services, global package list, setuid programs, etc.
240b57f0
LC
9391The command starts system services specified in @var{file} that are not
9392currently running; if a service is currently running, it does not
9393attempt to upgrade it since it would not be possible without stopping it
9394first.
4af2447e 9395
cf4a9129
LC
9396It also adds a GRUB menu entry for the new OS configuration, and moves
9397entries for older configurations to a submenu---unless
9398@option{--no-grub} is passed.
4af2447e 9399
240b57f0 9400@quotation Note
bf2479c7
LC
9401@c The paragraph below refers to the problem discussed at
9402@c <http://lists.gnu.org/archive/html/guix-devel/2014-08/msg00057.html>.
9403It is highly recommended to run @command{guix pull} once before you run
9404@command{guix system reconfigure} for the first time (@pxref{Invoking
9405guix pull}). Failing to do that you would see an older version of Guix
9406once @command{reconfigure} has completed.
240b57f0 9407@end quotation
bf2479c7 9408
cf4a9129
LC
9409@item build
9410Build the operating system's derivation, which includes all the
9411configuration files and programs needed to boot and run the system.
9412This action does not actually install anything.
113daf62 9413
cf4a9129
LC
9414@item init
9415Populate the given directory with all the files necessary to run the
9416operating system specified in @var{file}. This is useful for first-time
4705641f 9417installations of GuixSD. For instance:
113daf62
LC
9418
9419@example
cf4a9129 9420guix system init my-os-config.scm /mnt
113daf62
LC
9421@end example
9422
cf4a9129
LC
9423copies to @file{/mnt} all the store items required by the configuration
9424specified in @file{my-os-config.scm}. This includes configuration
9425files, packages, and so on. It also creates other essential files
9426needed for the system to operate correctly---e.g., the @file{/etc},
9427@file{/var}, and @file{/run} directories, and the @file{/bin/sh} file.
113daf62 9428
cf4a9129
LC
9429This command also installs GRUB on the device specified in
9430@file{my-os-config}, unless the @option{--no-grub} option was passed.
113daf62 9431
cf4a9129
LC
9432@item vm
9433@cindex virtual machine
0276f697 9434@cindex VM
f535dcbe 9435@anchor{guix system vm}
cf4a9129
LC
9436Build a virtual machine that contain the operating system declared in
9437@var{file}, and return a script to run that virtual machine (VM).
810568b3 9438Arguments given to the script are passed as is to QEMU.
113daf62 9439
cf4a9129 9440The VM shares its store with the host system.
113daf62 9441
0276f697
LC
9442Additional file systems can be shared between the host and the VM using
9443the @code{--share} and @code{--expose} command-line options: the former
9444specifies a directory to be shared with write access, while the latter
9445provides read-only access to the shared directory.
9446
9447The example below creates a VM in which the user's home directory is
9448accessible read-only, and where the @file{/exchange} directory is a
9449read-write mapping of the host's @file{$HOME/tmp}:
9450
9451@example
9452guix system vm my-config.scm \
9453 --expose=$HOME --share=$HOME/tmp=/exchange
9454@end example
9455
6aa260af
LC
9456On GNU/Linux, the default is to boot directly to the kernel; this has
9457the advantage of requiring only a very tiny root disk image since the
9458host's store can then be mounted.
9459
9460The @code{--full-boot} option forces a complete boot sequence, starting
9461with the bootloader. This requires more disk space since a root image
9462containing at least the kernel, initrd, and bootloader data files must
9463be created. The @code{--image-size} option can be used to specify the
9464image's size.
ab11f0be 9465
cf4a9129
LC
9466@item vm-image
9467@itemx disk-image
9468Return a virtual machine or disk image of the operating system declared
9469in @var{file} that stands alone. Use the @option{--image-size} option
9470to specify the size of the image.
113daf62 9471
cf4a9129 9472When using @code{vm-image}, the returned image is in qcow2 format, which
97d76250
LF
9473the QEMU emulator can efficiently use. @xref{Running GuixSD in a VM},
9474for more information on how to run the image in a virtual machine.
113daf62 9475
cf4a9129
LC
9476When using @code{disk-image}, a raw disk image is produced; it can be
9477copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is
9478the device corresponding to a USB stick, one can copy the image on it
9479using the following command:
113daf62 9480
cf4a9129
LC
9481@example
9482# dd if=$(guix system disk-image my-os.scm) of=/dev/sdc
9483@end example
113daf62 9484
1c8a81b1
DT
9485@item container
9486Return a script to run the operating system declared in @var{file}
9487within a container. Containers are a set of lightweight isolation
9488mechanisms provided by the kernel Linux-libre. Containers are
9489substantially less resource-demanding than full virtual machines since
9490the kernel, shared objects, and other resources can be shared with the
9491host system; this also means they provide thinner isolation.
9492
9493Currently, the script must be run as root in order to support more than
9494a single user and group. The container shares its store with the host
9495system.
9496
9497As with the @code{vm} action (@pxref{guix system vm}), additional file
9498systems to be shared between the host and container can be specified
9499using the @option{--share} and @option{--expose} options:
9500
9501@example
9502guix system container my-config.scm \
9503 --expose=$HOME --share=$HOME/tmp=/exchange
9504@end example
9505
0f252e26 9506@quotation Note
cfd35b4e 9507This option requires Linux-libre 3.19 or newer.
0f252e26
DT
9508@end quotation
9509
cf4a9129 9510@end table
113daf62 9511
ccd7158d
LC
9512@var{options} can contain any of the common build options (@pxref{Common
9513Build Options}). In addition, @var{options} can contain one of the
9514following:
113daf62 9515
cf4a9129
LC
9516@table @option
9517@item --system=@var{system}
9518@itemx -s @var{system}
9519Attempt to build for @var{system} instead of the host's system type.
9520This works as per @command{guix build} (@pxref{Invoking guix build}).
113daf62 9521
f3f427c2
LC
9522@item --derivation
9523@itemx -d
9524Return the derivation file name of the given operating system without
9525building anything.
9526
cf4a9129
LC
9527@item --image-size=@var{size}
9528For the @code{vm-image} and @code{disk-image} actions, create an image
9529of the given @var{size}. @var{size} may be a number of bytes, or it may
4a44d7bb
LC
9530include a unit as a suffix (@pxref{Block size, size specifications,,
9531coreutils, GNU Coreutils}).
db030303
LC
9532
9533@item --on-error=@var{strategy}
9534Apply @var{strategy} when an error occurs when reading @var{file}.
9535@var{strategy} may be one of the following:
9536
9537@table @code
9538@item nothing-special
9539Report the error concisely and exit. This is the default strategy.
9540
9541@item backtrace
9542Likewise, but also display a backtrace.
9543
9544@item debug
9545Report the error and enter Guile's debugger. From there, you can run
9546commands such as @code{,bt} to get a backtrace, @code{,locals} to
9547display local variable values, and more generally inspect the program's
9548state. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for
9549a list of available debugging commands.
9550@end table
113daf62 9551@end table
113daf62 9552
cf4a9129
LC
9553Note that all the actions above, except @code{build} and @code{init},
9554rely on KVM support in the Linux-Libre kernel. Specifically, the
9555machine should have hardware virtualization support, the corresponding
9556KVM kernel module should be loaded, and the @file{/dev/kvm} device node
9557must exist and be readable and writable by the user and by the daemon's
9558build users.
8451a568 9559
65797bff
LC
9560Once you have built, configured, re-configured, and re-re-configured
9561your GuixSD installation, you may find it useful to list the operating
9562system generations available on disk---and that you can choose from the
9563GRUB boot menu:
9564
9565@table @code
9566
9567@item list-generations
9568List a summary of each generation of the operating system available on
9569disk, in a human-readable way. This is similar to the
9570@option{--list-generations} option of @command{guix package}
9571(@pxref{Invoking guix package}).
9572
9573Optionally, one can specify a pattern, with the same syntax that is used
9574in @command{guix package --list-generations}, to restrict the list of
9575generations displayed. For instance, the following command displays
9576generations up to 10-day old:
9577
9578@example
9579$ guix system list-generations 10d
9580@end example
9581
9582@end table
9583
d6c3267a
LC
9584The @command{guix system} command has even more to offer! The following
9585sub-commands allow you to visualize how your system services relate to
9586each other:
9587
9588@anchor{system-extension-graph}
9589@table @code
9590
9591@item extension-graph
9592Emit in Dot/Graphviz format to standard output the @dfn{service
9593extension graph} of the operating system defined in @var{file}
9594(@pxref{Service Composition}, for more information on service
9595extensions.)
9596
9597The command:
9598
9599@example
9600$ guix system extension-graph @var{file} | dot -Tpdf > services.pdf
9601@end example
9602
9603produces a PDF file showing the extension relations among services.
9604
710fa231
AK
9605@anchor{system-shepherd-graph}
9606@item shepherd-graph
6f305ea5 9607Emit in Dot/Graphviz format to standard output the @dfn{dependency
dd17bc38
AK
9608graph} of shepherd services of the operating system defined in
9609@var{file}. @xref{Shepherd Services}, for more information and for an
9610example graph.
6f305ea5 9611
d6c3267a
LC
9612@end table
9613
97d76250 9614@node Running GuixSD in a VM
70ac09a5 9615@subsection Running GuixSD in a Virtual Machine
97d76250
LF
9616
9617One way to run GuixSD in a virtual machine (VM) is to build a GuixSD
9618virtual machine image using @command{guix system vm-image}
9619(@pxref{Invoking guix system}). The returned image is in qcow2 format,
9620which the @uref{http://qemu.org/, QEMU emulator} can efficiently use.
9621
9622To run the image in QEMU, copy it out of the store (@pxref{The Store})
9623and give yourself permission to write to the copy. When invoking QEMU,
9624you must choose a system emulator that is suitable for your hardware
9625platform. Here is a minimal QEMU invocation that will boot the result
9626of @command{guix system vm-image} on x86_64 hardware:
9627
9628@example
9629$ qemu-system-x86_64 \
9630 -net user -net nic,model=virtio \
9631 -enable-kvm -m 256 /tmp/qemu-image
9632@end example
9633
9634Here is what each of these options means:
9635
9636@table @code
9637@item qemu-system-x86_64
9638This specifies the hardware platform to emulate. This should match the
9639host.
9640
9641@item -net user
9642Enable the unprivileged user-mode network stack. The guest OS can
9643access the host but not vice versa. This is the simplest way to get the
9644guest OS online. If you don't choose a network stack, the boot will
9645fail.
9646
9647@item -net nic,model=virtio
9648You must create a network interface of a given model. If you don't
9649create a NIC, the boot will fail. Assuming your hardware platform is
9650x86_64, you can get a list of available NIC models by running
9651@command{qemu-system-x86_64 -net nic,model=help}.
9652
9653@item -enable-kvm
9654If your system has hardware virtualization extensions, enabling the
9655Linux kernel's virtual machine support (KVM) will make things run
9656faster.
9657
9658@item -m 256
9659RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB,
9660which may be insufficent for some operations.
9661
9662@item /tmp/qemu-image
9663The file name of the qcow2 image.
9664@end table
d6c3267a 9665
cf4a9129
LC
9666@node Defining Services
9667@subsection Defining Services
8451a568 9668
eb524192 9669The previous sections show the available services and how one can combine
0adfe95a
LC
9670them in an @code{operating-system} declaration. But how do we define
9671them in the first place? And what is a service anyway?
8451a568 9672
0adfe95a
LC
9673@menu
9674* Service Composition:: The model for composing services.
9675* Service Types and Services:: Types and services.
9676* Service Reference:: API reference.
dd17bc38 9677* Shepherd Services:: A particular type of service.
0adfe95a
LC
9678@end menu
9679
9680@node Service Composition
9681@subsubsection Service Composition
9682
9683@cindex services
9684@cindex daemons
9685Here we define a @dfn{service} as, broadly, something that extends the
9686operating system's functionality. Often a service is a process---a
9687@dfn{daemon}---started when the system boots: a secure shell server, a
9688Web server, the Guix build daemon, etc. Sometimes a service is a daemon
9689whose execution can be triggered by another daemon---e.g., an FTP server
9690started by @command{inetd} or a D-Bus service activated by
9691@command{dbus-daemon}. Occasionally, a service does not map to a
9692daemon. For instance, the ``account'' service collects user accounts
9693and makes sure they exist when the system runs; the ``udev'' service
9694collects device management rules and makes them available to the eudev
9695daemon; the @file{/etc} service populates the system's @file{/etc}
9696directory.
9697
d6c3267a 9698@cindex service extensions
0adfe95a 9699GuixSD services are connected by @dfn{extensions}. For instance, the
dd17bc38
AK
9700secure shell service @emph{extends} the Shepherd---GuixSD's
9701initialization system, running as PID@tie{}1---by giving it the command
9702lines to start and stop the secure shell daemon (@pxref{Networking
9703Services, @code{lsh-service}}); the UPower service extends the D-Bus
9704service by passing it its @file{.service} specification, and extends the
9705udev service by passing it device management rules (@pxref{Desktop
9706Services, @code{upower-service}}); the Guix daemon service extends the
9707Shepherd by passing it the command lines to start and stop the daemon,
9708and extends the account service by passing it a list of required build
9709user accounts (@pxref{Base Services}).
0adfe95a
LC
9710
9711All in all, services and their ``extends'' relations form a directed
9712acyclic graph (DAG). If we represent services as boxes and extensions
9713as arrows, a typical system might provide something like this:
9714
9715@image{images/service-graph,,5in,Typical service extension graph.}
9716
d62e201c
LC
9717@cindex system service
9718At the bottom, we see the @dfn{system service}, which produces the
9719directory containing everything to run and boot the system, as returned
9720by the @command{guix system build} command. @xref{Service Reference},
9721to learn about the other service types shown here.
d6c3267a
LC
9722@xref{system-extension-graph, the @command{guix system extension-graph}
9723command}, for information on how to generate this representation for a
9724particular operating system definition.
0adfe95a
LC
9725
9726@cindex service types
9727Technically, developers can define @dfn{service types} to express these
9728relations. There can be any number of services of a given type on the
9729system---for instance, a system running two instances of the GNU secure
9730shell server (lsh) has two instances of @var{lsh-service-type}, with
9731different parameters.
9732
9733The following section describes the programming interface for service
9734types and services.
9735
9736@node Service Types and Services
9737@subsubsection Service Types and Services
9738
9739A @dfn{service type} is a node in the DAG described above. Let us start
9740with a simple example, the service type for the Guix build daemon
9741(@pxref{Invoking guix-daemon}):
9742
9743@example
9744(define guix-service-type
9745 (service-type
9746 (name 'guix)
9747 (extensions
d4053c71 9748 (list (service-extension shepherd-root-service-type guix-shepherd-service)
0adfe95a
LC
9749 (service-extension account-service-type guix-accounts)
9750 (service-extension activation-service-type guix-activation)))))
9751@end example
8451a568 9752
cf4a9129 9753@noindent
0adfe95a
LC
9754It defines a two things:
9755
9756@enumerate
9757@item
9758A name, whose sole purpose is to make inspection and debugging easier.
9759
9760@item
9761A list of @dfn{service extensions}, where each extension designates the
9762target service type and a procedure that, given the service's
9763parameters, returns a list of object to extend the service of that type.
9764
9765Every service type has at least one service extension. The only
9766exception is the @dfn{boot service type}, which is the ultimate service.
9767@end enumerate
9768
9769In this example, @var{guix-service-type} extends three services:
9770
9771@table @var
d4053c71
AK
9772@item shepherd-root-service-type
9773The @var{guix-shepherd-service} procedure defines how the Shepherd
9774service is extended. Namely, it returns a @code{<shepherd-service>}
9775object that defines how @command{guix-daemon} is started and stopped
9776(@pxref{Shepherd Services}).
0adfe95a
LC
9777
9778@item account-service-type
9779This extension for this service is computed by @var{guix-accounts},
9780which returns a list of @code{user-group} and @code{user-account}
9781objects representing the build user accounts (@pxref{Invoking
9782guix-daemon}).
9783
9784@item activation-service-type
9785Here @var{guix-activation} is a procedure that returns a gexp, which is
9786a code snippet to run at ``activation time''---e.g., when the service is
9787booted.
9788@end table
9789
9790A service of this type is instantiated like this:
9791
9792@example
9793(service guix-service-type
9794 (guix-configuration
9795 (build-accounts 5)
9796 (use-substitutes? #f)))
9797@end example
9798
9799The second argument to the @code{service} form is a value representing
9800the parameters of this specific service instance.
9801@xref{guix-configuration-type, @code{guix-configuration}}, for
9802information about the @code{guix-configuration} data type.
9803
9804@var{guix-service-type} is quite simple because it extends other
9805services but is not extensible itself.
9806
9807@c @subsubsubsection Extensible Service Types
9808
9809The service type for an @emph{extensible} service looks like this:
9810
9811@example
9812(define udev-service-type
9813 (service-type (name 'udev)
9814 (extensions
d4053c71
AK
9815 (list (service-extension shepherd-root-service-type
9816 udev-shepherd-service)))
0adfe95a
LC
9817
9818 (compose concatenate) ;concatenate the list of rules
9819 (extend (lambda (config rules)
9820 (match config
9821 (($ <udev-configuration> udev initial-rules)
9822 (udev-configuration
9823 (udev udev) ;the udev package to use
9824 (rules (append initial-rules rules)))))))))
9825@end example
9826
9827This is the service type for the
9828@uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device
9829management daemon}. Compared to the previous example, in addition to an
d4053c71 9830extension of @var{shepherd-root-service-type}, we see two new fields:
0adfe95a
LC
9831
9832@table @code
9833@item compose
9834This is the procedure to @dfn{compose} the list of extensions to
9835services of this type.
9836
9837Services can extend the udev service by passing it lists of rules; we
9838compose those extensions simply by concatenating them.
9839
9840@item extend
9841This procedure defines how the service's value is @dfn{extended} with
9842the composition of the extensions.
9843
9844Udev extensions are composed into a list of rules, but the udev service
9845value is itself a @code{<udev-configuration>} record. So here, we
a40424bd 9846extend that record by appending the list of rules it contains to the
0adfe95a
LC
9847list of contributed rules.
9848@end table
9849
9850There can be only one instance of an extensible service type such as
9851@var{udev-service-type}. If there were more, the
9852@code{service-extension} specifications would be ambiguous.
9853
9854Still here? The next section provides a reference of the programming
9855interface for services.
9856
9857@node Service Reference
9858@subsubsection Service Reference
9859
9860We have seen an overview of service types (@pxref{Service Types and
9861Services}). This section provides a reference on how to manipulate
9862services and service types. This interface is provided by the
9863@code{(gnu services)} module.
9864
9865@deffn {Scheme Procedure} service @var{type} @var{value}
9866Return a new service of @var{type}, a @code{<service-type>} object (see
9867below.) @var{value} can be any object; it represents the parameters of
9868this particular service instance.
9869@end deffn
9870
9871@deffn {Scheme Procedure} service? @var{obj}
9872Return true if @var{obj} is a service.
9873@end deffn
8451a568 9874
0adfe95a
LC
9875@deffn {Scheme Procedure} service-kind @var{service}
9876Return the type of @var{service}---i.e., a @code{<service-type>} object.
9877@end deffn
9878
9879@deffn {Scheme Procedure} service-parameters @var{service}
9880Return the value associated with @var{service}. It represents its
9881parameters.
9882@end deffn
9883
9884Here is an example of how a service is created and manipulated:
9885
9886@example
9887(define s
9888 (service nginx-service-type
9889 (nginx-configuration
9890 (nginx nginx)
9891 (log-directory log-directory)
9892 (run-directory run-directory)
9893 (file config-file))))
9894
9895(service? s)
9896@result{} #t
9897
9898(eq? (service-kind s) nginx-service-type)
9899@result{} #t
9900@end example
9901
cd6f6c22
LC
9902The @code{modify-services} form provides a handy way to change the
9903parameters of some of the services of a list such as
9904@var{%base-services} (@pxref{Base Services, @code{%base-services}}). Of
9905course, you could always use standard list combinators such as
9906@code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,,
9907guile, GNU Guile Reference Manual}); @code{modify-services} simply
9908provides a more concise form for this common pattern.
9909
9910@deffn {Scheme Syntax} modify-services @var{services} @
9911 (@var{type} @var{variable} => @var{body}) @dots{}
9912
9913Modify the services listed in @var{services} according to the given
9914clauses. Each clause has the form:
9915
9916@example
9917(@var{type} @var{variable} => @var{body})
9918@end example
9919
9920where @var{type} is a service type, such as @var{guix-service-type}, and
9921@var{variable} is an identifier that is bound within @var{body} to the
9922value of the service of that @var{type}. @xref{Using the Configuration
9923System}, for an example.
9924
9925This is a shorthand for:
9926
9927@example
9928(map (lambda (service) @dots{}) @var{services})
9929@end example
9930@end deffn
9931
9932Next comes the programming interface for service types. This is
9933something you want to know when writing new service definitions, but not
9934necessarily when simply looking for ways to customize your
9935@code{operating-system} declaration.
9936
0adfe95a
LC
9937@deftp {Data Type} service-type
9938@cindex service type
9939This is the representation of a @dfn{service type} (@pxref{Service Types
9940and Services}).
9941
9942@table @asis
9943@item @code{name}
9944This is a symbol, used only to simplify inspection and debugging.
9945
9946@item @code{extensions}
9947A non-empty list of @code{<service-extension>} objects (see below.)
9948
9949@item @code{compose} (default: @code{#f})
9950If this is @code{#f}, then the service type denotes services that cannot
9951be extended---i.e., services that do not receive ``values'' from other
9952services.
9953
9954Otherwise, it must be a one-argument procedure. The procedure is called
9955by @code{fold-services} and is passed a list of values collected from
9956extensions. It must return a value that is a valid parameter value for
9957the service instance.
9958
9959@item @code{extend} (default: @code{#f})
9960If this is @code{#f}, services of this type cannot be extended.
9961
9962Otherwise, it must be a two-argument procedure: @code{fold-services}
9963calls it, passing it the service's initial value as the first argument
9964and the result of applying @code{compose} to the extension values as the
9965second argument.
9966@end table
9967
9968@xref{Service Types and Services}, for examples.
9969@end deftp
9970
9971@deffn {Scheme Procedure} service-extension @var{target-type} @
9972 @var{compute}
9973Return a new extension for services of type @var{target-type}.
9974@var{compute} must be a one-argument procedure: @code{fold-services}
9975calls it, passing it the value associated with the service that provides
9976the extension; it must return a valid value for the target service.
9977@end deffn
9978
9979@deffn {Scheme Procedure} service-extension? @var{obj}
9980Return true if @var{obj} is a service extension.
9981@end deffn
9982
9983At the core of the service abstraction lies the @code{fold-services}
9984procedure, which is responsible for ``compiling'' a list of services
d62e201c
LC
9985down to a single directory that contains everything needed to boot and
9986run the system---the directory shown by the @command{guix system build}
9987command (@pxref{Invoking guix system}). In essence, it propagates
9988service extensions down the service graph, updating each node parameters
9989on the way, until it reaches the root node.
0adfe95a
LC
9990
9991@deffn {Scheme Procedure} fold-services @var{services} @
d62e201c 9992 [#:target-type @var{system-service-type}]
0adfe95a
LC
9993Fold @var{services} by propagating their extensions down to the root of
9994type @var{target-type}; return the root service adjusted accordingly.
9995@end deffn
9996
9997Lastly, the @code{(gnu services)} module also defines several essential
9998service types, some of which are listed below.
9999
d62e201c
LC
10000@defvr {Scheme Variable} system-service-type
10001This is the root of the service graph. It produces the system directory
10002as returned by the @command{guix system build} command.
10003@end defvr
10004
0adfe95a 10005@defvr {Scheme Variable} boot-service-type
d62e201c
LC
10006The type of the ``boot service'', which produces the @dfn{boot script}.
10007The boot script is what the initial RAM disk runs when booting.
0adfe95a
LC
10008@end defvr
10009
10010@defvr {Scheme Variable} etc-service-type
10011The type of the @file{/etc} service. This service can be extended by
10012passing it name/file tuples such as:
10013
10014@example
10015(list `("issue" ,(plain-file "issue" "Welcome!\n")))
10016@end example
10017
10018In this example, the effect would be to add an @file{/etc/issue} file
10019pointing to the given file.
10020@end defvr
10021
10022@defvr {Scheme Variable} setuid-program-service-type
10023Type for the ``setuid-program service''. This service collects lists of
10024executable file names, passed as gexps, and adds them to the set of
10025setuid-root programs on the system (@pxref{Setuid Programs}).
10026@end defvr
10027
af4c3fd5
LC
10028@defvr {Scheme Variable} profile-service-type
10029Type of the service that populates the @dfn{system profile}---i.e., the
10030programs under @file{/run/current-system/profile}. Other services can
10031extend it by passing it lists of packages to add to the system profile.
10032@end defvr
10033
0adfe95a 10034
dd17bc38
AK
10035@node Shepherd Services
10036@subsubsection Shepherd Services
0adfe95a
LC
10037
10038@cindex PID 1
10039@cindex init system
a40424bd
CM
10040The @code{(gnu services shepherd)} module provides a way to define
10041services managed by the GNU@tie{}Shepherd, which is the GuixSD
10042initialization system---the first process that is started when the
10043system boots, aka. PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU
10044Shepherd Manual}).
6f305ea5 10045
dd17bc38
AK
10046Services in the Shepherd can depend on each other. For instance, the
10047SSH daemon may need to be started after the syslog daemon has been
10048started, which in turn can only happen once all the file systems have
10049been mounted. The simple operating system defined earlier (@pxref{Using
10050the Configuration System}) results in a service graph like this:
6f305ea5 10051
710fa231 10052@image{images/shepherd-graph,,5in,Typical shepherd service graph.}
6f305ea5
LC
10053
10054You can actually generate such a graph for any operating system
710fa231
AK
10055definition using the @command{guix system shepherd-graph} command
10056(@pxref{system-shepherd-graph, @command{guix system shepherd-graph}}).
6f305ea5 10057
d4053c71
AK
10058The @var{%shepherd-root-service} is a service object representing
10059PID@tie{}1, of type @var{shepherd-root-service-type}; it can be extended
10060by passing it lists of @code{<shepherd-service>} objects.
0adfe95a 10061
d4053c71 10062@deftp {Data Type} shepherd-service
dd17bc38 10063The data type representing a service managed by the Shepherd.
0adfe95a
LC
10064
10065@table @asis
10066@item @code{provision}
10067This is a list of symbols denoting what the service provides.
10068
dd17bc38
AK
10069These are the names that may be passed to @command{herd start},
10070@command{herd status}, and similar commands (@pxref{Invoking herd,,,
10071shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the
10072@code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details.
0adfe95a
LC
10073
10074@item @code{requirements} (default: @code{'()})
dd17bc38 10075List of symbols denoting the Shepherd services this one depends on.
0adfe95a
LC
10076
10077@item @code{respawn?} (default: @code{#t})
10078Whether to restart the service when it stops, for instance when the
10079underlying process dies.
10080
10081@item @code{start}
10082@itemx @code{stop} (default: @code{#~(const #f)})
dd17bc38
AK
10083The @code{start} and @code{stop} fields refer to the Shepherd's
10084facilities to start and stop processes (@pxref{Service De- and
10085Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as
10086G-expressions that get expanded in the Shepherd configuration file
10087(@pxref{G-Expressions}).
0adfe95a
LC
10088
10089@item @code{documentation}
10090A documentation string, as shown when running:
10091
10092@example
dd17bc38 10093herd doc @var{service-name}
0adfe95a
LC
10094@end example
10095
10096where @var{service-name} is one of the symbols in @var{provision}
dd17bc38 10097(@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}).
fae685b9
LC
10098
10099@item @code{modules} (default: @var{%default-modules})
10100This is the list of modules that must be in scope when @code{start} and
10101@code{stop} are evaluated.
10102
10103@item @code{imported-modules} (default: @var{%default-imported-modules})
10104This is the list of modules to import in the execution environment of
dd17bc38 10105the Shepherd.
fae685b9 10106
0adfe95a
LC
10107@end table
10108@end deftp
10109
d4053c71 10110@defvr {Scheme Variable} shepherd-root-service-type
dd17bc38 10111The service type for the Shepherd ``root service''---i.e., PID@tie{}1.
0adfe95a
LC
10112
10113This is the service type that extensions target when they want to create
dd17bc38 10114shepherd services (@pxref{Service Types and Services}, for an example).
d4053c71 10115Each extension must pass a list of @code{<shepherd-service>}.
0adfe95a
LC
10116@end defvr
10117
d4053c71 10118@defvr {Scheme Variable} %shepherd-root-service
0adfe95a
LC
10119This service represents PID@tie{}1.
10120@end defvr
8451a568 10121
8451a568 10122
cf4a9129
LC
10123@node Installing Debugging Files
10124@section Installing Debugging Files
8451a568 10125
cf4a9129
LC
10126@cindex debugging files
10127Program binaries, as produced by the GCC compilers for instance, are
10128typically written in the ELF format, with a section containing
10129@dfn{debugging information}. Debugging information is what allows the
10130debugger, GDB, to map binary code to source code; it is required to
10131debug a compiled program in good conditions.
8451a568 10132
cf4a9129
LC
10133The problem with debugging information is that is takes up a fair amount
10134of disk space. For example, debugging information for the GNU C Library
10135weighs in at more than 60 MiB. Thus, as a user, keeping all the
10136debugging info of all the installed programs is usually not an option.
10137Yet, space savings should not come at the cost of an impediment to
10138debugging---especially in the GNU system, which should make it easier
10139for users to exert their computing freedom (@pxref{GNU Distribution}).
8451a568 10140
cf4a9129
LC
10141Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a
10142mechanism that allows users to get the best of both worlds: debugging
10143information can be stripped from the binaries and stored in separate
10144files. GDB is then able to load debugging information from those files,
10145when they are available (@pxref{Separate Debug Files,,, gdb, Debugging
10146with GDB}).
8451a568 10147
cf4a9129
LC
10148The GNU distribution takes advantage of this by storing debugging
10149information in the @code{lib/debug} sub-directory of a separate package
10150output unimaginatively called @code{debug} (@pxref{Packages with
10151Multiple Outputs}). Users can choose to install the @code{debug} output
10152of a package when they need it. For instance, the following command
10153installs the debugging information for the GNU C Library and for GNU
10154Guile:
8451a568
LC
10155
10156@example
cf4a9129 10157guix package -i glibc:debug guile:debug
8451a568
LC
10158@end example
10159
cf4a9129
LC
10160GDB must then be told to look for debug files in the user's profile, by
10161setting the @code{debug-file-directory} variable (consider setting it
10162from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with
10163GDB}):
8451a568 10164
cf4a9129
LC
10165@example
10166(gdb) set debug-file-directory ~/.guix-profile/lib/debug
10167@end example
8451a568 10168
cf4a9129
LC
10169From there on, GDB will pick up debugging information from the
10170@code{.debug} files under @file{~/.guix-profile/lib/debug}.
8451a568 10171
cf4a9129
LC
10172In addition, you will most likely want GDB to be able to show the source
10173code being debugged. To do that, you will have to unpack the source
10174code of the package of interest (obtained with @code{guix build
10175--source}, @pxref{Invoking guix build}), and to point GDB to that source
10176directory using the @code{directory} command (@pxref{Source Path,
10177@code{directory},, gdb, Debugging with GDB}).
8451a568 10178
cf4a9129
LC
10179@c XXX: keep me up-to-date
10180The @code{debug} output mechanism in Guix is implemented by the
10181@code{gnu-build-system} (@pxref{Build Systems}). Currently, it is
10182opt-in---debugging information is available only for those packages
10183whose definition explicitly declares a @code{debug} output. This may be
10184changed to opt-out in the future, if our build farm servers can handle
10185the load. To check whether a package has a @code{debug} output, use
10186@command{guix package --list-available} (@pxref{Invoking guix package}).
8451a568 10187
8451a568 10188
05962f29
LC
10189@node Security Updates
10190@section Security Updates
10191
843858b8
LC
10192@quotation Note
10193As of version @value{VERSION}, the feature described in this section is
10194experimental.
10195@end quotation
05962f29
LC
10196
10197@cindex security updates
10198Occasionally, important security vulnerabilities are discovered in core
10199software packages and must be patched. Guix follows a functional
10200package management discipline (@pxref{Introduction}), which implies
10201that, when a package is changed, @emph{every package that depends on it}
10202must be rebuilt. This can significantly slow down the deployment of
10203fixes in core packages such as libc or Bash, since basically the whole
10204distribution would need to be rebuilt. Using pre-built binaries helps
10205(@pxref{Substitutes}), but deployment may still take more time than
10206desired.
10207
10208@cindex grafts
10209To address that, Guix implements @dfn{grafts}, a mechanism that allows
10210for fast deployment of critical updates without the costs associated
10211with a whole-distribution rebuild. The idea is to rebuild only the
10212package that needs to be patched, and then to ``graft'' it onto packages
10213explicitly installed by the user and that were previously referring to
10214the original package. The cost of grafting is typically very low, and
10215order of magnitudes lower than a full rebuild of the dependency chain.
10216
10217@cindex replacements of packages, for grafts
10218For instance, suppose a security update needs to be applied to Bash.
10219Guix developers will provide a package definition for the ``fixed''
10220Bash, say @var{bash-fixed}, in the usual way (@pxref{Defining
10221Packages}). Then, the original package definition is augmented with a
10222@code{replacement} field pointing to the package containing the bug fix:
10223
10224@example
10225(define bash
10226 (package
10227 (name "bash")
10228 ;; @dots{}
10229 (replacement bash-fixed)))
10230@end example
10231
10232From there on, any package depending directly or indirectly on Bash that
10233is installed will automatically be ``rewritten'' to refer to
10234@var{bash-fixed} instead of @var{bash}. This grafting process takes
10235time proportional to the size of the package, but expect less than a
10236minute for an ``average'' package on a recent machine.
10237
10238Currently, the graft and the package it replaces (@var{bash-fixed} and
10239@var{bash} in the example above) must have the exact same @code{name}
10240and @code{version} fields. This restriction mostly comes from the fact
10241that grafting works by patching files, including binary files, directly.
10242Other restrictions may apply: for instance, when adding a graft to a
10243package providing a shared library, the original shared library and its
10244replacement must have the same @code{SONAME} and be binary-compatible.
10245
10246
cf4a9129
LC
10247@node Package Modules
10248@section Package Modules
8451a568 10249
cf4a9129
LC
10250From a programming viewpoint, the package definitions of the
10251GNU distribution are provided by Guile modules in the @code{(gnu packages
10252@dots{})} name space@footnote{Note that packages under the @code{(gnu
10253packages @dots{})} module name space are not necessarily ``GNU
10254packages''. This module naming scheme follows the usual Guile module
10255naming convention: @code{gnu} means that these modules are distributed
10256as part of the GNU system, and @code{packages} identifies modules that
10257define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile
10258Reference Manual}). For instance, the @code{(gnu packages emacs)}
10259module exports a variable named @code{emacs}, which is bound to a
10260@code{<package>} object (@pxref{Defining Packages}).
113daf62 10261
300868ba 10262The @code{(gnu packages @dots{})} module name space is
cf4a9129
LC
10263automatically scanned for packages by the command-line tools. For
10264instance, when running @code{guix package -i emacs}, all the @code{(gnu
10265packages @dots{})} modules are scanned until one that exports a package
10266object whose name is @code{emacs} is found. This package search
10267facility is implemented in the @code{(gnu packages)} module.
113daf62 10268
300868ba 10269@cindex customization, of packages
8689901f 10270@cindex package module search path
cf4a9129 10271Users can store package definitions in modules with different
60142854 10272names---e.g., @code{(my-packages emacs)}@footnote{Note that the file
c95ded7e
LC
10273name and module name must match. For instance, the @code{(my-packages
10274emacs)} module must be stored in a @file{my-packages/emacs.scm} file
10275relative to the load path specified with @option{--load-path} or
10276@code{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,,
10277guile, GNU Guile Reference Manual}, for details.}. These package definitions
300868ba
LC
10278will not be visible by default. Thus, users can invoke commands such as
10279@command{guix package} and @command{guix build} have to be used with the
c95ded7e
LC
10280@code{-e} option so that they know where to find the package. Better
10281yet, they can use the
300868ba 10282@code{-L} option of these commands to make those modules visible
8689901f
LC
10283(@pxref{Invoking guix build, @code{--load-path}}), or define the
10284@code{GUIX_PACKAGE_PATH} environment variable. This environment
10285variable makes it easy to extend or customize the distribution and is
10286honored by all the user interfaces.
10287
10288@defvr {Environment Variable} GUIX_PACKAGE_PATH
10289This is a colon-separated list of directories to search for package
10290modules. Directories listed in this variable take precedence over the
10291distribution's own modules.
10292@end defvr
ef5dd60a 10293
cf4a9129
LC
10294The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}:
10295each package is built based solely on other packages in the
10296distribution. The root of this dependency graph is a small set of
10297@dfn{bootstrap binaries}, provided by the @code{(gnu packages
10298bootstrap)} module. For more information on bootstrapping,
081145cf 10299@pxref{Bootstrapping}.
ef5dd60a 10300
cf4a9129
LC
10301@node Packaging Guidelines
10302@section Packaging Guidelines
ef5dd60a 10303
cf4a9129
LC
10304The GNU distribution is nascent and may well lack some of your favorite
10305packages. This section describes how you can help make the distribution
10306grow. @xref{Contributing}, for additional information on how you can
10307help.
ef5dd60a 10308
cf4a9129
LC
10309Free software packages are usually distributed in the form of
10310@dfn{source code tarballs}---typically @file{tar.gz} files that contain
10311all the source files. Adding a package to the distribution means
10312essentially two things: adding a @dfn{recipe} that describes how to
10313build the package, including a list of other packages required to build
f97c9175 10314it, and adding @dfn{package metadata} along with that recipe, such as a
cf4a9129 10315description and licensing information.
ef5dd60a 10316
cf4a9129
LC
10317In Guix all this information is embodied in @dfn{package definitions}.
10318Package definitions provide a high-level view of the package. They are
10319written using the syntax of the Scheme programming language; in fact,
10320for each package we define a variable bound to the package definition,
10321and export that variable from a module (@pxref{Package Modules}).
10322However, in-depth Scheme knowledge is @emph{not} a prerequisite for
10323creating packages. For more information on package definitions,
081145cf 10324@pxref{Defining Packages}.
ef5dd60a 10325
cf4a9129
LC
10326Once a package definition is in place, stored in a file in the Guix
10327source tree, it can be tested using the @command{guix build} command
10328(@pxref{Invoking guix build}). For example, assuming the new package is
c71979f4
LC
10329called @code{gnew}, you may run this command from the Guix build tree
10330(@pxref{Running Guix Before It Is Installed}):
ef5dd60a
LC
10331
10332@example
cf4a9129 10333./pre-inst-env guix build gnew --keep-failed
ef5dd60a 10334@end example
ef5dd60a 10335
cf4a9129
LC
10336Using @code{--keep-failed} makes it easier to debug build failures since
10337it provides access to the failed build tree. Another useful
10338command-line option when debugging is @code{--log-file}, to access the
10339build log.
ef5dd60a 10340
cf4a9129
LC
10341If the package is unknown to the @command{guix} command, it may be that
10342the source file contains a syntax error, or lacks a @code{define-public}
10343clause to export the package variable. To figure it out, you may load
10344the module from Guile to get more information about the actual error:
ef5dd60a 10345
cf4a9129
LC
10346@example
10347./pre-inst-env guile -c '(use-modules (gnu packages gnew))'
10348@end example
ef5dd60a 10349
cf4a9129
LC
10350Once your package builds correctly, please send us a patch
10351(@pxref{Contributing}). Well, if you need help, we will be happy to
10352help you too. Once the patch is committed in the Guix repository, the
10353new package automatically gets built on the supported platforms by
2b1cee21 10354@url{http://hydra.gnu.org/jobset/gnu/master, our continuous integration
cf4a9129 10355system}.
ef5dd60a 10356
cf4a9129
LC
10357@cindex substituter
10358Users can obtain the new package definition simply by running
10359@command{guix pull} (@pxref{Invoking guix pull}). When
10360@code{hydra.gnu.org} is done building the package, installing the
10361package automatically downloads binaries from there
10362(@pxref{Substitutes}). The only place where human intervention is
10363needed is to review and apply the patch.
ef5dd60a 10364
ef5dd60a 10365
cf4a9129 10366@menu
ec0339cd
LC
10367* Software Freedom:: What may go into the distribution.
10368* Package Naming:: What's in a name?
10369* Version Numbers:: When the name is not enough.
cbd02397 10370* Synopses and Descriptions:: Helping users find the right package.
ec0339cd
LC
10371* Python Modules:: Taming the snake.
10372* Perl Modules:: Little pearls.
10373* Fonts:: Fond of fonts.
cf4a9129 10374@end menu
ef5dd60a 10375
cf4a9129
LC
10376@node Software Freedom
10377@subsection Software Freedom
ef5dd60a 10378
cf4a9129 10379@c Adapted from http://www.gnu.org/philosophy/philosophy.html.
c11a6eb1 10380
cf4a9129
LC
10381The GNU operating system has been developed so that users can have
10382freedom in their computing. GNU is @dfn{free software}, meaning that
10383users have the @url{http://www.gnu.org/philosophy/free-sw.html,four
10384essential freedoms}: to run the program, to study and change the program
10385in source code form, to redistribute exact copies, and to distribute
10386modified versions. Packages found in the GNU distribution provide only
10387software that conveys these four freedoms.
c11a6eb1 10388
cf4a9129
LC
10389In addition, the GNU distribution follow the
10390@url{http://www.gnu.org/distros/free-system-distribution-guidelines.html,free
10391software distribution guidelines}. Among other things, these guidelines
10392reject non-free firmware, recommendations of non-free software, and
10393discuss ways to deal with trademarks and patents.
ef5dd60a 10394
cf4a9129
LC
10395Some packages contain a small and optional subset that violates the
10396above guidelines, for instance because this subset is itself non-free
10397code. When that happens, the offending items are removed with
10398appropriate patches or code snippets in the package definition's
10399@code{origin} form (@pxref{Defining Packages}). That way, @code{guix
10400build --source} returns the ``freed'' source rather than the unmodified
10401upstream source.
ef5dd60a 10402
ef5dd60a 10403
cf4a9129
LC
10404@node Package Naming
10405@subsection Package Naming
ef5dd60a 10406
cf4a9129
LC
10407A package has actually two names associated with it:
10408First, there is the name of the @emph{Scheme variable}, the one following
10409@code{define-public}. By this name, the package can be made known in the
10410Scheme code, for instance as input to another package. Second, there is
10411the string in the @code{name} field of a package definition. This name
10412is used by package management commands such as
10413@command{guix package} and @command{guix build}.
ef5dd60a 10414
cf4a9129
LC
10415Both are usually the same and correspond to the lowercase conversion of
10416the project name chosen upstream, with underscores replaced with
10417hyphens. For instance, GNUnet is available as @code{gnunet}, and
10418SDL_net as @code{sdl-net}.
927097ef 10419
cf4a9129 10420We do not add @code{lib} prefixes for library packages, unless these are
081145cf 10421already part of the official project name. But @pxref{Python
cf4a9129
LC
10422Modules} and @ref{Perl Modules} for special rules concerning modules for
10423the Python and Perl languages.
927097ef 10424
1b366ee4 10425Font package names are handled differently, @pxref{Fonts}.
7fec52b7 10426
ef5dd60a 10427
cf4a9129
LC
10428@node Version Numbers
10429@subsection Version Numbers
ef5dd60a 10430
cf4a9129
LC
10431We usually package only the latest version of a given free software
10432project. But sometimes, for instance for incompatible library versions,
10433two (or more) versions of the same package are needed. These require
10434different Scheme variable names. We use the name as defined
10435in @ref{Package Naming}
10436for the most recent version; previous versions use the same name, suffixed
10437by @code{-} and the smallest prefix of the version number that may
10438distinguish the two versions.
ef5dd60a 10439
cf4a9129
LC
10440The name inside the package definition is the same for all versions of a
10441package and does not contain any version number.
ef5dd60a 10442
cf4a9129 10443For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:
ef5dd60a 10444
cf4a9129
LC
10445@example
10446(define-public gtk+
10447 (package
17d8e33f
ML
10448 (name "gtk+")
10449 (version "3.9.12")
10450 ...))
cf4a9129
LC
10451(define-public gtk+-2
10452 (package
17d8e33f
ML
10453 (name "gtk+")
10454 (version "2.24.20")
10455 ...))
cf4a9129
LC
10456@end example
10457If we also wanted GTK+ 3.8.2, this would be packaged as
10458@example
10459(define-public gtk+-3.8
10460 (package
17d8e33f
ML
10461 (name "gtk+")
10462 (version "3.8.2")
10463 ...))
cf4a9129 10464@end example
ef5dd60a 10465
880d647d
LC
10466@c See <https://lists.gnu.org/archive/html/guix-devel/2016-01/msg00425.html>,
10467@c for a discussion of what follows.
10468@cindex version number, for VCS snapshots
10469Occasionally, we package snapshots of upstream's version control system
10470(VCS) instead of formal releases. This should remain exceptional,
10471because it is up to upstream developers to clarify what the stable
10472release is. Yet, it is sometimes necessary. So, what should we put in
10473the @code{version} field?
10474
10475Clearly, we need to make the commit identifier of the VCS snapshot
10476visible in the version string, but we also need to make sure that the
10477version string is monotonically increasing so that @command{guix package
10478--upgrade} can determine which version is newer. Since commit
10479identifiers, notably with Git, are not monotonically increasing, we add
10480a revision number that we increase each time we upgrade to a newer
10481snapshot. The resulting version string looks like this:
10482
10483@example
104842.0.11-3.cabba9e
10485 ^ ^ ^
10486 | | `-- upstream commit ID
10487 | |
10488 | `--- Guix package revision
10489 |
10490latest upstream version
10491@end example
10492
10493It is a good idea to strip commit identifiers in the @code{version}
10494field to, say, 7 digits. It avoids an aesthetic annoyance (assuming
10495aesthetics have a role to play here) as well as problems related to OS
10496limits such as the maximum shebang length (127 bytes for the Linux
10497kernel.) It is best to use the full commit identifiers in
561360a5
LC
10498@code{origin}s, though, to avoid ambiguities. A typical package
10499definition may look like this:
10500
10501@example
10502(define my-package
10503 (let ((commit "c3f29bc928d5900971f65965feaae59e1272a3f7"))
10504 (package
10505 (version (string-append "0.9-1."
10506 (string-take commit 7)))
10507 (source (origin
10508 (method git-fetch)
10509 (uri (git-reference
10510 (url "git://example.org/my-package.git")
10511 (commit commit)))
10512 (sha256 (base32 "1mbikn@dots{}"))
10513 (file-name (string-append "my-package-" version
10514 "-checkout"))))
10515 ;; @dots{}
10516 )))
10517@end example
880d647d 10518
cbd02397
LC
10519@node Synopses and Descriptions
10520@subsection Synopses and Descriptions
10521
10522As we have seen before, each package in GNU@tie{}Guix includes a
10523synopsis and a description (@pxref{Defining Packages}). Synopses and
10524descriptions are important: They are what @command{guix package
10525--search} searches, and a crucial piece of information to help users
10526determine whether a given package suits their needs. Consequently,
10527packagers should pay attention to what goes into them.
10528
10529Synopses must start with a capital letter and must not end with a
10530period. They must not start with ``a'' or ``the'', which usually does
10531not bring anything; for instance, prefer ``File-frobbing tool'' over ``A
10532tool that frobs files''. The synopsis should say what the package
10533is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is
10534used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines
10535matching a pattern''.
10536
10537Keep in mind that the synopsis must be meaningful for a very wide
10538audience. For example, ``Manipulate alignments in the SAM format''
10539might make sense for a seasoned bioinformatics researcher, but might be
10540fairly unhelpful or even misleading to a non-specialized audience. It
10541is a good idea to come up with a synopsis that gives an idea of the
10542application domain of the package. In this example, this might give
10543something like ``Manipulate nucleotide sequence alignments'', which
10544hopefully gives the user a better idea of whether this is what they are
10545looking for.
10546
10547@cindex Texinfo markup, in package descriptions
10548Descriptions should take between five and ten lines. Use full
10549sentences, and avoid using acronyms without first introducing them.
10550Descriptions can include Texinfo markup, which is useful to introduce
10551ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or
ba7d6c76
ML
10552hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you
10553should be careful when using some characters for example @samp{@@} and
10554curly braces which are the basic special characters in Texinfo
10555(@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces
10556such as @command{guix package --show} take care of rendering it
10557appropriately.
cbd02397
LC
10558
10559Synopses and descriptions are translated by volunteers
10560@uref{http://translationproject.org/domain/guix-packages.html, at the
10561Translation Project} so that as many users as possible can read them in
10562their native language. User interfaces search them and display them in
10563the language specified by the current locale.
10564
10565Translation is a lot of work so, as a packager, please pay even more
10566attention to your synopses and descriptions as every change may entail
ba7d6c76 10567additional work for translators. In order to help them, it is possible
36743e71 10568to make recommendations or instructions visible to them by inserting
ba7d6c76
ML
10569special comments like this (@pxref{xgettext Invocation,,, gettext, GNU
10570Gettext}):
10571
10572@example
10573;; TRANSLATORS: "X11 resize-and-rotate" should not be translated.
10574(description "ARandR is designed to provide a simple visual front end
10575for the X11 resize-and-rotate (RandR) extension. @dots{}")
10576@end example
cbd02397 10577
ef5dd60a 10578
cf4a9129
LC
10579@node Python Modules
10580@subsection Python Modules
ef5dd60a 10581
cf4a9129
LC
10582We currently package Python 2 and Python 3, under the Scheme variable names
10583@code{python-2} and @code{python} as explained in @ref{Version Numbers}.
10584To avoid confusion and naming clashes with other programming languages, it
10585seems desirable that the name of a package for a Python module contains
10586the word @code{python}.
ef5dd60a 10587
cf4a9129
LC
10588Some modules are compatible with only one version of Python, others with both.
10589If the package Foo compiles only with Python 3, we name it
10590@code{python-foo}; if it compiles only with Python 2, we name it
10591@code{python2-foo}. If it is compatible with both versions, we create two
10592packages with the corresponding names.
ef5dd60a 10593
cf4a9129
LC
10594If a project already contains the word @code{python}, we drop this;
10595for instance, the module python-dateutil is packaged under the names
10596@code{python-dateutil} and @code{python2-dateutil}.
113daf62 10597
523e4896 10598
cf4a9129
LC
10599@node Perl Modules
10600@subsection Perl Modules
523e4896 10601
cf4a9129
LC
10602Perl programs standing for themselves are named as any other package,
10603using the lowercase upstream name.
10604For Perl packages containing a single class, we use the lowercase class name,
10605replace all occurrences of @code{::} by dashes and prepend the prefix
10606@code{perl-}.
10607So the class @code{XML::Parser} becomes @code{perl-xml-parser}.
10608Modules containing several classes keep their lowercase upstream name and
10609are also prepended by @code{perl-}. Such modules tend to have the word
10610@code{perl} somewhere in their name, which gets dropped in favor of the
10611prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}.
523e4896 10612
523e4896 10613
7fec52b7
AE
10614@node Fonts
10615@subsection Fonts
10616
10617For fonts that are in general not installed by a user for typesetting
10618purposes, or that are distributed as part of a larger software package,
10619we rely on the general packaging rules for software; for instance, this
10620applies to the fonts delivered as part of the X.Org system or fonts that
10621are part of TeX Live.
10622
10623To make it easier for a user to search for fonts, names for other packages
10624containing only fonts are constructed as follows, independently of the
10625upstream package name.
10626
10627The name of a package containing only one font family starts with
10628@code{font-}; it is followed by the foundry name and a dash @code{-}
10629if the foundry is known, and the font family name, in which spaces are
10630replaced by dashes (and as usual, all upper case letters are transformed
10631to lower case).
10632For example, the Gentium font family by SIL is packaged under the name
10633@code{font-sil-gentium}.
10634
10635For a package containing several font families, the name of the collection
10636is used in the place of the font family name.
10637For instance, the Liberation fonts consist of three families,
10638Liberation Sans, Liberation Serif and Liberation Mono.
10639These could be packaged separately under the names
10640@code{font-liberation-sans} and so on; but as they are distributed together
10641under a common name, we prefer to package them together as
10642@code{font-liberation}.
10643
10644In the case where several formats of the same font family or font collection
10645are packaged separately, a short form of the format, prepended by a dash,
10646is added to the package name. We use @code{-ttf} for TrueType fonts,
1b366ee4 10647@code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1
7fec52b7
AE
10648fonts.
10649
10650
b25937e3 10651
cf4a9129
LC
10652@node Bootstrapping
10653@section Bootstrapping
b25937e3 10654
cf4a9129 10655@c Adapted from the ELS 2013 paper.
b25937e3 10656
cf4a9129 10657@cindex bootstrapping
7889394e 10658
cf4a9129
LC
10659Bootstrapping in our context refers to how the distribution gets built
10660``from nothing''. Remember that the build environment of a derivation
10661contains nothing but its declared inputs (@pxref{Introduction}). So
10662there's an obvious chicken-and-egg problem: how does the first package
10663get built? How does the first compiler get compiled? Note that this is
10664a question of interest only to the curious hacker, not to the regular
10665user, so you can shamelessly skip this section if you consider yourself
10666a ``regular user''.
72b9d60d 10667
cf4a9129
LC
10668@cindex bootstrap binaries
10669The GNU system is primarily made of C code, with libc at its core. The
10670GNU build system itself assumes the availability of a Bourne shell and
10671command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and
10672`grep'. Furthermore, build programs---programs that run
10673@code{./configure}, @code{make}, etc.---are written in Guile Scheme
10674(@pxref{Derivations}). Consequently, to be able to build anything at
10675all, from scratch, Guix relies on pre-built binaries of Guile, GCC,
10676Binutils, libc, and the other packages mentioned above---the
10677@dfn{bootstrap binaries}.
72b9d60d 10678
cf4a9129
LC
10679These bootstrap binaries are ``taken for granted'', though we can also
10680re-create them if needed (more on that later).
72b9d60d 10681
cf4a9129 10682@unnumberedsubsec Preparing to Use the Bootstrap Binaries
c79d54fe 10683
cf4a9129
LC
10684@c As of Emacs 24.3, Info-mode displays the image, but since it's a
10685@c large image, it's hard to scroll. Oh well.
10686@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}
523e4896 10687
cf4a9129
LC
10688The figure above shows the very beginning of the dependency graph of the
10689distribution, corresponding to the package definitions of the @code{(gnu
d33fa0c7
LC
10690packages bootstrap)} module. A similar figure can be generated with
10691@command{guix graph} (@pxref{Invoking guix graph}), along the lines of:
10692
10693@example
10694guix graph -t derivation \
10695 -e '(@@@@ (gnu packages bootstrap) %bootstrap-gcc)' \
10696 | dot -Tps > t.ps
10697@end example
10698
10699At this level of detail, things are
cf4a9129
LC
10700slightly complex. First, Guile itself consists of an ELF executable,
10701along with many source and compiled Scheme files that are dynamically
10702loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz}
10703tarball shown in this graph. This tarball is part of Guix's ``source''
10704distribution, and gets inserted into the store with @code{add-to-store}
10705(@pxref{The Store}).
2e7b5cea 10706
cf4a9129
LC
10707But how do we write a derivation that unpacks this tarball and adds it
10708to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv}
10709derivation---the first one that gets built---uses @code{bash} as its
10710builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls
10711@code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar},
10712@file{xz}, and @file{mkdir} are statically-linked binaries, also part of
10713the Guix source distribution, whose sole purpose is to allow the Guile
10714tarball to be unpacked.
fb729425 10715
cf4a9129
LC
10716Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning
10717Guile that can be used to run subsequent build programs. Its first task
10718is to download tarballs containing the other pre-built binaries---this
10719is what the @code{.tar.xz.drv} derivations do. Guix modules such as
10720@code{ftp-client.scm} are used for this purpose. The
10721@code{module-import.drv} derivations import those modules in a directory
10722in the store, using the original layout. The
10723@code{module-import-compiled.drv} derivations compile those modules, and
10724write them in an output directory with the right layout. This
10725corresponds to the @code{#:modules} argument of
10726@code{build-expression->derivation} (@pxref{Derivations}).
fb729425 10727
cf4a9129
LC
10728Finally, the various tarballs are unpacked by the
10729derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv},
10730etc., at which point we have a working C tool chain.
fb729425 10731
fb729425 10732
cf4a9129 10733@unnumberedsubsec Building the Build Tools
523e4896 10734
cf4a9129
LC
10735Bootstrapping is complete when we have a full tool chain that does not
10736depend on the pre-built bootstrap tools discussed above. This
10737no-dependency requirement is verified by checking whether the files of
10738the final tool chain contain references to the @file{/gnu/store}
10739directories of the bootstrap inputs. The process that leads to this
10740``final'' tool chain is described by the package definitions found in
1f6f57df 10741the @code{(gnu packages commencement)} module.
df2ce343 10742
d33fa0c7
LC
10743The @command{guix graph} command allows us to ``zoom out'' compared to
10744the graph above, by looking at the level of package objects instead of
10745individual derivations---remember that a package may translate to
10746several derivations, typically one derivation to download its source,
10747one to build the Guile modules it needs, and one to actually build the
10748package from source. The command:
10749
10750@example
10751guix graph -t bag \
10752 -e '(@@@@ (gnu packages commencement)
10753 glibc-final-with-bootstrap-bash)' | dot -Tps > t.ps
10754@end example
10755
10756@noindent
10757produces the dependency graph leading to the ``final'' C
10758library@footnote{You may notice the @code{glibc-intermediate} label,
10759suggesting that it is not @emph{quite} final, but as a good
10760approximation, we will consider it final.}, depicted below.
10761
10762@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}
10763
cf4a9129
LC
10764@c See <http://lists.gnu.org/archive/html/gnu-system-discuss/2012-10/msg00000.html>.
10765The first tool that gets built with the bootstrap binaries is
d33fa0c7
LC
10766GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite
10767for all the following packages. From there Findutils and Diffutils get
10768built.
523e4896 10769
cf4a9129
LC
10770Then come the first-stage Binutils and GCC, built as pseudo cross
10771tools---i.e., with @code{--target} equal to @code{--host}. They are
10772used to build libc. Thanks to this cross-build trick, this libc is
10773guaranteed not to hold any reference to the initial tool chain.
4af2447e 10774
d33fa0c7
LC
10775From there the final Binutils and GCC (not shown above) are built.
10776GCC uses @code{ld}
cf4a9129
LC
10777from the final Binutils, and links programs against the just-built libc.
10778This tool chain is used to build the other packages used by Guix and by
10779the GNU Build System: Guile, Bash, Coreutils, etc.
4af2447e 10780
cf4a9129
LC
10781And voilà! At this point we have the complete set of build tools that
10782the GNU Build System expects. These are in the @code{%final-inputs}
dd164244
MW
10783variable of the @code{(gnu packages commencement)} module, and are
10784implicitly used by any package that uses @code{gnu-build-system}
1f6f57df 10785(@pxref{Build Systems, @code{gnu-build-system}}).
4af2447e 10786
4af2447e 10787
cf4a9129 10788@unnumberedsubsec Building the Bootstrap Binaries
4af2447e 10789
cf4a9129
LC
10790Because the final tool chain does not depend on the bootstrap binaries,
10791those rarely need to be updated. Nevertheless, it is useful to have an
10792automated way to produce them, should an update occur, and this is what
10793the @code{(gnu packages make-bootstrap)} module provides.
4af2447e 10794
cf4a9129
LC
10795The following command builds the tarballs containing the bootstrap
10796binaries (Guile, Binutils, GCC, libc, and a tarball containing a mixture
10797of Coreutils and other basic command-line tools):
4b2615e1 10798
cf4a9129
LC
10799@example
10800guix build bootstrap-tarballs
10801@end example
10802
10803The generated tarballs are those that should be referred to in the
10804@code{(gnu packages bootstrap)} module mentioned at the beginning of
10805this section.
10806
10807Still here? Then perhaps by now you've started to wonder: when do we
10808reach a fixed point? That is an interesting question! The answer is
10809unknown, but if you would like to investigate further (and have
10810significant computational and storage resources to do so), then let us
10811know.
10812
10813@node Porting
10814@section Porting to a New Platform
10815
10816As discussed above, the GNU distribution is self-contained, and
10817self-containment is achieved by relying on pre-built ``bootstrap
10818binaries'' (@pxref{Bootstrapping}). These binaries are specific to an
10819operating system kernel, CPU architecture, and application binary
10820interface (ABI). Thus, to port the distribution to a platform that is
10821not yet supported, one must build those bootstrap binaries, and update
10822the @code{(gnu packages bootstrap)} module to use them on that platform.
10823
10824Fortunately, Guix can @emph{cross compile} those bootstrap binaries.
10825When everything goes well, and assuming the GNU tool chain supports the
10826target platform, this can be as simple as running a command like this
10827one:
10828
10829@example
10830guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs
10831@end example
10832
1c0c417d
LC
10833For this to work, the @code{glibc-dynamic-linker} procedure in
10834@code{(gnu packages bootstrap)} must be augmented to return the right
10835file name for libc's dynamic linker on that platform; likewise,
10836@code{system->linux-architecture} in @code{(gnu packages linux)} must be
10837taught about the new platform.
10838
cf4a9129 10839Once these are built, the @code{(gnu packages bootstrap)} module needs
1c0c417d
LC
10840to be updated to refer to these binaries on the target platform. That
10841is, the hashes and URLs of the bootstrap tarballs for the new platform
10842must be added alongside those of the currently supported platforms. The
10843bootstrap Guile tarball is treated specially: it is expected to be
10844available locally, and @file{gnu-system.am} has rules do download it for
10845the supported architectures; a rule for the new platform must be added
10846as well.
cf4a9129
LC
10847
10848In practice, there may be some complications. First, it may be that the
10849extended GNU triplet that specifies an ABI (like the @code{eabi} suffix
10850above) is not recognized by all the GNU tools. Typically, glibc
10851recognizes some of these, whereas GCC uses an extra @code{--with-abi}
10852configure flag (see @code{gcc.scm} for examples of how to handle this).
10853Second, some of the required packages could fail to build for that
10854platform. Lastly, the generated binaries could be broken for some
10855reason.
4af2447e 10856
9bf3c1a7 10857@c *********************************************************************
8c01b9d0 10858@include contributing.texi
c78bd12b 10859
568717fd
LC
10860@c *********************************************************************
10861@node Acknowledgments
10862@chapter Acknowledgments
10863
136787cb
LC
10864Guix is based on the @uref{http://nixos.org/nix/, Nix package manager},
10865which was designed and
4c7ac9aa
LC
10866implemented by Eelco Dolstra, with contributions from other people (see
10867the @file{nix/AUTHORS} file in Guix.) Nix pioneered functional package
568717fd
LC
10868management, and promoted unprecedented features, such as transactional
10869package upgrades and rollbacks, per-user profiles, and referentially
10870transparent build processes. Without this work, Guix would not exist.
10871
10872The Nix-based software distributions, Nixpkgs and NixOS, have also been
10873an inspiration for Guix.
10874
4c7ac9aa
LC
10875GNU@tie{}Guix itself is a collective work with contributions from a
10876number of people. See the @file{AUTHORS} file in Guix for more
10877information on these fine people. The @file{THANKS} file lists people
10878who have helped by reporting bugs, taking care of the infrastructure,
10879providing artwork and themes, making suggestions, and more---thank you!
10880
10881
568717fd
LC
10882@c *********************************************************************
10883@node GNU Free Documentation License
10884@appendix GNU Free Documentation License
10885
10886@include fdl-1.3.texi
10887
10888@c *********************************************************************
10889@node Concept Index
10890@unnumbered Concept Index
10891@printindex cp
10892
a85b83d2
LC
10893@node Programming Index
10894@unnumbered Programming Index
10895@syncodeindex tp fn
10896@syncodeindex vr fn
568717fd
LC
10897@printindex fn
10898
10899@bye
10900
10901@c Local Variables:
10902@c ispell-local-dictionary: "american";
10903@c End: