gexp: Add 'with-imported-modules' macro.
[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@*
1b846da8 16Copyright @copyright{} 2015, 2016 Mathieu Lirzin@*
8c01b9d0 17Copyright @copyright{} 2014 Pierre-Antoine Rault@*
97d76250 18Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@*
4d343a14
CM
19Copyright @copyright{} 2015, 2016 Leo Famulari@*
20Copyright @copyright{} 2016 Ben Woodcroft@*
76192896
EF
21Copyright @copyright{} 2016 Chris Marusich@*
22Copyright @copyright{} 2016 Efraim Flashner
7df7a74e
NK
23
24Permission is granted to copy, distribute and/or modify this document
25under the terms of the GNU Free Documentation License, Version 1.3 or
26any later version published by the Free Software Foundation; with no
27Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
28copy of the license is included in the section entitled ``GNU Free
29Documentation License''.
30@end copying
568717fd 31
abd67856 32@dircategory System administration
568717fd 33@direntry
abd67856
LC
34* Guix: (guix). Manage installed software and system configuration.
35* guix package: (guix)Invoking guix package. Installing, removing, and upgrading packages.
36* guix build: (guix)Invoking guix build. Building packages.
37* guix gc: (guix)Invoking guix gc. Reclaiming unused disk space.
38* guix pull: (guix)Invoking guix pull. Update the list of available packages.
39* guix system: (guix)Invoking guix system. Manage the operating system configuration.
568717fd 40@end direntry
568717fd 41
372c4bbc
DT
42@dircategory Software development
43@direntry
abd67856 44* guix environment: (guix)Invoking guix environment. Building development environments with Guix.
372c4bbc
DT
45@end direntry
46
abd67856
LC
47@dircategory Emacs
48@direntry
49* Guix user interface: (guix)Emacs Interface. Package management from the comfort of Emacs.
50@end direntry
51
52
568717fd 53@titlepage
7730d112
LC
54@title GNU Guix Reference Manual
55@subtitle Using the GNU Guix Functional Package Manager
2cbed07e 56@author The GNU Guix Developers
568717fd
LC
57
58@page
59@vskip 0pt plus 1filll
60Edition @value{EDITION} @*
61@value{UPDATED} @*
62
7df7a74e 63@insertcopying
568717fd
LC
64@end titlepage
65
568717fd
LC
66@contents
67
68@c *********************************************************************
69@node Top
f8348b91 70@top GNU Guix
568717fd 71
f8348b91
LC
72This document describes GNU Guix version @value{VERSION}, a functional
73package management tool written for the GNU system.
568717fd
LC
74
75@menu
76* Introduction:: What is Guix about?
bd5e766b 77* Installation:: Installing Guix.
eeaf4427 78* Package Management:: Package installation, upgrade, etc.
c554de89 79* Emacs Interface:: Using Guix from Emacs.
568717fd
LC
80* Programming Interface:: Using Guix in Scheme.
81* Utilities:: Package management commands.
a1ba8475 82* GNU Distribution:: Software for your friendly GNU system.
9bf3c1a7 83* Contributing:: Your help needed!
568717fd
LC
84
85* Acknowledgments:: Thanks!
86* GNU Free Documentation License:: The license of this manual.
87* Concept Index:: Concepts.
a85b83d2 88* Programming Index:: Data types, functions, and variables.
aaa3eaa9
LC
89
90@detailmenu
91 --- The Detailed Node Listing ---
92
93Installation
94
1b2b8177 95* Binary Installation:: Getting Guix running in no time!
aaa3eaa9 96* Requirements:: Software needed to build and run Guix.
ec0339cd 97* Running the Test Suite:: Testing Guix.
aaa3eaa9
LC
98* Setting Up the Daemon:: Preparing the build daemon's environment.
99* Invoking guix-daemon:: Running the build daemon.
0e2d0213 100* Application Setup:: Application-specific setup.
aaa3eaa9
LC
101
102Setting Up the Daemon
103
104* Build Environment Setup:: Preparing the isolated build environment.
105* Daemon Offload Setup:: Offloading builds to remote machines.
106
107Package Management
108
109* Features:: How Guix will make your life brighter.
110* Invoking guix package:: Package installation, removal, etc.
aaa3eaa9
LC
111* Substitutes:: Downloading pre-built binaries.
112* Packages with Multiple Outputs:: Single source package, multiple outputs.
113* Invoking guix gc:: Running the garbage collector.
114* Invoking guix pull:: Fetching the latest Guix and distribution.
115* Invoking guix archive:: Exporting and importing store files.
116
c554de89
AK
117Emacs Interface
118
119* Initial Setup: Emacs Initial Setup. Preparing @file{~/.emacs}.
120* Package Management: Emacs Package Management. Managing packages and generations.
687c9bc0 121* Licenses: Emacs Licenses. Interface for licenses of Guix packages.
b5e3cbbb 122* Package Source Locations: Emacs Package Locations. Interface for package location files.
9b0afb0d 123* Popup Interface: Emacs Popup Interface. Magit-like interface for guix commands.
c554de89 124* Prettify Mode: Emacs Prettify. Abbreviating @file{/gnu/store/@dots{}} file names.
34850cd5 125* Build Log Mode: Emacs Build Log. Highlighting Guix build logs.
187f80c6
AK
126* Completions: Emacs Completions. Completing @command{guix} shell command.
127* Development: Emacs Development. Tools for Guix developers.
32950fc8 128* Hydra: Emacs Hydra. Interface for Guix build farm.
c554de89 129
aaa3eaa9
LC
130Programming Interface
131
132* Defining Packages:: Defining new packages.
133* Build Systems:: Specifying how packages are built.
134* The Store:: Manipulating the package store.
135* Derivations:: Low-level interface to package derivations.
136* The Store Monad:: Purely functional interface to the store.
137* G-Expressions:: Manipulating build expressions.
138
92492b23
LC
139Defining Packages
140
141* package Reference:: The package data type.
142* origin Reference:: The origin data type.
143
aaa3eaa9
LC
144Utilities
145
146* Invoking guix build:: Building packages from the command line.
fcc58db6 147* Invoking guix edit:: Editing package definitions.
aaa3eaa9
LC
148* Invoking guix download:: Downloading a file and printing its hash.
149* Invoking guix hash:: Computing the cryptographic hash of a file.
150* Invoking guix import:: Importing package definitions.
151* Invoking guix refresh:: Updating package definitions.
152* Invoking guix lint:: Finding errors in package definitions.
fcc58db6 153* Invoking guix size:: Profiling disk usage.
88856916 154* Invoking guix graph:: Visualizing the graph of packages.
aaa3eaa9 155* Invoking guix environment:: Setting up development environments.
aff8ce7c 156* Invoking guix publish:: Sharing substitutes.
d23c20f1 157* Invoking guix challenge:: Challenging substitute servers.
32efa254 158* Invoking guix container:: Process isolation.
aaa3eaa9 159
e3009f60
LC
160Invoking @command{guix build}
161
162* Common Build Options:: Build options for most commands.
163* Package Transformation Options:: Creating variants of packages.
164* Additional Build Options:: Options specific to 'guix build'.
165
aaa3eaa9
LC
166GNU Distribution
167
168* System Installation:: Installing the whole operating system.
35ed9306 169* System Configuration:: Configuring the operating system.
aaa3eaa9
LC
170* Installing Debugging Files:: Feeding the debugger.
171* Security Updates:: Deploying security fixes quickly.
172* Package Modules:: Packages from the programmer's viewpoint.
173* Packaging Guidelines:: Growing the distribution.
174* Bootstrapping:: GNU/Linux built from scratch.
175* Porting:: Targeting another platform or kernel.
176
e3009f60
LC
177System Installation
178
179* Limitations:: What you can expect.
180* Hardware Considerations:: Supported hardware.
181* USB Stick Installation:: Preparing the installation medium.
182* Preparing for Installation:: Networking, partitioning, etc.
183* Proceeding with the Installation:: The real thing.
184* Building the Installation Image:: How this comes to be.
185
aaa3eaa9
LC
186System Configuration
187
188* Using the Configuration System:: Customizing your GNU system.
189* operating-system Reference:: Detail of operating-system declarations.
190* File Systems:: Configuring file system mounts.
191* Mapped Devices:: Block device extra processing.
192* User Accounts:: Specifying user accounts.
598e19dc 193* Locales:: Language and cultural convention settings.
aaa3eaa9
LC
194* Services:: Specifying system services.
195* Setuid Programs:: Programs running with root privileges.
1b2b8177 196* X.509 Certificates:: Authenticating HTTPS servers.
996ed739 197* Name Service Switch:: Configuring libc's name service switch.
aaa3eaa9
LC
198* Initial RAM Disk:: Linux-Libre bootstrapping.
199* GRUB Configuration:: Configuring the boot loader.
200* Invoking guix system:: Instantiating a system configuration.
97d76250 201* Running GuixSD in a VM:: How to run GuixSD in a virtual machine.
aaa3eaa9
LC
202* Defining Services:: Adding new service definitions.
203
204Services
205
206* Base Services:: Essential system services.
c311089b 207* Scheduled Job Execution:: The mcron service.
aaa3eaa9
LC
208* Networking Services:: Network setup, SSH daemon, etc.
209* X Window:: Graphical display.
1b2b8177
LC
210* Desktop Services:: D-Bus and desktop services.
211* Database Services:: SQL databases.
d8c18af8 212* Mail Services:: IMAP, POP3, SMTP, and all that.
cbd02397 213* Web Services:: Web servers.
aa4ed923 214* Various Services:: Other services.
aaa3eaa9 215
0adfe95a
LC
216Defining Services
217
218* Service Composition:: The model for composing services.
219* Service Types and Services:: Types and services.
220* Service Reference:: API reference.
dd17bc38 221* Shepherd Services:: A particular type of service.
0adfe95a 222
aaa3eaa9
LC
223Packaging Guidelines
224
ec0339cd
LC
225* Software Freedom:: What may go into the distribution.
226* Package Naming:: What's in a name?
227* Version Numbers:: When the name is not enough.
cbd02397 228* Synopses and Descriptions:: Helping users find the right package.
ec0339cd
LC
229* Python Modules:: Taming the snake.
230* Perl Modules:: Little pearls.
e1c963bf 231* Java Packages:: Coffee break.
ec0339cd 232* Fonts:: Fond of fonts.
aaa3eaa9 233
8c01b9d0
ML
234Contributing
235
236* Building from Git:: The latest and greatest.
237* Running Guix Before It Is Installed:: Hacker tricks.
238* The Perfect Setup:: The right tools.
239* Coding Style:: Hygiene of the contributor.
240* Submitting Patches:: Share your work.
241
242Coding Style
243
244* Programming Paradigm:: How to compose your elements.
245* Modules:: Where to store your code?
246* Data Types and Pattern Matching:: Implementing data structures.
247* Formatting Code:: Writing conventions.
248
aaa3eaa9 249@end detailmenu
568717fd
LC
250@end menu
251
252@c *********************************************************************
253@node Introduction
254@chapter Introduction
255
6f773606 256@cindex purpose
c80e7e55 257GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks''
6f773606
LC
258using the international phonetic alphabet (IPA).} is a package
259management tool for the GNU system. Guix makes it easy for unprivileged
260users to install, upgrade, or remove packages, to roll back to a
261previous package set, to build packages from source, and generally
262assists with the creation and maintenance of software environments.
263
264@cindex user interfaces
265Guix provides a command-line package management interface
266(@pxref{Invoking guix package}), a set of command-line utilities
267(@pxref{Utilities}), a visual user interface in Emacs (@pxref{Emacs
268Interface}), as well as Scheme programming interfaces
269(@pxref{Programming Interface}).
270@cindex build daemon
271Its @dfn{build daemon} is responsible for building packages on behalf of
272users (@pxref{Setting Up the Daemon}) and for downloading pre-built
273binaries from authorized sources (@pxref{Substitutes}).
274
275@cindex extensibility of the distribution
276@cindex customization of packages
277Guix includes package definitions for many GNU and non-GNU packages, all
278of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the
279user's computing freedom}. It is @emph{extensible}: users can write
280their own package definitions (@pxref{Defining Packages}) and make them
281available as independent package modules (@pxref{Package Modules}). It
282is also @emph{customizable}: users can @emph{derive} specialized package
283definitions from existing ones, including from the command line
284(@pxref{Package Transformation Options}).
285
286@cindex Guix System Distribution
287@cindex GuixSD
288You can install GNU@tie{}Guix on top of an existing GNU/Linux system
289where it complements the available tools without interference
290(@pxref{Installation}), or you can use it as part of the standalone
291@dfn{Guix System Distribution} or GuixSD (@pxref{GNU Distribution}).
292With GNU@tie{}GuixSD, you @emph{declare} all aspects of the operating
293system configuration and Guix takes care of instantiating the
294configuration in a transactional, reproducible, and stateless fashion
295(@pxref{System Configuration}).
568717fd
LC
296
297@cindex functional package management
6f773606 298Under the hood, Guix implements the @dfn{functional package management}
136787cb
LC
299discipline pioneered by Nix (@pxref{Acknowledgments}).
300In Guix, the package build and installation process is seen
6f773606 301as a @emph{function}, in the mathematical sense. That function takes inputs,
4bfc4ea3
NK
302such as build scripts, a compiler, and libraries, and
303returns an installed package. As a pure function, its result depends
568717fd
LC
304solely on its inputs---for instance, it cannot refer to software or
305scripts that were not explicitly passed as inputs. A build function
4bfc4ea3 306always produces the same result when passed a given set of inputs. It
f97c9175 307cannot alter the environment of the running system in
568717fd
LC
308any way; for instance, it cannot create, modify, or delete files outside
309of its build and installation directories. This is achieved by running
e900c503 310build processes in isolated environments (or @dfn{containers}), where only their
4bfc4ea3 311explicit inputs are visible.
568717fd 312
e531ac2a 313@cindex store
568717fd 314The result of package build functions is @dfn{cached} in the file
e531ac2a 315system, in a special directory called @dfn{the store} (@pxref{The
f97c9175 316Store}). Each package is installed in a directory of its own in the
834129e0 317store---by default under @file{/gnu/store}. The directory name contains
568717fd
LC
318a hash of all the inputs used to build that package; thus, changing an
319input yields a different directory name.
320
f97c9175
AE
321This approach is the foundation for the salient features of Guix: support
322for transactional package upgrade and rollback, per-user installation, and
eeaf4427 323garbage collection of packages (@pxref{Features}).
568717fd 324
a1ba8475 325
bd5e766b
LC
326@c *********************************************************************
327@node Installation
328@chapter Installation
329
48febeb8
LC
330GNU Guix is available for download from its website at
331@url{http://www.gnu.org/software/guix/}. This section describes the
332software requirements of Guix, as well as how to install it and get
333ready to use it.
bd5e766b 334
5af6de3e
LC
335Note that this section is concerned with the installation of the package
336manager, which can be done on top of a running GNU/Linux system. If,
337instead, you want to install the complete GNU operating system,
6621cdb6 338@pxref{System Installation}.
5af6de3e 339
d23ef788
LC
340@cindex foreign distro
341When installed on a running GNU/Linux system---thereafter called a
342@dfn{foreign distro}---GNU@tie{}Guix complements the available tools
343without interference. Its data lives exclusively in two directories,
344usually @file{/gnu/store} and @file{/var/guix}; other files on your
345system, such as @file{/etc}, are left untouched.
346
bd5e766b 347@menu
09722b11 348* Binary Installation:: Getting Guix running in no time!
bd5e766b 349* Requirements:: Software needed to build and run Guix.
ec0339cd 350* Running the Test Suite:: Testing Guix.
bd5e766b
LC
351* Setting Up the Daemon:: Preparing the build daemon's environment.
352* Invoking guix-daemon:: Running the build daemon.
0e2d0213 353* Application Setup:: Application-specific setup.
bd5e766b
LC
354@end menu
355
09722b11
LC
356@node Binary Installation
357@section Binary Installation
358
359This section describes how to install Guix on an arbitrary system from a
360self-contained tarball providing binaries for Guix and for all its
361dependencies. This is often quicker than installing from source, which
362is described in the next sections. The only requirement is to have
363GNU@tie{}tar and Xz.
364
365Installing goes along these lines:
366
367@enumerate
368@item
369Download the binary tarball from
daa8922a
LC
370@indicateurl{ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz},
371where @var{system} is @code{x86_64-linux} for an @code{x86_64} machine
372already running the kernel Linux, and so on.
373
374Make sure to download the associated @file{.sig} file and to verify the
375authenticity of the tarball against it, along these lines:
376
377@example
378$ wget ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz.sig
379$ gpg --verify guix-binary-@value{VERSION}.@var{system}.tar.xz.sig
380@end example
381
f97c9175 382If that command fails because you do not have the required public key,
daa8922a
LC
383then run this command to import it:
384
385@example
b2e13aa2 386$ gpg --keyserver pgp.mit.edu --recv-keys 090B11993D9AEBB5
daa8922a
LC
387@end example
388
389@noindent
390and rerun the @code{gpg --verify} command.
09722b11
LC
391
392@item
393As @code{root}, run:
394
395@example
5dc42964 396# cd /tmp
254b1c2e
LC
397# tar --warning=no-timestamp -xf \
398 guix-binary-@value{VERSION}.@var{system}.tar.xz
5dc42964 399# mv var/guix /var/ && mv gnu /
09722b11
LC
400@end example
401
7acd3439
LC
402This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}.
403The latter contains a ready-to-use profile for @code{root} (see next
404step.)
09722b11 405
5dc3ce5f
LC
406Do @emph{not} unpack the tarball on a working Guix system since that
407would overwrite its own essential files.
408
254b1c2e 409The @code{--warning=no-timestamp} option makes sure GNU@tie{}tar does
e9ba6357
LC
410not emit warnings about ``implausibly old time stamps'' (such
411warnings were triggered by GNU@tie{}tar 1.26 and older; recent
412versions are fine.)
413They stem from the fact that all the
254b1c2e
LC
414files in the archive have their modification time set to zero (which
415means January 1st, 1970.) This is done on purpose to make sure the
416archive content is independent of its creation time, thus making it
417reproducible.
418
7acd3439
LC
419@item
420Make @code{root}'s profile available under @file{~/.guix-profile}:
421
422@example
423# ln -sf /var/guix/profiles/per-user/root/guix-profile \
424 ~root/.guix-profile
425@end example
426
43c33047
LC
427@item
428Create the group and user accounts for build users as explained below
429(@pxref{Build Environment Setup}).
430
09722b11 431@item
bf98aea9 432Run the daemon, and set it to automatically start on boot.
c8e26887 433
bf98aea9
LC
434If your host distro uses the systemd init system, this can be achieved
435with these commands:
c8e26887
GC
436
437@example
438# cp ~root/.guix-profile/lib/systemd/system/guix-daemon.service \
439 /etc/systemd/system/
440# systemctl start guix-daemon && systemctl enable guix-daemon
441@end example
442
443If your host distro uses the Upstart init system:
09722b11
LC
444
445@example
c8e26887 446# cp ~root/.guix-profile/lib/upstart/system/guix-daemon.conf /etc/init/
bf98aea9 447# start guix-daemon
09722b11
LC
448@end example
449
c8e26887
GC
450Otherwise, you can still start the daemon manually with:
451
452@example
453# ~root/.guix-profile/bin/guix-daemon --build-users-group=guixbuild
454@end example
d2825c96 455
09722b11
LC
456@item
457Make the @command{guix} command available to other users on the machine,
458for instance with:
459
460@example
461# mkdir -p /usr/local/bin
462# cd /usr/local/bin
d72d05f9 463# ln -s /var/guix/profiles/per-user/root/guix-profile/bin/guix
09722b11 464@end example
39f8ed14 465
aca738f3
LC
466It is also a good idea to make the Info version of this manual available
467there:
468
469@example
470# mkdir -p /usr/local/share/info
471# cd /usr/local/share/info
472# for i in /var/guix/profiles/per-user/root/guix-profile/share/info/* ;
473 do ln -s $i ; done
474@end example
475
476That way, assuming @file{/usr/local/share/info} is in the search path,
477running @command{info guix} will open this manual (@pxref{Other Info
478Directories,,, texinfo, GNU Texinfo}, for more details on changing the
479Info search path.)
480
39f8ed14 481@item
df061d07
LC
482To use substitutes from @code{hydra.gnu.org} or one of its mirrors
483(@pxref{Substitutes}), authorize them:
39f8ed14
LC
484
485@example
7acd3439 486# guix archive --authorize < ~root/.guix-profile/share/guix/hydra.gnu.org.pub
39f8ed14 487@end example
09722b11
LC
488@end enumerate
489
bf98aea9 490This completes root-level install of Guix. Each user will need to
c8e26887
GC
491perform additional steps to make their Guix envionment ready for use,
492@pxref{Application Setup}.
09722b11 493
c8e26887
GC
494You can confirm that Guix is working by installing a sample package into
495the root profile:
09722b11
LC
496
497@example
c8e26887 498# guix package -i hello
09722b11
LC
499@end example
500
c8e26887
GC
501The @code{guix} package must remain available in @code{root}'s profile,
502or it would become subject to garbage collection---in which case you
503would find yourself badly handicapped by the lack of the @command{guix}
bf98aea9
LC
504command. In other words, do not remove @code{guix} by running
505@code{guix package -r guix}.
506
507The binary installation tarball can be (re)produced and verified simply
508by running the following command in the Guix source tree:
509
510@example
511make guix-binary.@var{system}.tar.xz
512@end example
c8e26887 513
09722b11 514
bd5e766b
LC
515@node Requirements
516@section Requirements
517
09722b11
LC
518This section lists requirements when building Guix from source. The
519build procedure for Guix is the same as for other GNU software, and is
520not covered here. Please see the files @file{README} and @file{INSTALL}
521in the Guix source tree for additional details.
522
bd5e766b
LC
523GNU Guix depends on the following packages:
524
525@itemize
47c66da0 526@item @url{http://gnu.org/software/guile/, GNU Guile}, version 2.0.7 or later;
288dca55 527@item @url{http://gnupg.org/, GNU libgcrypt};
f0b98b84 528@item @url{http://www.gnu.org/software/make/, GNU Make}.
8a96bd4b
ID
529@end itemize
530
531The following dependencies are optional:
532
533@itemize
9b7bd1b1
LC
534@item
535Installing @uref{http://gnutls.org/, GnuTLS-Guile} will allow you to
536access @code{https} URLs for substitutes, which is highly recommended
537(@pxref{Substitutes}). It also allows you to access HTTPS URLs with the
538@command{guix download} command (@pxref{Invoking guix download}), the
539@command{guix import pypi} command, and the @command{guix import cpan}
540command. @xref{Guile Preparations, how to install the GnuTLS bindings
541for Guile,, gnutls-guile, GnuTLS-Guile}.
542
288dca55 543@item
8a96bd4b 544Installing
288dca55 545@url{http://savannah.nongnu.org/projects/guile-json/, Guile-JSON} will
2f7d2d91
LC
546allow you to use the @command{guix import pypi} command (@pxref{Invoking
547guix import}). It is of
288dca55 548interest primarily for developers and not for casual users.
bd5e766b
LC
549@end itemize
550
551Unless @code{--disable-daemon} was passed to @command{configure}, the
552following packages are also needed:
553
554@itemize
368d08f7
LC
555@item @url{http://sqlite.org, SQLite 3};
556@item @url{http://www.bzip.org, libbz2};
557@item @url{http://gcc.gnu.org, GCC's g++}, with support for the
558C++11 standard.
bd5e766b
LC
559@end itemize
560
ef5f5c86
LC
561When configuring Guix on a system that already has a Guix installation,
562be sure to specify the same state directory as the existing installation
563using the @code{--localstatedir} option of the @command{configure}
564script (@pxref{Directory Variables, @code{localstatedir},, standards,
565GNU Coding Standards}). The @command{configure} script protects against
566unintended misconfiguration of @var{localstatedir} so you do not
567inadvertently corrupt your store (@pxref{The Store}).
568
4bfc4ea3
NK
569When a working installation of @url{http://nixos.org/nix/, the Nix package
570manager} is available, you
bd5e766b 571can instead configure Guix with @code{--disable-daemon}. In that case,
4bfc4ea3 572Nix replaces the three dependencies above.
bd5e766b 573
b22a12fd
LC
574Guix is compatible with Nix, so it is possible to share the same store
575between both. To do so, you must pass @command{configure} not only the
576same @code{--with-store-dir} value, but also the same
4bfc4ea3
NK
577@code{--localstatedir} value. The latter is essential because it
578specifies where the database that stores metadata about the store is
834129e0 579located, among other things. The default values for Nix are
b22a12fd 580@code{--with-store-dir=/nix/store} and @code{--localstatedir=/nix/var}.
4bfc4ea3
NK
581Note that @code{--disable-daemon} is not required if
582your goal is to share the store with Nix.
b22a12fd 583
ec0339cd
LC
584@node Running the Test Suite
585@section Running the Test Suite
586
587After a successful @command{configure} and @code{make} run, it is a good
588idea to run the test suite. It can help catch issues with the setup or
589environment, or bugs in Guix itself---and really, reporting test
590failures is a good way to help improve the software. To run the test
591suite, type:
592
593@example
594make check
595@end example
596
597Test cases can run in parallel: you can use the @code{-j} option of
598GNU@tie{}make to speed things up. The first run may take a few minutes
599on a recent machine; subsequent runs will be faster because the store
600that is created for test purposes will already have various things in
601cache.
602
a887fd8d
LC
603It is also possible to run a subset of the tests by defining the
604@code{TESTS} makefile variable as in this example:
605
606@example
607make check TESTS="tests/store.scm tests/cpio.scm"
608@end example
609
a9edb211
ML
610By default, tests results are displayed at a file level. In order to
611see the details of every individual test cases, it is possible to define
612the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:
613
614@example
615make check TESTS="tests/base64.scm" SCM_LOG_DRIVER_FLAGS="--brief=no"
616@end example
617
ec0339cd 618Upon failure, please email @email{bug-guix@@gnu.org} and attach the
a9edb211
ML
619@file{test-suite.log} file. Please specify the Guix version being used
620as well as version numbers of the dependencies (@pxref{Requirements}) in
621your message.
ec0339cd 622
0a2f2848
LC
623Guix also comes with a whole-system test suite that tests complete
624GuixSD operating system instances. It can only run on systems where
625Guix is already installed, using:
626
627@example
628make check-system
629@end example
630
631@noindent
632or, again, by defining @code{TESTS} to select a subset of tests to run:
633
634@example
635make check-system TESTS="basic mcron"
636@end example
637
638These system tests are defined in the @code{(gnu tests @dots{})}
639modules. They work by running the operating systems under test with
640lightweight instrumentation in a virtual machine (VM). They can be
641computationally intensive or rather cheap, depending on whether
642substitutes are available for their dependencies (@pxref{Substitutes}).
643Some of them require a lot of storage space to hold VM images.
644
645Again in case of test failures, please send @email{bug-guix@@gnu.org}
646all the details.
647
bd5e766b
LC
648@node Setting Up the Daemon
649@section Setting Up the Daemon
650
651@cindex daemon
652Operations such as building a package or running the garbage collector
49e6291a 653are all performed by a specialized process, the @dfn{build daemon}, on
bd5e766b
LC
654behalf of clients. Only the daemon may access the store and its
655associated database. Thus, any operation that manipulates the store
656goes through the daemon. For instance, command-line tools such as
e49951eb 657@command{guix package} and @command{guix build} communicate with the
bd5e766b
LC
658daemon (@i{via} remote procedure calls) to instruct it what to do.
659
49e6291a 660The following sections explain how to prepare the build daemon's
f97c9175 661environment. See also @ref{Substitutes}, for information on how to allow
225dafde 662the daemon to download pre-built binaries.
49e6291a
LC
663
664@menu
665* Build Environment Setup:: Preparing the isolated build environment.
666* Daemon Offload Setup:: Offloading builds to remote machines.
667@end menu
668
669@node Build Environment Setup
670@subsection Build Environment Setup
671
bd5e766b
LC
672In a standard multi-user setup, Guix and its daemon---the
673@command{guix-daemon} program---are installed by the system
834129e0 674administrator; @file{/gnu/store} is owned by @code{root} and
bd5e766b
LC
675@command{guix-daemon} runs as @code{root}. Unprivileged users may use
676Guix tools to build packages or otherwise access the store, and the
677daemon will do it on their behalf, ensuring that the store is kept in a
678consistent state, and allowing built packages to be shared among users.
679
680@cindex build users
681When @command{guix-daemon} runs as @code{root}, you may not want package
682build processes themselves to run as @code{root} too, for obvious
683security reasons. To avoid that, a special pool of @dfn{build users}
684should be created for use by build processes started by the daemon.
685These build users need not have a shell and a home directory: they will
686just be used when the daemon drops @code{root} privileges in build
687processes. Having several such users allows the daemon to launch
688distinct build processes under separate UIDs, which guarantees that they
689do not interfere with each other---an essential feature since builds are
690regarded as pure functions (@pxref{Introduction}).
691
692On a GNU/Linux system, a build user pool may be created like this (using
693Bash syntax and the @code{shadow} commands):
694
091196b3
LC
695@c See http://lists.gnu.org/archive/html/bug-guix/2013-01/msg00239.html
696@c for why `-G' is needed.
bd5e766b 697@example
cfc149dc
LC
698# groupadd --system guixbuild
699# for i in `seq -w 1 10`;
bd5e766b 700 do
cfc149dc
LC
701 useradd -g guixbuild -G guixbuild \
702 -d /var/empty -s `which nologin` \
703 -c "Guix build user $i" --system \
704 guixbuilder$i;
bd5e766b
LC
705 done
706@end example
707
708@noindent
54eb03ab
LC
709The number of build users determines how many build jobs may run in
710parallel, as specified by the @option{--max-jobs} option
eca69fc0
LC
711(@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use
712@command{guix system vm} and related commands, you may need to add the
713build users to the @code{kvm} group so they can access @file{/dev/kvm},
714using @code{-G guixbuild,kvm} instead of @code{-G guixbuild}
715(@pxref{Invoking guix system}).
716
717The @code{guix-daemon} program may then be run as @code{root} with the
d2825c96
LC
718following command@footnote{If your machine uses the systemd init system,
719dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service}
720file in @file{/etc/systemd/system} will ensure that
ad227484
MDRS
721@command{guix-daemon} is automatically started. Similarly, if your
722machine uses the Upstart init system, drop the
723@file{@var{prefix}/lib/upstart/system/guix-daemon.conf}
724file in @file{/etc/init}.}:
bd5e766b
LC
725
726@example
cfc149dc 727# guix-daemon --build-users-group=guixbuild
bd5e766b
LC
728@end example
729
e900c503 730@cindex chroot
b095792f
LC
731@noindent
732This way, the daemon starts build processes in a chroot, under one of
cfc149dc 733the @code{guixbuilder} users. On GNU/Linux, by default, the chroot
6dc99317
LC
734environment contains nothing but:
735
736@c Keep this list in sync with libstore/build.cc! -----------------------
737@itemize
738@item
4743a4da
LC
739a minimal @code{/dev} directory, created mostly independently from the
740host @code{/dev}@footnote{``Mostly'', because while the set of files
741that appear in the chroot's @code{/dev} is fixed, most of these files
742can only be created if the host has them.};
743
744@item
f97c9175 745the @code{/proc} directory; it only shows the processes of the container
4743a4da 746since a separate PID name space is used;
6dc99317
LC
747
748@item
749@file{/etc/passwd} with an entry for the current user and an entry for
750user @file{nobody};
751
752@item
753@file{/etc/group} with an entry for the user's group;
754
755@item
756@file{/etc/hosts} with an entry that maps @code{localhost} to
757@code{127.0.0.1};
758
759@item
760a writable @file{/tmp} directory.
761@end itemize
b095792f 762
cb960102
ED
763You can influence the directory where the daemon stores build trees
764@i{via} the @code{TMPDIR} environment variable. However, the build tree
f97c9175 765within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0},
cb960102
ED
766where @var{name} is the derivation name---e.g., @code{coreutils-8.24}.
767This way, the value of @code{TMPDIR} does not leak inside build
768environments, which avoids discrepancies in cases where build processes
769capture the name of their build tree.
770
e0c941fe
LC
771@vindex http_proxy
772The daemon also honors the @code{http_proxy} environment variable for
773HTTP downloads it performs, be it for fixed-output derivations
774(@pxref{Derivations}) or for substitutes (@pxref{Substitutes}).
775
1e2644bb
LC
776If you are installing Guix as an unprivileged user, it is still possible
777to run @command{guix-daemon} provided you pass @code{--disable-chroot}.
778However, build processes will not be isolated from one another, and not
779from the rest of the system. Thus, build processes may interfere with
780each other, and may access programs, libraries, and other files
781available on the system---making it much harder to view them as
782@emph{pure} functions.
bd5e766b 783
49e6291a
LC
784
785@node Daemon Offload Setup
786@subsection Using the Offload Facility
787
788@cindex offloading
4ec2e92d
LC
789@cindex build hook
790When desired, the build daemon can @dfn{offload}
791derivation builds to other machines
49e6291a
LC
792running Guix, using the @code{offload} @dfn{build hook}. When that
793feature is enabled, a list of user-specified build machines is read from
f97c9175 794@file{/etc/guix/machines.scm}; every time a build is requested, for
49e6291a 795instance via @code{guix build}, the daemon attempts to offload it to one
f97c9175 796of the machines that satisfy the constraints of the derivation, in
49e6291a
LC
797particular its system type---e.g., @file{x86_64-linux}. Missing
798prerequisites for the build are copied over SSH to the target machine,
799which then proceeds with the build; upon success the output(s) of the
800build are copied back to the initial machine.
801
4ec2e92d 802The @file{/etc/guix/machines.scm} file typically looks like this:
49e6291a
LC
803
804@example
805(list (build-machine
806 (name "eightysix.example.org")
807 (system "x86_64-linux")
808 (user "bob")
809 (speed 2.)) ; incredibly fast!
810
811 (build-machine
812 (name "meeps.example.org")
813 (system "mips64el-linux")
814 (user "alice")
815 (private-key
816 (string-append (getenv "HOME")
c4fdfd6f 817 "/.lsh/identity-for-guix"))))
49e6291a
LC
818@end example
819
820@noindent
821In the example above we specify a list of two build machines, one for
822the @code{x86_64} architecture and one for the @code{mips64el}
4ec2e92d
LC
823architecture.
824
825In fact, this file is---not surprisingly!---a Scheme file that is
826evaluated when the @code{offload} hook is started. Its return value
827must be a list of @code{build-machine} objects. While this example
828shows a fixed list of build machines, one could imagine, say, using
829DNS-SD to return a list of potential build machines discovered in the
830local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using
c678a4ee
LC
831Avahi in Guile Scheme Programs}). The @code{build-machine} data type is
832detailed below.
4ec2e92d 833
c678a4ee 834@deftp {Data Type} build-machine
f97c9175
AE
835This data type represents build machines to which the daemon may offload
836builds. The important fields are:
49e6291a
LC
837
838@table @code
839
840@item name
f97c9175 841The host name of the remote machine.
49e6291a
LC
842
843@item system
f97c9175 844The system type of the remote machine---e.g., @code{"x86_64-linux"}.
49e6291a
LC
845
846@item user
847The user account to use when connecting to the remote machine over SSH.
848Note that the SSH key pair must @emph{not} be passphrase-protected, to
849allow non-interactive logins.
850
851@end table
852
4ec2e92d 853A number of optional fields may be specified:
49e6291a
LC
854
855@table @code
856
cecd72d5 857@item port
f97c9175 858Port number of SSH server on the machine (default: 22).
cecd72d5 859
49e6291a
LC
860@item private-key
861The SSH private key file to use when connecting to the machine.
862
c4fdfd6f
LC
863Currently offloading uses GNU@tie{}lsh as its SSH client
864(@pxref{Invoking lsh,,, GNU lsh Manual}). Thus, the key file here must
865be an lsh key file. This may change in the future, though.
866
49e6291a
LC
867@item parallel-builds
868The number of builds that may run in parallel on the machine (1 by
869default.)
870
871@item speed
872A ``relative speed factor''. The offload scheduler will tend to prefer
873machines with a higher speed factor.
874
875@item features
876A list of strings denoting specific features supported by the machine.
877An example is @code{"kvm"} for machines that have the KVM Linux modules
878and corresponding hardware support. Derivations can request features by
879name, and they will be scheduled on matching build machines.
880
881@end table
c678a4ee 882@end deftp
49e6291a
LC
883
884The @code{guix} command must be in the search path on the build
885machines, since offloading works by invoking the @code{guix archive} and
c4fdfd6f
LC
886@code{guix build} commands. In addition, the Guix modules must be in
887@code{$GUILE_LOAD_PATH} on the build machine---you can check whether
888this is the case by running:
889
890@example
74273b6f 891lsh build-machine guile -c "'(use-modules (guix config))'"
c4fdfd6f 892@end example
49e6291a 893
f97c9175 894There is one last thing to do once @file{machines.scm} is in place. As
49e6291a 895explained above, when offloading, files are transferred back and forth
c4fdfd6f
LC
896between the machine stores. For this to work, you first need to
897generate a key pair on each machine to allow the daemon to export signed
898archives of files from the store (@pxref{Invoking guix archive}):
49e6291a
LC
899
900@example
901# guix archive --generate-key
902@end example
903
904@noindent
c4fdfd6f
LC
905Each build machine must authorize the key of the master machine so that
906it accepts store items it receives from the master:
907
908@example
909# guix archive --authorize < master-public-key.txt
910@end example
911
912@noindent
913Likewise, the master machine must authorize the key of each build machine.
914
915All the fuss with keys is here to express pairwise mutual trust
916relations between the master and the build machines. Concretely, when
917the master receives files from a build machine (and @i{vice versa}), its
918build daemon can make sure they are genuine, have not been tampered
919with, and that they are signed by an authorized key.
49e6291a
LC
920
921
bd5e766b
LC
922@node Invoking guix-daemon
923@section Invoking @command{guix-daemon}
924
925The @command{guix-daemon} program implements all the functionality to
926access the store. This includes launching build processes, running the
927garbage collector, querying the availability of a build result, etc. It
928is normally run as @code{root} like this:
929
930@example
cfc149dc 931# guix-daemon --build-users-group=guixbuild
bd5e766b
LC
932@end example
933
934@noindent
081145cf 935For details on how to set it up, @pxref{Setting Up the Daemon}.
bd5e766b 936
e900c503
LC
937@cindex chroot
938@cindex container, build environment
939@cindex build environment
940@cindex reproducible builds
bd5e766b
LC
941By default, @command{guix-daemon} launches build processes under
942different UIDs, taken from the build group specified with
943@code{--build-users-group}. In addition, each build process is run in a
944chroot environment that only contains the subset of the store that the
945build process depends on, as specified by its derivation
946(@pxref{Programming Interface, derivation}), plus a set of specific
947system directories. By default, the latter contains @file{/dev} and
e900c503
LC
948@file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a
949@dfn{container}: in addition to having its own file system tree, it has
950a separate mount name space, its own PID name space, network name space,
951etc. This helps achieve reproducible builds (@pxref{Features}).
bd5e766b 952
cbc538fe
LC
953When the daemon performs a build on behalf of the user, it creates a
954build directory under @file{/tmp} or under the directory specified by
955its @code{TMPDIR} environment variable; this directory is shared with
956the container for the duration of the build. Be aware that using a
957directory other than @file{/tmp} can affect build results---for example,
958with a longer directory name, a build process that uses Unix-domain
959sockets might hit the name length limitation for @code{sun_path}, which
960it would otherwise not hit.
961
962The build directory is automatically deleted upon completion, unless the
963build failed and the client specified @option{--keep-failed}
964(@pxref{Invoking guix build, @option{--keep-failed}}).
965
bd5e766b
LC
966The following command-line options are supported:
967
968@table @code
969@item --build-users-group=@var{group}
970Take users from @var{group} to run build processes (@pxref{Setting Up
971the Daemon, build users}).
972
6858f9d1 973@item --no-substitutes
b5385b52 974@cindex substitutes
6858f9d1 975Do not use substitutes for build products. That is, always build things
c4202d60
LC
976locally instead of allowing downloads of pre-built binaries
977(@pxref{Substitutes}).
6858f9d1 978
b5385b52
LC
979By default substitutes are used, unless the client---such as the
980@command{guix package} command---is explicitly invoked with
981@code{--no-substitutes}.
982
983When the daemon runs with @code{--no-substitutes}, clients can still
984explicitly enable substitution @i{via} the @code{set-build-options}
985remote procedure call (@pxref{The Store}).
986
9176607e 987@item --substitute-urls=@var{urls}
f8a8e0fe 988@anchor{daemon-substitute-urls}
9176607e 989Consider @var{urls} the default whitespace-separated list of substitute
df061d07
LC
990source URLs. When this option is omitted,
991@indicateurl{https://mirror.hydra.gnu.org https://hydra.gnu.org} is used
992(@code{mirror.hydra.gnu.org} is a mirror of @code{hydra.gnu.org}).
9176607e
LC
993
994This means that substitutes may be downloaded from @var{urls}, as long
995as they are signed by a trusted signature (@pxref{Substitutes}).
996
4ec2e92d
LC
997@cindex build hook
998@item --no-build-hook
999Do not use the @dfn{build hook}.
1000
1001The build hook is a helper program that the daemon can start and to
1002which it submits build requests. This mechanism is used to offload
1003builds to other machines (@pxref{Daemon Offload Setup}).
1004
bd5e766b
LC
1005@item --cache-failures
1006Cache build failures. By default, only successful builds are cached.
1007
30d9aa54
LC
1008When this option is used, @command{guix gc --list-failures} can be used
1009to query the set of store items marked as failed; @command{guix gc
1010--clear-failures} removes store items from the set of cached failures.
1011@xref{Invoking guix gc}.
1012
bd5e766b
LC
1013@item --cores=@var{n}
1014@itemx -c @var{n}
1015Use @var{n} CPU cores to build each derivation; @code{0} means as many
1016as available.
1017
6efc160e 1018The default value is @code{0}, but it may be overridden by clients, such
e49951eb
MW
1019as the @code{--cores} option of @command{guix build} (@pxref{Invoking
1020guix build}).
bd5e766b
LC
1021
1022The effect is to define the @code{NIX_BUILD_CORES} environment variable
1023in the build process, which can then use it to exploit internal
1024parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}.
1025
1026@item --max-jobs=@var{n}
1027@itemx -M @var{n}
1028Allow at most @var{n} build jobs in parallel. The default value is
f6526eb3
LC
1029@code{1}. Setting it to @code{0} means that no builds will be performed
1030locally; instead, the daemon will offload builds (@pxref{Daemon Offload
1031Setup}), or simply fail.
bd5e766b 1032
ecf84b7c
LC
1033@item --rounds=@var{N}
1034Build each derivation @var{n} times in a row, and raise an error if
1035consecutive build results are not bit-for-bit identical. Note that this
1036setting can be overridden by clients such as @command{guix build}
1037(@pxref{Invoking guix build}).
1038
b4528110
ED
1039When used in conjunction with @option{--keep-failed}, the differing
1040output is kept in the store, under @file{/gnu/store/@dots{}-check}.
1041This makes it easy to look for differences between the two results.
1042
bd5e766b
LC
1043@item --debug
1044Produce debugging output.
1045
1046This is useful to debug daemon start-up issues, but then it may be
1047overridden by clients, for example the @code{--verbosity} option of
e49951eb 1048@command{guix build} (@pxref{Invoking guix build}).
bd5e766b
LC
1049
1050@item --chroot-directory=@var{dir}
1051Add @var{dir} to the build chroot.
1052
1053Doing this may change the result of build processes---for instance if
1054they use optional dependencies found in @var{dir} when it is available,
1055and not otherwise. For that reason, it is not recommended to do so.
1056Instead, make sure that each derivation declares all the inputs that it
1057needs.
1058
1059@item --disable-chroot
1060Disable chroot builds.
1061
1062Using this option is not recommended since, again, it would allow build
1e2644bb
LC
1063processes to gain access to undeclared dependencies. It is necessary,
1064though, when @command{guix-daemon} is running under an unprivileged user
1065account.
bd5e766b
LC
1066
1067@item --disable-log-compression
1068Disable compression of the build logs.
1069
1da983b9
LC
1070Unless @code{--lose-logs} is used, all the build logs are kept in the
1071@var{localstatedir}. To save space, the daemon automatically compresses
1072them with bzip2 by default. This option disables that.
1073
ab3893d7
LC
1074@item --disable-deduplication
1075@cindex deduplication
bd5e766b
LC
1076Disable automatic file ``deduplication'' in the store.
1077
1da983b9 1078By default, files added to the store are automatically ``deduplicated'':
ab3893d7
LC
1079if a newly added file is identical to another one found in the store,
1080the daemon makes the new file a hard link to the other file. This can
4988dd40 1081noticeably reduce disk usage, at the expense of slightly increased
ab3893d7
LC
1082input/output load at the end of a build process. This option disables
1083this optimization.
1da983b9 1084
6e37066e
LC
1085@item --gc-keep-outputs[=yes|no]
1086Tell whether the garbage collector (GC) must keep outputs of live
1087derivations.
1088
1089When set to ``yes'', the GC will keep the outputs of any live derivation
1090available in the store---the @code{.drv} files. The default is ``no'',
1091meaning that derivation outputs are kept only if they are GC roots.
1092
1093@item --gc-keep-derivations[=yes|no]
1094Tell whether the garbage collector (GC) must keep derivations
1095corresponding to live outputs.
1096
1097When set to ``yes'', as is the case by default, the GC keeps
1098derivations---i.e., @code{.drv} files---as long as at least one of their
1099outputs is live. This allows users to keep track of the origins of
1100items in their store. Setting it to ``no'' saves a bit of disk space.
1101
1102Note that when both @code{--gc-keep-derivations} and
1103@code{--gc-keep-outputs} are used, the effect is to keep all the build
1104prerequisites (the sources, compiler, libraries, and other build-time
1105tools) of live objects in the store, regardless of whether these
1106prerequisites are live. This is convenient for developers since it
1107saves rebuilds or downloads.
1108
bd5e766b
LC
1109@item --impersonate-linux-2.6
1110On Linux-based systems, impersonate Linux 2.6. This means that the
1111kernel's @code{uname} system call will report 2.6 as the release number.
1112
1113This might be helpful to build programs that (usually wrongfully) depend
1114on the kernel version number.
1115
1116@item --lose-logs
1117Do not keep build logs. By default they are kept under
ce33631f 1118@code{@var{localstatedir}/guix/log}.
bd5e766b
LC
1119
1120@item --system=@var{system}
1121Assume @var{system} as the current system type. By default it is the
1122architecture/kernel pair found at configure time, such as
1123@code{x86_64-linux}.
b8d2aa26
LC
1124
1125@item --listen=@var{socket}
1126Listen for connections on @var{socket}, the file name of a Unix-domain
1127socket. The default socket is
1128@file{@var{localstatedir}/daemon-socket/socket}. This option is only
1129useful in exceptional circumstances, such as if you need to run several
1130daemons on the same machine.
bd5e766b
LC
1131@end table
1132
1133
0e2d0213
LC
1134@node Application Setup
1135@section Application Setup
1136
d23ef788 1137@cindex foreign distro
85e57214
LC
1138When using Guix on top of GNU/Linux distribution other than GuixSD---a
1139so-called @dfn{foreign distro}---a few additional steps are needed to
1140get everything in place. Here are some of them.
0e2d0213
LC
1141
1142@subsection Locales
1143
5c3c1427 1144@anchor{locales-and-locpath}
0e2d0213 1145@cindex locales, when not on GuixSD
5c3c1427 1146@vindex LOCPATH
85e57214 1147@vindex GUIX_LOCPATH
f97c9175
AE
1148Packages installed @i{via} Guix will not use the locale data of the
1149host system. Instead, you must first install one of the locale packages
85e57214
LC
1150available with Guix and then define the @code{GUIX_LOCPATH} environment
1151variable:
0e2d0213
LC
1152
1153@example
1154$ guix package -i glibc-locales
85e57214 1155$ export GUIX_LOCPATH=$HOME/.guix-profile/lib/locale
0e2d0213
LC
1156@end example
1157
1158Note that the @code{glibc-locales} package contains data for all the
1159locales supported by the GNU@tie{}libc and weighs in at around
f97c9175 1160110@tie{}MiB. Alternatively, the @code{glibc-utf8-locales} is smaller but
0e2d0213
LC
1161limited to a few UTF-8 locales.
1162
85e57214
LC
1163The @code{GUIX_LOCPATH} variable plays a role similar to @code{LOCPATH}
1164(@pxref{Locale Names, @code{LOCPATH},, libc, The GNU C Library Reference
1165Manual}). There are two important differences though:
1166
1167@enumerate
1168@item
f97c9175 1169@code{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc
85e57214 1170provided by foreign distros. Thus, using @code{GUIX_LOCPATH} allows you
f97c9175 1171to make sure the programs of the foreign distro will not end up loading
85e57214
LC
1172incompatible locale data.
1173
1174@item
1175libc suffixes each entry of @code{GUIX_LOCPATH} with @code{/X.Y}, where
1176@code{X.Y} is the libc version---e.g., @code{2.22}. This means that,
1177should your Guix profile contain a mixture of programs linked against
1178different libc version, each libc version will only try to load locale
1179data in the right format.
1180@end enumerate
1181
1182This is important because the locale data format used by different libc
1183versions may be incompatible.
1184
0e2d0213
LC
1185@subsection X11 Fonts
1186
4988dd40 1187The majority of graphical applications use Fontconfig to locate and
f97c9175
AE
1188load fonts and perform X11-client-side rendering. The @code{fontconfig}
1189package in Guix looks for fonts in @file{$HOME/.guix-profile}
0e2d0213 1190by default. Thus, to allow graphical applications installed with Guix
f97c9175 1191to display fonts, you have to install fonts with Guix as well.
0e2d0213 1192Essential font packages include @code{gs-fonts}, @code{font-dejavu}, and
8fe5b1d1 1193@code{font-gnu-freefont-ttf}.
0e2d0213 1194
5c36edc8
LC
1195To display text written in Chinese languages, Japanese, or Korean in
1196graphical applications, consider installing
1197@code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former
1198has multiple outputs, one per language family (@pxref{Packages with
1199Multiple Outputs}). For instance, the following command installs fonts
1200for Chinese languages:
1201
1202@example
1203guix package -i font-adobe-source-han-sans:cn
1204@end example
1205
b3129f2b
LC
1206@subsection X.509 Certificates
1207
1208The @code{nss-certs} package provides X.509 certificates, which allow
1209programs to authenticate Web servers accessed over HTTPS.
1210
1211When using Guix on a foreign distro, you can install this package and
1212define the relevant environment variables so that packages know where to
1213look for certificates. @pxref{X.509 Certificates}, for detailed
1214information.
1215
6d97319c
AK
1216@subsection Emacs Packages
1217
1218When you install Emacs packages with Guix, the elisp files may be placed
1219either in @file{$HOME/.guix-profile/share/emacs/site-lisp/} or in
1220sub-directories of
1221@file{$HOME/.guix-profile/share/emacs/site-lisp/guix.d/}. The latter
1222directory exists because potentially there may exist thousands of Emacs
1223packages and storing all their files in a single directory may be not
1224reliable (because of name conflicts). So we think using a separate
1225directory for each package is a good idea. It is very similar to how
1226the Emacs package system organizes the file structure (@pxref{Package
1227Files,,, emacs, The GNU Emacs Manual}).
1228
1229By default, Emacs (installed with Guix) ``knows'' where these packages
f97c9175 1230are placed, so you do not need to perform any configuration. If, for
6d97319c 1231some reason, you want to avoid auto-loading Emacs packages installed
f97c9175 1232with Guix, you can do so by running Emacs with @code{--no-site-file}
6d97319c
AK
1233option (@pxref{Init File,,, emacs, The GNU Emacs Manual}).
1234
0e2d0213
LC
1235@c TODO What else?
1236
eeaf4427
LC
1237@c *********************************************************************
1238@node Package Management
1239@chapter Package Management
1240
f8348b91 1241The purpose of GNU Guix is to allow users to easily install, upgrade, and
eeaf4427 1242remove software packages, without having to know about their build
f97c9175 1243procedures or dependencies. Guix also goes beyond this obvious set of
eeaf4427
LC
1244features.
1245
1246This chapter describes the main features of Guix, as well as the package
c1941588 1247management tools it provides. Two user interfaces are provided for
c554de89
AK
1248routine package management tasks: A command-line interface described below
1249(@pxref{Invoking guix package, @code{guix package}}), as well as a visual user
1250interface in Emacs described in a subsequent chapter (@pxref{Emacs Interface}).
eeaf4427
LC
1251
1252@menu
1253* Features:: How Guix will make your life brighter.
e49951eb 1254* Invoking guix package:: Package installation, removal, etc.
c4202d60 1255* Substitutes:: Downloading pre-built binaries.
760c60d6 1256* Packages with Multiple Outputs:: Single source package, multiple outputs.
e49951eb 1257* Invoking guix gc:: Running the garbage collector.
f651b477 1258* Invoking guix pull:: Fetching the latest Guix and distribution.
760c60d6 1259* Invoking guix archive:: Exporting and importing store files.
eeaf4427
LC
1260@end menu
1261
1262@node Features
1263@section Features
1264
1265When using Guix, each package ends up in the @dfn{package store}, in its
1266own directory---something that resembles
9a130e19
AK
1267@file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string
1268(note that Guix comes with an Emacs extension to shorten those file
081145cf 1269names, @pxref{Emacs Prettify}.)
eeaf4427
LC
1270
1271Instead of referring to these directories, users have their own
1272@dfn{profile}, which points to the packages that they actually want to
821b0015
LC
1273use. These profiles are stored within each user's home directory, at
1274@code{$HOME/.guix-profile}.
eeaf4427 1275
821b0015 1276For example, @code{alice} installs GCC 4.7.2. As a result,
eeaf4427 1277@file{/home/alice/.guix-profile/bin/gcc} points to
834129e0 1278@file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine,
821b0015
LC
1279@code{bob} had already installed GCC 4.8.0. The profile of @code{bob}
1280simply continues to point to
834129e0 1281@file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC
821b0015 1282coexist on the same system without any interference.
eeaf4427 1283
e49951eb 1284The @command{guix package} command is the central tool to manage
f97c9175 1285packages (@pxref{Invoking guix package}). It operates on the per-user
821b0015 1286profiles, and can be used @emph{with normal user privileges}.
eeaf4427
LC
1287
1288The command provides the obvious install, remove, and upgrade
1289operations. Each invocation is actually a @emph{transaction}: either
ba55b1cb 1290the specified operation succeeds, or nothing happens. Thus, if the
e49951eb 1291@command{guix package} process is terminated during the transaction,
eeaf4427
LC
1292or if a power outage occurs during the transaction, then the user's
1293profile remains in its previous state, and remains usable.
1294
1295In addition, any package transaction may be @emph{rolled back}. So, if,
1296for example, an upgrade installs a new version of a package that turns
1297out to have a serious bug, users may roll back to the previous instance
4af2447e 1298of their profile, which was known to work well. Similarly, the global
6f773606
LC
1299system configuration on GuixSD is subject to
1300transactional upgrades and roll-back
4af2447e 1301(@pxref{Using the Configuration System}).
eeaf4427 1302
f97c9175
AE
1303All packages in the package store may be @emph{garbage-collected}.
1304Guix can determine which packages are still referenced by user
fe8ff028 1305profiles, and remove those that are provably no longer referenced
e49951eb 1306(@pxref{Invoking guix gc}). Users may also explicitly remove old
fe8ff028
LC
1307generations of their profile so that the packages they refer to can be
1308collected.
eeaf4427 1309
e900c503
LC
1310@cindex reproducibility
1311@cindex reproducible builds
eeaf4427
LC
1312Finally, Guix takes a @dfn{purely functional} approach to package
1313management, as described in the introduction (@pxref{Introduction}).
834129e0 1314Each @file{/gnu/store} package directory name contains a hash of all the
eeaf4427
LC
1315inputs that were used to build that package---compiler, libraries, build
1316scripts, etc. This direct correspondence allows users to make sure a
1317given package installation matches the current state of their
e900c503
LC
1318distribution. It also helps maximize @dfn{build reproducibility}:
1319thanks to the isolated build environments that are used, a given build
1320is likely to yield bit-identical files when performed on different
1321machines (@pxref{Invoking guix-daemon, container}).
eeaf4427 1322
c4202d60 1323@cindex substitutes
eeaf4427 1324This foundation allows Guix to support @dfn{transparent binary/source
c4202d60 1325deployment}. When a pre-built binary for a @file{/gnu/store} item is
18f2887b 1326available from an external source---a @dfn{substitute}, Guix just
c4202d60
LC
1327downloads it and unpacks it;
1328otherwise, it builds the package from source, locally
bf9eacd2
LC
1329(@pxref{Substitutes}). Because build results are usually bit-for-bit
1330reproducible, users do not have to trust servers that provide
1331substitutes: they can force a local build and @emph{challenge} providers
1332(@pxref{Invoking guix challenge}).
eeaf4427 1333
f5fd4fd2
LC
1334Control over the build environment is a feature that is also useful for
1335developers. The @command{guix environment} command allows developers of
1336a package to quickly set up the right development environment for their
f97c9175
AE
1337package, without having to manually install the dependencies of the
1338package into their profile (@pxref{Invoking guix environment}).
f5fd4fd2 1339
e49951eb
MW
1340@node Invoking guix package
1341@section Invoking @command{guix package}
eeaf4427 1342
e49951eb 1343The @command{guix package} command is the tool that allows users to
eeaf4427
LC
1344install, upgrade, and remove packages, as well as rolling back to
1345previous configurations. It operates only on the user's own profile,
1346and works with normal user privileges (@pxref{Features}). Its syntax
1347is:
1348
1349@example
e49951eb 1350guix package @var{options}
eeaf4427
LC
1351@end example
1352
ba55b1cb 1353Primarily, @var{options} specifies the operations to be performed during
eeaf4427 1354the transaction. Upon completion, a new profile is created, but
99bd74d5 1355previous @dfn{generations} of the profile remain available, should the user
eeaf4427
LC
1356want to roll back.
1357
6447738c
MW
1358For example, to remove @code{lua} and install @code{guile} and
1359@code{guile-cairo} in a single transaction:
1360
1361@example
1362guix package -r lua -i guile guile-cairo
1363@end example
1364
99bd74d5
LC
1365@command{guix package} also supports a @dfn{declarative approach}
1366whereby the user specifies the exact set of packages to be available and
1367passes it @i{via} the @option{--manifest} option
1368(@pxref{profile-manifest, @option{--manifest}}).
1369
b9e5c0a9 1370For each user, a symlink to the user's default profile is automatically
0ec1af59 1371created in @file{$HOME/.guix-profile}. This symlink always points to the
b9e5c0a9
LC
1372current generation of the user's default profile. Thus, users can add
1373@file{$HOME/.guix-profile/bin} to their @code{PATH} environment
1374variable, and so on.
d664f1b4
LC
1375@cindex search paths
1376If you are not using the Guix System Distribution, consider adding the
1377following lines to your @file{~/.bash_profile} (@pxref{Bash Startup
1378Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned
1379shells get all the right environment variable definitions:
1380
1381@example
1382GUIX_PROFILE="$HOME/.guix-profile" \
1383source "$HOME/.guix-profile/etc/profile"
1384@end example
b9e5c0a9 1385
4379c35b
LC
1386In a multi-user setup, user profiles are stored in a place registered as
1387a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points
1388to (@pxref{Invoking guix gc}). That directory is normally
0ec1af59
LC
1389@code{@var{localstatedir}/profiles/per-user/@var{user}}, where
1390@var{localstatedir} is the value passed to @code{configure} as
4379c35b
LC
1391@code{--localstatedir}, and @var{user} is the user name. The
1392@file{per-user} directory is created when @command{guix-daemon} is
1393started, and the @var{user} sub-directory is created by @command{guix
1394package}.
0ec1af59
LC
1395
1396The @var{options} can be among the following:
1397
eeaf4427
LC
1398@table @code
1399
6447738c
MW
1400@item --install=@var{package} @dots{}
1401@itemx -i @var{package} @dots{}
1402Install the specified @var{package}s.
eeaf4427 1403
6447738c 1404Each @var{package} may specify either a simple package name, such as
1b846da8
ML
1405@code{guile}, or a package name followed by an at-sign and version number,
1406such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter
724311a2
LC
1407case, the newest version prefixed by @code{1.8} is selected.)
1408
1409If no version number is specified, the
dc5669cd
MW
1410newest available version will be selected. In addition, @var{package}
1411may contain a colon, followed by the name of one of the outputs of the
1b846da8 1412package, as in @code{gcc:doc} or @code{binutils@@2.22:lib}
e7f34eb0
LC
1413(@pxref{Packages with Multiple Outputs}). Packages with a corresponding
1414name (and optionally version) are searched for among the GNU
1415distribution modules (@pxref{Package Modules}).
eeaf4427 1416
461572cc
LC
1417@cindex propagated inputs
1418Sometimes packages have @dfn{propagated inputs}: these are dependencies
21461f27
LC
1419that automatically get installed along with the required package
1420(@pxref{package-propagated-inputs, @code{propagated-inputs} in
1421@code{package} objects}, for information about propagated inputs in
1422package definitions).
461572cc 1423
21461f27 1424@anchor{package-cmd-propagated-inputs}
461572cc
LC
1425An example is the GNU MPC library: its C header files refer to those of
1426the GNU MPFR library, which in turn refer to those of the GMP library.
1427Thus, when installing MPC, the MPFR and GMP libraries also get installed
1428in the profile; removing MPC also removes MPFR and GMP---unless they had
f97c9175 1429also been explicitly installed by the user.
461572cc 1430
ba7ea5ce 1431Besides, packages sometimes rely on the definition of environment
5924080d 1432variables for their search paths (see explanation of
ba7ea5ce 1433@code{--search-paths} below). Any missing or possibly incorrect
5924080d
LC
1434environment variable definitions are reported here.
1435
5d4b411f
LC
1436@item --install-from-expression=@var{exp}
1437@itemx -e @var{exp}
1438Install the package @var{exp} evaluates to.
1439
1440@var{exp} must be a Scheme expression that evaluates to a
1441@code{<package>} object. This option is notably useful to disambiguate
1442between same-named variants of a package, with expressions such as
1443@code{(@@ (gnu packages base) guile-final)}.
1444
1445Note that this option installs the first output of the specified
1446package, which may be insufficient when needing a specific output of a
1447multiple-output package.
1448
0d279400
DT
1449@item --install-from-file=@var{file}
1450@itemx -f @var{file}
1451Install the package that the code within @var{file} evaluates to.
1452
1453As an example, @var{file} might contain a definition like this
1454(@pxref{Defining Packages}):
1455
1456@example
1457@verbatiminclude package-hello.scm
1458@end example
1459
baacf042 1460Developers may find it useful to include such a @file{guix.scm} file
f97c9175 1461in the root of their project source tree that can be used to test
0d279400
DT
1462development snapshots and create reproducible development environments
1463(@pxref{Invoking guix environment}).
1464
6447738c
MW
1465@item --remove=@var{package} @dots{}
1466@itemx -r @var{package} @dots{}
1467Remove the specified @var{package}s.
eeaf4427 1468
6447738c 1469As for @code{--install}, each @var{package} may specify a version number
13ed095c
LC
1470and/or output name in addition to the package name. For instance,
1471@code{-r glibc:debug} would remove the @code{debug} output of
1472@code{glibc}.
1473
6447738c
MW
1474@item --upgrade[=@var{regexp} @dots{}]
1475@itemx -u [@var{regexp} @dots{}]
1476Upgrade all the installed packages. If one or more @var{regexp}s are
1477specified, upgrade only installed packages whose name matches a
d5f01e48 1478@var{regexp}. Also see the @code{--do-not-upgrade} option below.
eeaf4427 1479
f651b477
LC
1480Note that this upgrades package to the latest version of packages found
1481in the distribution currently installed. To update your distribution,
1482you should regularly run @command{guix pull} (@pxref{Invoking guix
1483pull}).
1484
d5f01e48
MW
1485@item --do-not-upgrade[=@var{regexp} @dots{}]
1486When used together with the @code{--upgrade} option, do @emph{not}
1487upgrade any packages whose name matches a @var{regexp}. For example, to
1488upgrade all packages in the current profile except those containing the
1489substring ``emacs'':
1490
1491@example
1492$ guix package --upgrade . --do-not-upgrade emacs
1493@end example
1494
99bd74d5 1495@item @anchor{profile-manifest}--manifest=@var{file}
1b676447 1496@itemx -m @var{file}
99bd74d5
LC
1497@cindex profile declaration
1498@cindex profile manifest
1499Create a new generation of the profile from the manifest object
1b676447
DT
1500returned by the Scheme code in @var{file}.
1501
99bd74d5
LC
1502This allows you to @emph{declare} the profile's contents rather than
1503constructing it through a sequence of @code{--install} and similar
1504commands. The advantage is that @var{file} can be put under version
1505control, copied to different machines to reproduce the same profile, and
1506so on.
1507
1508@c FIXME: Add reference to (guix profile) documentation when available.
1509@var{file} must return a @dfn{manifest} object, which is roughly a list
1510of packages:
1b676447 1511
99bd74d5 1512@findex packages->manifest
1b676447 1513@example
99bd74d5 1514(use-package-modules guile emacs)
1b676447
DT
1515
1516(packages->manifest
99bd74d5
LC
1517 (list emacs
1518 guile-2.0
1b676447 1519 ;; Use a specific package output.
99bd74d5 1520 (list guile-2.0 "debug")))
1b676447
DT
1521@end example
1522
24e262f0
LC
1523@item --roll-back
1524Roll back to the previous @dfn{generation} of the profile---i.e., undo
1525the last transaction.
1526
1527When combined with options such as @code{--install}, roll back occurs
1528before any other actions.
1529
d9307267 1530When rolling back from the first generation that actually contains
4b2bc804 1531installed packages, the profile is made to point to the @dfn{zeroth
f97c9175 1532generation}, which contains no files apart from its own metadata.
d9307267 1533
f97c9175
AE
1534After having rolled back, installing, removing, or upgrading packages
1535overwrites previous future generations. Thus, the history of the
1536generations in a profile is always linear.
82fe08ed 1537
b3bb82f1
AK
1538@item --switch-generation=@var{pattern}
1539@itemx -S @var{pattern}
1540Switch to a particular generation defined by @var{pattern}.
1541
1542@var{pattern} may be either a generation number or a number prefixed
1543with ``+'' or ``-''. The latter means: move forward/backward by a
1544specified number of generations. For example, if you want to return to
1545the latest generation after @code{--roll-back}, use
1546@code{--switch-generation=+1}.
1547
1548The difference between @code{--roll-back} and
1549@code{--switch-generation=-1} is that @code{--switch-generation} will
1550not make a zeroth generation, so if a specified generation does not
1551exist, the current generation will not be changed.
1552
dbc31ab2 1553@item --search-paths[=@var{kind}]
5924080d
LC
1554@cindex search paths
1555Report environment variable definitions, in Bash syntax, that may be
1556needed in order to use the set of installed packages. These environment
1557variables are used to specify @dfn{search paths} for files used by some
1558of the installed packages.
1559
1560For example, GCC needs the @code{CPATH} and @code{LIBRARY_PATH}
1561environment variables to be defined so it can look for headers and
1562libraries in the user's profile (@pxref{Environment Variables,,, gcc,
1563Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C
1564library are installed in the profile, then @code{--search-paths} will
1565suggest setting these variables to @code{@var{profile}/include} and
1566@code{@var{profile}/lib}, respectively.
1567
dbc31ab2
LC
1568The typical use case is to define these environment variables in the
1569shell:
1570
1571@example
1572$ eval `guix package --search-paths`
1573@end example
1574
1575@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix},
1576meaning that the returned environment variable definitions will either
1577be exact settings, or prefixes or suffixes of the current value of these
1578variables. When omitted, @var{kind} defaults to @code{exact}.
1579
fc2d2339
LC
1580This option can also be used to compute the @emph{combined} search paths
1581of several profiles. Consider this example:
1582
1583@example
1584$ guix package -p foo -i guile
1585$ guix package -p bar -i guile-json
1586$ guix package -p foo -p bar --search-paths
1587@end example
1588
1589The last command above reports about the @code{GUILE_LOAD_PATH}
1590variable, even though, taken individually, neither @file{foo} nor
1591@file{bar} would lead to that recommendation.
1592
1593
eeaf4427
LC
1594@item --profile=@var{profile}
1595@itemx -p @var{profile}
1596Use @var{profile} instead of the user's default profile.
1597
70915c1a 1598@item --verbose
f97c9175
AE
1599Produce verbose output. In particular, emit the build log of the
1600environment on the standard error port.
70915c1a 1601
eeaf4427
LC
1602@item --bootstrap
1603Use the bootstrap Guile to build the profile. This option is only
1604useful to distribution developers.
1605
1606@end table
1607
f97c9175 1608In addition to these actions, @command{guix package} supports the
733b4130
LC
1609following options to query the current state of a profile, or the
1610availability of packages:
eeaf4427 1611
733b4130
LC
1612@table @option
1613
acc08466
NK
1614@item --search=@var{regexp}
1615@itemx -s @var{regexp}
b110869d 1616@cindex searching for packages
5763ad92 1617List the available packages whose name, synopsis, or description matches
f97c9175 1618@var{regexp}. Print all the metadata of matching packages in
299112d3
LC
1619@code{recutils} format (@pxref{Top, GNU recutils databases,, recutils,
1620GNU recutils manual}).
acc08466 1621
299112d3
LC
1622This allows specific fields to be extracted using the @command{recsel}
1623command, for instance:
1624
1625@example
e49951eb 1626$ guix package -s malloc | recsel -p name,version
299112d3
LC
1627name: glibc
1628version: 2.17
1629
1630name: libgc
1631version: 7.2alpha6
1632@end example
acc08466 1633
a12d92f5
LC
1634Similarly, to show the name of all the packages available under the
1635terms of the GNU@tie{}LGPL version 3:
1636
1637@example
1638$ guix package -s "" | recsel -p name -e 'license ~ "LGPL 3"'
1639name: elfutils
1640
1641name: gmp
1642@dots{}
1643@end example
1644
db5a9444
LC
1645It is also possible to refine search results using several @code{-s}
1646flags. For example, the following command returns a list of board
1647games:
1648
1649@example
1650$ guix package -s '\<board\>' -s game | recsel -p name
1651name: gnubg
1652@dots{}
1653@end example
1654
1655If we were to omit @code{-s game}, we would also get software packages
1656that deal with printed circuit boards; removing the angle brackets
1657around @code{board} would further add packages that have to do with
1658keyboards.
1659
b110869d
LC
1660And now for a more elaborate example. The following command searches
1661for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby
1662libraries, and prints the name and synopsis of the matching packages:
1663
1664@example
1665$ guix package -s crypto -s library | \
1666 recsel -e '! (name ~ "^(ghc|perl|python|ruby)")' -p name,synopsis
1667@end example
1668
1669@noindent
1670@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more
1671information on @dfn{selection expressions} for @code{recsel -e}.
1672
2aa6efb0
CR
1673@item --show=@var{package}
1674Show details about @var{package}, taken from the list of available packages, in
1675@code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU
1676recutils manual}).
1677
1678@example
1679$ guix package --show=python | recsel -p name,version
1680name: python
1681version: 2.7.6
1682
1683name: python
1684version: 3.3.5
1685@end example
1686
1687You may also specify the full name of a package to only get details about a
1688specific version of it:
1689@example
1690$ guix package --show=python-3.3.5 | recsel -p name,version
1691name: python
1692version: 3.3.5
1693@end example
1694
1695
1696
733b4130
LC
1697@item --list-installed[=@var{regexp}]
1698@itemx -I [@var{regexp}]
bd9bde1c
LC
1699List the currently installed packages in the specified profile, with the
1700most recently installed packages shown last. When @var{regexp} is
1701specified, list only installed packages whose name matches @var{regexp}.
733b4130
LC
1702
1703For each installed package, print the following items, separated by
1704tabs: the package name, its version string, the part of the package that
1705is installed (for instance, @code{out} for the default output,
1706@code{include} for its headers, etc.), and the path of this package in
1707the store.
1708
64fc89b6
LC
1709@item --list-available[=@var{regexp}]
1710@itemx -A [@var{regexp}]
5763ad92 1711List packages currently available in the distribution for this system
a1ba8475
LC
1712(@pxref{GNU Distribution}). When @var{regexp} is specified, list only
1713installed packages whose name matches @var{regexp}.
64fc89b6
LC
1714
1715For each package, print the following items separated by tabs: its name,
6e721c4d
LC
1716its version string, the parts of the package (@pxref{Packages with
1717Multiple Outputs}), and the source location of its definition.
64fc89b6 1718
f566d765
LC
1719@item --list-generations[=@var{pattern}]
1720@itemx -l [@var{pattern}]
1721Return a list of generations along with their creation dates; for each
1722generation, show the installed packages, with the most recently
4b2bc804
NK
1723installed packages shown last. Note that the zeroth generation is never
1724shown.
f566d765
LC
1725
1726For each installed package, print the following items, separated by
1727tabs: the name of a package, its version string, the part of the package
1728that is installed (@pxref{Packages with Multiple Outputs}), and the
1729location of this package in the store.
1730
1731When @var{pattern} is used, the command returns only matching
1732generations. Valid patterns include:
1733
1734@itemize
1735@item @emph{Integers and comma-separated integers}. Both patterns denote
1736generation numbers. For instance, @code{--list-generations=1} returns
1737the first one.
1738
1739And @code{--list-generations=1,8,2} outputs three generations in the
1740specified order. Neither spaces nor trailing commas are allowed.
1741
1742@item @emph{Ranges}. @code{--list-generations=2..9} prints the
1743specified generations and everything in between. Note that the start of
f97c9175 1744a range must be smaller than its end.
f566d765
LC
1745
1746It is also possible to omit the endpoint. For example,
1747@code{--list-generations=2..}, returns all generations starting from the
1748second one.
1749
1750@item @emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks,
1751or months by passing an integer along with the first letter of the
d7ddb257
LC
1752duration. For example, @code{--list-generations=20d} lists generations
1753that are up to 20 days old.
f566d765
LC
1754@end itemize
1755
b7884ca3
NK
1756@item --delete-generations[=@var{pattern}]
1757@itemx -d [@var{pattern}]
d7ddb257
LC
1758When @var{pattern} is omitted, delete all generations except the current
1759one.
b7884ca3
NK
1760
1761This command accepts the same patterns as @option{--list-generations}.
d7ddb257
LC
1762When @var{pattern} is specified, delete the matching generations. When
1763@var{pattern} specifies a duration, generations @emph{older} than the
1764specified duration match. For instance, @code{--delete-generations=1m}
1765deletes generations that are more than one month old.
1766
391bdd8f
LC
1767If the current generation matches, it is @emph{not} deleted. Also, the
1768zeroth generation is never deleted.
b7884ca3 1769
f97c9175 1770Note that deleting generations prevents rolling back to them.
1bb9900a
LC
1771Consequently, this command must be used with care.
1772
733b4130 1773@end table
eeaf4427 1774
70ee5642 1775Finally, since @command{guix package} may actually start build
ccd7158d 1776processes, it supports all the common build options (@pxref{Common Build
f97c9175 1777Options}). It also supports package transformation options, such as
b8638f03
LC
1778@option{--with-source} (@pxref{Package Transformation Options}).
1779However, note that package transformations are lost when upgrading; to
f97c9175 1780preserve transformations across upgrades, you should define your own
b8638f03
LC
1781package variant in a Guile module and add it to @code{GUIX_PACKAGE_PATH}
1782(@pxref{Defining Packages}).
1783
70ee5642 1784
c4202d60
LC
1785@node Substitutes
1786@section Substitutes
1787
1788@cindex substitutes
1789@cindex pre-built binaries
1790Guix supports transparent source/binary deployment, which means that it
1791can either build things locally, or download pre-built items from a
1792server. We call these pre-built items @dfn{substitutes}---they are
1793substitutes for local build results. In many cases, downloading a
1794substitute is much faster than building things locally.
1795
1796Substitutes can be anything resulting from a derivation build
1797(@pxref{Derivations}). Of course, in the common case, they are
1798pre-built package binaries, but source tarballs, for instance, which
1799also result from derivation builds, can be available as substitutes.
1800
1801The @code{hydra.gnu.org} server is a front-end to a build farm that
1802builds packages from the GNU distribution continuously for some
32950fc8
AK
1803architectures, and makes them available as substitutes (@pxref{Emacs
1804Hydra}, for information on how to query the continuous integration
1805server). This is the
f8a8e0fe
LC
1806default source of substitutes; it can be overridden by passing the
1807@option{--substitute-urls} option either to @command{guix-daemon}
1808(@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}})
1809or to client tools such as @command{guix package}
1810(@pxref{client-substitute-urls,, client @option{--substitute-urls}
1811option}).
c4202d60 1812
9b7bd1b1
LC
1813Substitute URLs can be either HTTP or HTTPS@footnote{For HTTPS access,
1814the Guile bindings of GnuTLS must be installed. @xref{Requirements}.}
1815HTTPS is recommended because communications are encrypted; conversely,
1816using HTTP makes all communications visible to an eavesdropper, who
1817could use the information gathered to determine, for instance, whether
1818your system has unpatched security vulnerabilities.
1819
c4202d60
LC
1820@cindex security
1821@cindex digital signatures
df061d07
LC
1822To allow Guix to download substitutes from @code{hydra.gnu.org} or a
1823mirror thereof, you
c4202d60
LC
1824must add its public key to the access control list (ACL) of archive
1825imports, using the @command{guix archive} command (@pxref{Invoking guix
1826archive}). Doing so implies that you trust @code{hydra.gnu.org} to not
1827be compromised and to serve genuine substitutes.
1828
1829This public key is installed along with Guix, in
1830@code{@var{prefix}/share/guix/hydra.gnu.org.pub}, where @var{prefix} is
1831the installation prefix of Guix. If you installed Guix from source,
1832make sure you checked the GPG signature of
1833@file{guix-@value{VERSION}.tar.gz}, which contains this public key file.
1834Then, you can run something like this:
1835
1836@example
1837# guix archive --authorize < hydra.gnu.org.pub
1838@end example
1839
1840Once this is in place, the output of a command like @code{guix build}
1841should change from something like:
1842
1843@example
1844$ guix build emacs --dry-run
1845The following derivations would be built:
1846 /gnu/store/yr7bnx8xwcayd6j95r2clmkdl1qh688w-emacs-24.3.drv
1847 /gnu/store/x8qsh1hlhgjx6cwsjyvybnfv2i37z23w-dbus-1.6.4.tar.gz.drv
1848 /gnu/store/1ixwp12fl950d15h2cj11c73733jay0z-alsa-lib-1.0.27.1.tar.bz2.drv
1849 /gnu/store/nlma1pw0p603fpfiqy7kn4zm105r5dmw-util-linux-2.21.drv
1850@dots{}
1851@end example
1852
1853@noindent
1854to something like:
1855
1856@example
1857$ guix build emacs --dry-run
1858The following files would be downloaded:
1859 /gnu/store/pk3n22lbq6ydamyymqkkz7i69wiwjiwi-emacs-24.3
1860 /gnu/store/2ygn4ncnhrpr61rssa6z0d9x22si0va3-libjpeg-8d
1861 /gnu/store/71yz6lgx4dazma9dwn2mcjxaah9w77jq-cairo-1.12.16
1862 /gnu/store/7zdhgp0n1518lvfn8mb96sxqfmvqrl7v-libxrender-0.9.7
1863@dots{}
1864@end example
1865
1866@noindent
1867This indicates that substitutes from @code{hydra.gnu.org} are usable and
1868will be downloaded, when possible, for future builds.
1869
1870Guix ignores substitutes that are not signed, or that are not signed by
ef27aa9c 1871one of the keys listed in the ACL. It also detects and raises an error
c4202d60
LC
1872when attempting to use a substitute that has been tampered with.
1873
e0c941fe 1874@vindex http_proxy
9b7bd1b1
LC
1875Substitutes are downloaded over HTTP or HTTPS.
1876The @code{http_proxy} environment
e0c941fe
LC
1877variable can be set in the environment of @command{guix-daemon} and is
1878honored for downloads of substitutes. Note that the value of
1879@code{http_proxy} in the environment where @command{guix build},
1880@command{guix package}, and other client commands are run has
1881@emph{absolutely no effect}.
1882
9b7bd1b1
LC
1883When using HTTPS, the server's X.509 certificate is @emph{not} validated
1884(in other words, the server is not authenticated), contrary to what
1885HTTPS clients such as Web browsers usually do. This is because Guix
1886authenticates substitute information itself, as explained above, which
1887is what we care about (whereas X.509 certificates are about
1888authenticating bindings between domain names and public keys.)
1889
c4202d60
LC
1890The substitute mechanism can be disabled globally by running
1891@code{guix-daemon} with @code{--no-substitutes} (@pxref{Invoking
1892guix-daemon}). It can also be disabled temporarily by passing the
1893@code{--no-substitutes} option to @command{guix package}, @command{guix
1894build}, and other command-line tools.
1895
1896
9b7bd1b1
LC
1897@unnumberedsubsec On Trusting Binaries
1898
c4202d60
LC
1899Today, each individual's control over their own computing is at the
1900mercy of institutions, corporations, and groups with enough power and
1901determination to subvert the computing infrastructure and exploit its
1902weaknesses. While using @code{hydra.gnu.org} substitutes can be
1903convenient, we encourage users to also build on their own, or even run
1904their own build farm, such that @code{hydra.gnu.org} is less of an
8ce229fc
LC
1905interesting target. One way to help is by publishing the software you
1906build using @command{guix publish} so that others have one more choice
1907of server to download substitutes from (@pxref{Invoking guix publish}).
c4202d60
LC
1908
1909Guix has the foundations to maximize build reproducibility
1910(@pxref{Features}). In most cases, independent builds of a given
1911package or derivation should yield bit-identical results. Thus, through
1912a diverse set of independent package builds, we can strengthen the
d23c20f1
LC
1913integrity of our systems. The @command{guix challenge} command aims to
1914help users assess substitute servers, and to assist developers in
1915finding out about non-deterministic package builds (@pxref{Invoking guix
a8d65643
LC
1916challenge}). Similarly, the @option{--check} option of @command{guix
1917build} allows users to check whether previously-installed substitutes
1918are genuine by rebuilding them locally (@pxref{build-check,
1919@command{guix build --check}}).
c4202d60
LC
1920
1921In the future, we want Guix to have support to publish and retrieve
1922binaries to/from other users, in a peer-to-peer fashion. If you would
1923like to discuss this project, join us on @email{guix-devel@@gnu.org}.
1924
1925
6e721c4d
LC
1926@node Packages with Multiple Outputs
1927@section Packages with Multiple Outputs
1928
1929@cindex multiple-output packages
1930@cindex package outputs
1931
1932Often, packages defined in Guix have a single @dfn{output}---i.e., the
f97c9175 1933source package leads to exactly one directory in the store. When running
6e721c4d
LC
1934@command{guix package -i glibc}, one installs the default output of the
1935GNU libc package; the default output is called @code{out}, but its name
1936can be omitted as shown in this command. In this particular case, the
1937default output of @code{glibc} contains all the C header files, shared
1938libraries, static libraries, Info documentation, and other supporting
1939files.
1940
1941Sometimes it is more appropriate to separate the various types of files
1942produced from a single source package into separate outputs. For
1943instance, the GLib C library (used by GTK+ and related packages)
1944installs more than 20 MiB of reference documentation as HTML pages.
1945To save space for users who do not need it, the documentation goes to a
1946separate output, called @code{doc}. To install the main GLib output,
1947which contains everything but the documentation, one would run:
1948
1949@example
1950guix package -i glib
1951@end example
1952
1953The command to install its documentation is:
1954
1955@example
1956guix package -i glib:doc
1957@end example
1958
1959Some packages install programs with different ``dependency footprints''.
f97c9175 1960For instance, the WordNet package installs both command-line tools and
6e721c4d
LC
1961graphical user interfaces (GUIs). The former depend solely on the C
1962library, whereas the latter depend on Tcl/Tk and the underlying X
1963libraries. In this case, we leave the command-line tools in the default
1964output, whereas the GUIs are in a separate output. This allows users
fcc58db6
LC
1965who do not need the GUIs to save space. The @command{guix size} command
1966can help find out about such situations (@pxref{Invoking guix size}).
88856916 1967@command{guix graph} can also be helpful (@pxref{Invoking guix graph}).
6e721c4d
LC
1968
1969There are several such multiple-output packages in the GNU distribution.
91ef73d4
LC
1970Other conventional output names include @code{lib} for libraries and
1971possibly header files, @code{bin} for stand-alone programs, and
1972@code{debug} for debugging information (@pxref{Installing Debugging
1973Files}). The outputs of a packages are listed in the third column of
1974the output of @command{guix package --list-available} (@pxref{Invoking
1975guix package}).
6e721c4d 1976
eeaf4427 1977
e49951eb
MW
1978@node Invoking guix gc
1979@section Invoking @command{guix gc}
fe8ff028
LC
1980
1981@cindex garbage collector
f97c9175 1982Packages that are installed, but not used, may be @dfn{garbage-collected}.
e49951eb 1983The @command{guix gc} command allows users to explicitly run the garbage
c22eb992
LC
1984collector to reclaim space from the @file{/gnu/store} directory. It is
1985the @emph{only} way to remove files from @file{/gnu/store}---removing
1986files or directories manually may break it beyond repair!
fe8ff028
LC
1987
1988The garbage collector has a set of known @dfn{roots}: any file under
834129e0 1989@file{/gnu/store} reachable from a root is considered @dfn{live} and
fe8ff028
LC
1990cannot be deleted; any other file is considered @dfn{dead} and may be
1991deleted. The set of garbage collector roots includes default user
e49951eb
MW
1992profiles, and may be augmented with @command{guix build --root}, for
1993example (@pxref{Invoking guix build}).
fe8ff028 1994
1bb9900a
LC
1995Prior to running @code{guix gc --collect-garbage} to make space, it is
1996often useful to remove old generations from user profiles; that way, old
1997package builds referenced by those generations can be reclaimed. This
1998is achieved by running @code{guix package --delete-generations}
1999(@pxref{Invoking guix package}).
2000
e49951eb 2001The @command{guix gc} command has three modes of operation: it can be
fe8ff028 2002used to garbage-collect any dead files (the default), to delete specific
7770aafc
LC
2003files (the @code{--delete} option), to print garbage-collector
2004information, or for more advanced queries. The garbage collection
2005options are as follows:
fe8ff028
LC
2006
2007@table @code
2008@item --collect-garbage[=@var{min}]
2009@itemx -C [@var{min}]
834129e0 2010Collect garbage---i.e., unreachable @file{/gnu/store} files and
fe8ff028
LC
2011sub-directories. This is the default operation when no option is
2012specified.
2013
2014When @var{min} is given, stop once @var{min} bytes have been collected.
2015@var{min} may be a number of bytes, or it may include a unit as a
4a44d7bb
LC
2016suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes
2017(@pxref{Block size, size specifications,, coreutils, GNU Coreutils}).
fe8ff028
LC
2018
2019When @var{min} is omitted, collect all the garbage.
2020
0054e470
LC
2021@item --free-space=@var{free}
2022@itemx -F @var{free}
2023Collect garbage until @var{free} space is available under
2024@file{/gnu/store}, if possible; @var{free} denotes storage space, such
2025as @code{500MiB}, as described above.
2026
2027When @var{free} or more is already available in @file{/gnu/store}, do
2028nothing and exit immediately.
2029
fe8ff028
LC
2030@item --delete
2031@itemx -d
2032Attempt to delete all the store files and directories specified as
2033arguments. This fails if some of the files are not in the store, or if
2034they are still live.
2035
30d9aa54
LC
2036@item --list-failures
2037List store items corresponding to cached build failures.
2038
2039This prints nothing unless the daemon was started with
2040@option{--cache-failures} (@pxref{Invoking guix-daemon,
2041@option{--cache-failures}}).
2042
2043@item --clear-failures
2044Remove the specified store items from the failed-build cache.
2045
2046Again, this option only makes sense when the daemon is started with
2047@option{--cache-failures}. Otherwise, it does nothing.
2048
fe8ff028
LC
2049@item --list-dead
2050Show the list of dead files and directories still present in the
2051store---i.e., files and directories no longer reachable from any root.
2052
2053@item --list-live
2054Show the list of live store files and directories.
ba8b732d
LC
2055
2056@end table
2057
2058In addition, the references among existing store files can be queried:
2059
2060@table @code
2061
2062@item --references
2063@itemx --referrers
2064List the references (respectively, the referrers) of store files given
2065as arguments.
2066
8e59fdd5
LC
2067@item --requisites
2068@itemx -R
fcc58db6 2069@cindex closure
8e59fdd5
LC
2070List the requisites of the store files passed as arguments. Requisites
2071include the store files themselves, their references, and the references
2072of these, recursively. In other words, the returned list is the
2073@dfn{transitive closure} of the store files.
2074
f97c9175
AE
2075@xref{Invoking guix size}, for a tool to profile the size of the closure
2076of an element. @xref{Invoking guix graph}, for a tool to visualize
88856916 2077the graph of references.
fcc58db6 2078
fe8ff028
LC
2079@end table
2080
7770aafc
LC
2081Lastly, the following options allow you to check the integrity of the
2082store and to control disk usage.
2083
2084@table @option
2085
2086@item --verify[=@var{options}]
2087@cindex integrity, of the store
2088@cindex integrity checking
2089Verify the integrity of the store.
2090
2091By default, make sure that all the store items marked as valid in the
f97c9175 2092database of the daemon actually exist in @file{/gnu/store}.
7770aafc 2093
f97c9175 2094When provided, @var{options} must be a comma-separated list containing one
7770aafc
LC
2095or more of @code{contents} and @code{repair}.
2096
f97c9175
AE
2097When passing @option{--verify=contents}, the daemon computse the
2098content hash of each store item and compares it against its hash in the
7770aafc
LC
2099database. Hash mismatches are reported as data corruptions. Because it
2100traverses @emph{all the files in the store}, this command can take a
2101long time, especially on systems with a slow disk drive.
2102
2103@cindex repairing the store
2104Using @option{--verify=repair} or @option{--verify=contents,repair}
2105causes the daemon to try to repair corrupt store items by fetching
2106substitutes for them (@pxref{Substitutes}). Because repairing is not
2107atomic, and thus potentially dangerous, it is available only to the
2108system administrator.
2109
2110@item --optimize
2111@cindex deduplication
2112Optimize the store by hard-linking identical files---this is
2113@dfn{deduplication}.
2114
2115The daemon performs deduplication after each successful build or archive
2116import, unless it was started with @code{--disable-deduplication}
2117(@pxref{Invoking guix-daemon, @code{--disable-deduplication}}). Thus,
2118this option is primarily useful when the daemon was running with
2119@code{--disable-deduplication}.
2120
2121@end table
eeaf4427 2122
f651b477
LC
2123@node Invoking guix pull
2124@section Invoking @command{guix pull}
2125
2126Packages are installed or upgraded to the latest version available in
2127the distribution currently available on your local machine. To update
2128that distribution, along with the Guix tools, you must run @command{guix
2129pull}: the command downloads the latest Guix source code and package
2130descriptions, and deploys it.
2131
2132On completion, @command{guix package} will use packages and package
2133versions from this just-retrieved copy of Guix. Not only that, but all
2134the Guix commands and Scheme modules will also be taken from that latest
2135version. New @command{guix} sub-commands added by the update also
cb05108a
LC
2136become available.
2137
2138Any user can update their Guix copy using @command{guix pull}, and the
2139effect is limited to the user who run @command{guix pull}. For
2140instance, when user @code{root} runs @command{guix pull}, this has no
2141effect on the version of Guix that user @code{alice} sees, and vice
2142versa@footnote{Under the hood, @command{guix pull} updates the
2143@file{~/.config/guix/latest} symbolic link to point to the latest Guix,
2144and the @command{guix} command loads code from there.}.
f651b477
LC
2145
2146The @command{guix pull} command is usually invoked with no arguments,
2147but it supports the following options:
2148
2149@table @code
2150@item --verbose
2151Produce verbose output, writing build logs to the standard error output.
2152
ab5d72ad
LC
2153@item --url=@var{url}
2154Download the source tarball of Guix from @var{url}.
2155
2156By default, the tarball is taken from its canonical address at
2157@code{gnu.org}, for the stable branch of Guix.
2158
f651b477
LC
2159@item --bootstrap
2160Use the bootstrap Guile to build the latest Guix. This option is only
2161useful to Guix developers.
2162@end table
2163
760c60d6
LC
2164
2165@node Invoking guix archive
2166@section Invoking @command{guix archive}
2167
2168The @command{guix archive} command allows users to @dfn{export} files
2169from the store into a single archive, and to later @dfn{import} them.
2170In particular, it allows store files to be transferred from one machine
4d4c4816
AE
2171to the store on another machine.
2172
2173To export store files as an archive to standard output, run:
2174
2175@example
2176guix archive --export @var{options} @var{specifications}...
2177@end example
2178
2179@var{specifications} may be either store file names or package
2180specifications, as for @command{guix package} (@pxref{Invoking guix
2181package}). For instance, the following command creates an archive
2182containing the @code{gui} output of the @code{git} package and the main
2183output of @code{emacs}:
2184
2185@example
2186guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar
2187@end example
2188
2189If the specified packages are not built yet, @command{guix archive}
2190automatically builds them. The build process may be controlled with the
2191common build options (@pxref{Common Build Options}).
2192
2193To transfer the @code{emacs} package to a machine connected over SSH,
2194one would run:
760c60d6
LC
2195
2196@example
56607088 2197guix archive --export -r emacs | ssh the-machine guix archive --import
760c60d6
LC
2198@end example
2199
87236aed 2200@noindent
56607088
LC
2201Similarly, a complete user profile may be transferred from one machine
2202to another like this:
2203
2204@example
2205guix archive --export -r $(readlink -f ~/.guix-profile) | \
2206 ssh the-machine guix-archive --import
2207@end example
2208
2209@noindent
2210However, note that, in both examples, all of @code{emacs} and the
2211profile as well as all of their dependencies are transferred (due to
f97c9175
AE
2212@code{-r}), regardless of what is already available in the store on the
2213target machine. The @code{--missing} option can help figure out which
2214items are missing from the target store.
87236aed 2215
760c60d6 2216Archives are stored in the ``Nix archive'' or ``Nar'' format, which is
0dbd88db
LC
2217comparable in spirit to `tar', but with a few noteworthy differences
2218that make it more appropriate for our purposes. First, rather than
f97c9175 2219recording all Unix metadata for each file, the Nar format only mentions
0dbd88db
LC
2220the file type (regular, directory, or symbolic link); Unix permissions
2221and owner/group are dismissed. Second, the order in which directory
2222entries are stored always follows the order of file names according to
2223the C locale collation order. This makes archive production fully
2224deterministic.
2225
2226When exporting, the daemon digitally signs the contents of the archive,
2227and that digital signature is appended. When importing, the daemon
2228verifies the signature and rejects the import in case of an invalid
2229signature or if the signing key is not authorized.
760c60d6
LC
2230@c FIXME: Add xref to daemon doc about signatures.
2231
2232The main options are:
2233
2234@table @code
2235@item --export
2236Export the specified store files or packages (see below.) Write the
2237resulting archive to the standard output.
2238
56607088
LC
2239Dependencies are @emph{not} included in the output, unless
2240@code{--recursive} is passed.
2241
2242@item -r
2243@itemx --recursive
2244When combined with @code{--export}, this instructs @command{guix
2245archive} to include dependencies of the given items in the archive.
2246Thus, the resulting archive is self-contained: it contains the closure
2247of the exported store items.
2248
760c60d6
LC
2249@item --import
2250Read an archive from the standard input, and import the files listed
2251therein into the store. Abort if the archive has an invalid digital
f82cc5fd
LC
2252signature, or if it is signed by a public key not among the authorized
2253keys (see @code{--authorize} below.)
554f26ec 2254
87236aed
LC
2255@item --missing
2256Read a list of store file names from the standard input, one per line,
2257and write on the standard output the subset of these files missing from
2258the store.
2259
554f26ec 2260@item --generate-key[=@var{parameters}]
f82cc5fd 2261@cindex signing, archives
f97c9175 2262Generate a new key pair for the daemon. This is a prerequisite before
554f26ec
LC
2263archives can be exported with @code{--export}. Note that this operation
2264usually takes time, because it needs to gather enough entropy to
2265generate the key pair.
2266
2267The generated key pair is typically stored under @file{/etc/guix}, in
2268@file{signing-key.pub} (public key) and @file{signing-key.sec} (private
867d8473
LC
2269key, which must be kept secret.) When @var{parameters} is omitted,
2270an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt
2271versions before 1.6.0, it is a 4096-bit RSA key.
f97c9175 2272Alternatively, @var{parameters} can specify
554f26ec
LC
2273@code{genkey} parameters suitable for Libgcrypt (@pxref{General
2274public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The
2275Libgcrypt Reference Manual}).
f82cc5fd
LC
2276
2277@item --authorize
2278@cindex authorizing, archives
2279Authorize imports signed by the public key passed on standard input.
2280The public key must be in ``s-expression advanced format''---i.e., the
2281same format as the @file{signing-key.pub} file.
2282
2283The list of authorized keys is kept in the human-editable file
2284@file{/etc/guix/acl}. The file contains
2285@url{http://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format
2286s-expressions''} and is structured as an access-control list in the
2287@url{http://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure
2288(SPKI)}.
c6f8e9dd
LC
2289
2290@item --extract=@var{directory}
2291@itemx -x @var{directory}
2292Read a single-item archive as served by substitute servers
2293(@pxref{Substitutes}) and extract it to @var{directory}. This is a
2294low-level operation needed in only very narrow use cases; see below.
2295
2296For example, the following command extracts the substitute for Emacs
2297served by @code{hydra.gnu.org} to @file{/tmp/emacs}:
2298
2299@example
2300$ wget -O - \
df061d07 2301 https://hydra.gnu.org/nar/@dots{}-emacs-24.5 \
c6f8e9dd
LC
2302 | bunzip2 | guix archive -x /tmp/emacs
2303@end example
2304
2305Single-item archives are different from multiple-item archives produced
2306by @command{guix archive --export}; they contain a single store item,
2307and they do @emph{not} embed a signature. Thus this operation does
2308@emph{no} signature verification and its output should be considered
2309unsafe.
2310
2311The primary purpose of this operation is to facilitate inspection of
2312archive contents coming from possibly untrusted substitute servers.
2313
760c60d6
LC
2314@end table
2315
c554de89
AK
2316@c *********************************************************************
2317@include emacs.texi
760c60d6 2318
568717fd
LC
2319@c *********************************************************************
2320@node Programming Interface
2321@chapter Programming Interface
2322
3dc1970d
LC
2323GNU Guix provides several Scheme programming interfaces (APIs) to
2324define, build, and query packages. The first interface allows users to
2325write high-level package definitions. These definitions refer to
2326familiar packaging concepts, such as the name and version of a package,
2327its build system, and its dependencies. These definitions can then be
2328turned into concrete build actions.
2329
ba55b1cb 2330Build actions are performed by the Guix daemon, on behalf of users. In a
3dc1970d 2331standard setup, the daemon has write access to the store---the
834129e0 2332@file{/gnu/store} directory---whereas users do not. The recommended
3dc1970d
LC
2333setup also has the daemon perform builds in chroots, under a specific
2334build users, to minimize interference with the rest of the system.
2335
2336@cindex derivation
2337Lower-level APIs are available to interact with the daemon and the
2338store. To instruct the daemon to perform a build action, users actually
2339provide it with a @dfn{derivation}. A derivation is a low-level
2340representation of the build actions to be taken, and the environment in
2341which they should occur---derivations are to package definitions what
49ad317a
LC
2342assembly is to C programs. The term ``derivation'' comes from the fact
2343that build results @emph{derive} from them.
3dc1970d
LC
2344
2345This chapter describes all these APIs in turn, starting from high-level
2346package definitions.
2347
568717fd 2348@menu
b860f382 2349* Defining Packages:: Defining new packages.
7458bd0a 2350* Build Systems:: Specifying how packages are built.
b860f382
LC
2351* The Store:: Manipulating the package store.
2352* Derivations:: Low-level interface to package derivations.
2353* The Store Monad:: Purely functional interface to the store.
21b679f6 2354* G-Expressions:: Manipulating build expressions.
568717fd
LC
2355@end menu
2356
2357@node Defining Packages
2358@section Defining Packages
2359
3dc1970d
LC
2360The high-level interface to package definitions is implemented in the
2361@code{(guix packages)} and @code{(guix build-system)} modules. As an
2362example, the package definition, or @dfn{recipe}, for the GNU Hello
2363package looks like this:
2364
2365@example
e7f34eb0
LC
2366(define-module (gnu packages hello)
2367 #:use-module (guix packages)
2368 #:use-module (guix download)
2369 #:use-module (guix build-system gnu)
a6dcdcac
SB
2370 #:use-module (guix licenses)
2371 #:use-module (gnu packages gawk))
b22a12fd 2372
79f5dd59 2373(define-public hello
3dc1970d
LC
2374 (package
2375 (name "hello")
17d8e33f 2376 (version "2.10")
3dc1970d 2377 (source (origin
17d8e33f
ML
2378 (method url-fetch)
2379 (uri (string-append "mirror://gnu/hello/hello-" version
2380 ".tar.gz"))
2381 (sha256
2382 (base32
2383 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
3dc1970d 2384 (build-system gnu-build-system)
7458bd0a 2385 (arguments `(#:configure-flags '("--enable-silent-rules")))
3dc1970d 2386 (inputs `(("gawk" ,gawk)))
7458bd0a
LC
2387 (synopsis "Hello, GNU world: An example GNU package")
2388 (description "Guess what GNU Hello prints!")
3dc1970d 2389 (home-page "http://www.gnu.org/software/hello/")
b22a12fd 2390 (license gpl3+)))
3dc1970d
LC
2391@end example
2392
2393@noindent
2394Without being a Scheme expert, the reader may have guessed the meaning
f97c9175
AE
2395of the various fields here. This expression binds the variable
2396@code{hello} to a @code{<package>} object, which is essentially a record
3dc1970d
LC
2397(@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}).
2398This package object can be inspected using procedures found in the
2399@code{(guix packages)} module; for instance, @code{(package-name hello)}
2400returns---surprise!---@code{"hello"}.
2401
2f7d2d91
LC
2402With luck, you may be able to import part or all of the definition of
2403the package you are interested in from another repository, using the
2404@code{guix import} command (@pxref{Invoking guix import}).
2405
f97c9175 2406In the example above, @var{hello} is defined in a module of its own,
e7f34eb0
LC
2407@code{(gnu packages hello)}. Technically, this is not strictly
2408necessary, but it is convenient to do so: all the packages defined in
2409modules under @code{(gnu packages @dots{})} are automatically known to
2410the command-line tools (@pxref{Package Modules}).
2411
3dc1970d
LC
2412There are a few points worth noting in the above package definition:
2413
2414@itemize
2415@item
a2bf4907
LC
2416The @code{source} field of the package is an @code{<origin>} object
2417(@pxref{origin Reference}, for the complete reference).
3dc1970d
LC
2418Here, the @code{url-fetch} method from @code{(guix download)} is used,
2419meaning that the source is a file to be downloaded over FTP or HTTP.
2420
2421The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of
2422the GNU mirrors defined in @code{(guix download)}.
2423
2424The @code{sha256} field specifies the expected SHA256 hash of the file
2425being downloaded. It is mandatory, and allows Guix to check the
2426integrity of the file. The @code{(base32 @dots{})} form introduces the
6c365eca 2427base32 representation of the hash. You can obtain this information with
210cc920
LC
2428@code{guix download} (@pxref{Invoking guix download}) and @code{guix
2429hash} (@pxref{Invoking guix hash}).
3dc1970d 2430
f9cc8971
LC
2431@cindex patches
2432When needed, the @code{origin} form can also have a @code{patches} field
2433listing patches to be applied, and a @code{snippet} field giving a
2434Scheme expression to modify the source code.
2435
3dc1970d
LC
2436@item
2437@cindex GNU Build System
7458bd0a
LC
2438The @code{build-system} field specifies the procedure to build the
2439package (@pxref{Build Systems}). Here, @var{gnu-build-system}
2440represents the familiar GNU Build System, where packages may be
2441configured, built, and installed with the usual @code{./configure &&
2442make && make check && make install} command sequence.
2443
2444@item
2445The @code{arguments} field specifies options for the build system
2446(@pxref{Build Systems}). Here it is interpreted by
2447@var{gnu-build-system} as a request run @file{configure} with the
2448@code{--enable-silent-rules} flag.
3dc1970d
LC
2449
2450@item
2451The @code{inputs} field specifies inputs to the build process---i.e.,
2452build-time or run-time dependencies of the package. Here, we define an
2453input called @code{"gawk"} whose value is that of the @var{gawk}
2454variable; @var{gawk} is itself bound to a @code{<package>} object.
2455
2456Note that GCC, Coreutils, Bash, and other essential tools do not need to
2457be specified as inputs here. Instead, @var{gnu-build-system} takes care
7458bd0a 2458of ensuring that they are present (@pxref{Build Systems}).
3dc1970d
LC
2459
2460However, any other dependencies need to be specified in the
2461@code{inputs} field. Any dependency not specified here will simply be
2462unavailable to the build process, possibly leading to a build failure.
2463@end itemize
2464
87eafdbd
TUBK
2465@xref{package Reference}, for a full description of possible fields.
2466
2f7d2d91 2467Once a package definition is in place, the
e49951eb 2468package may actually be built using the @code{guix build} command-line
39bee8a2
LC
2469tool (@pxref{Invoking guix build}). You can easily jump back to the
2470package definition using the @command{guix edit} command
2471(@pxref{Invoking guix edit}).
2472@xref{Packaging Guidelines}, for
b4f5e0e8
CR
2473more information on how to test package definitions, and
2474@ref{Invoking guix lint}, for information on how to check a definition
2475for style conformance.
2476
f97c9175 2477Finally, updating the package definition to a new upstream version
7458bd0a
LC
2478can be partly automated by the @command{guix refresh} command
2479(@pxref{Invoking guix refresh}).
3dc1970d
LC
2480
2481Behind the scenes, a derivation corresponding to the @code{<package>}
2482object is first computed by the @code{package-derivation} procedure.
834129e0 2483That derivation is stored in a @code{.drv} file under @file{/gnu/store}.
ba55b1cb 2484The build actions it prescribes may then be realized by using the
3dc1970d
LC
2485@code{build-derivations} procedure (@pxref{The Store}).
2486
2487@deffn {Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]
59688fc4
LC
2488Return the @code{<derivation>} object of @var{package} for @var{system}
2489(@pxref{Derivations}).
3dc1970d
LC
2490
2491@var{package} must be a valid @code{<package>} object, and @var{system}
2492must be a string denoting the target system type---e.g.,
2493@code{"x86_64-linux"} for an x86_64 Linux-based GNU system. @var{store}
2494must be a connection to the daemon, which operates on the store
2495(@pxref{The Store}).
2496@end deffn
568717fd 2497
9c1edabd
LC
2498@noindent
2499@cindex cross-compilation
2500Similarly, it is possible to compute a derivation that cross-builds a
2501package for some other system:
2502
2503@deffn {Scheme Procedure} package-cross-derivation @var{store} @
2504 @var{package} @var{target} [@var{system}]
59688fc4
LC
2505Return the @code{<derivation>} object of @var{package} cross-built from
2506@var{system} to @var{target}.
9c1edabd
LC
2507
2508@var{target} must be a valid GNU triplet denoting the target hardware
2509and operating system, such as @code{"mips64el-linux-gnu"}
2510(@pxref{Configuration Names, GNU configuration triplets,, configure, GNU
2511Configure and Build System}).
2512@end deffn
2513
87eafdbd
TUBK
2514@menu
2515* package Reference :: The package data type.
2516* origin Reference:: The origin data type.
2517@end menu
2518
2519
2520@node package Reference
2521@subsection @code{package} Reference
2522
2523This section summarizes all the options available in @code{package}
2524declarations (@pxref{Defining Packages}).
2525
2526@deftp {Data Type} package
2527This is the data type representing a package recipe.
2528
2529@table @asis
2530@item @code{name}
2531The name of the package, as a string.
2532
2533@item @code{version}
2534The version of the package, as a string.
2535
2536@item @code{source}
da675305
LC
2537An object telling how the source code for the package should be
2538acquired. Most of the time, this is an @code{origin} object, which
2539denotes a file fetched from the Internet (@pxref{origin Reference}). It
2540can also be any other ``file-like'' object such as a @code{local-file},
2541which denotes a file from the local file system (@pxref{G-Expressions,
2542@code{local-file}}).
87eafdbd
TUBK
2543
2544@item @code{build-system}
2545The build system that should be used to build the package (@pxref{Build
2546Systems}).
2547
2548@item @code{arguments} (default: @code{'()})
2549The arguments that should be passed to the build system. This is a
2550list, typically containing sequential keyword-value pairs.
2551
2552@item @code{inputs} (default: @code{'()})
70650c68
LC
2553@itemx @code{native-inputs} (default: @code{'()})
2554@itemx @code{propagated-inputs} (default: @code{'()})
2555@cindex inputs, of packages
2556These fields list dependencies of the package. Each one is a list of
2557tuples, where each tuple has a label for the input (a string) as its
2558first element, a package, origin, or derivation as its second element,
2559and optionally the name of the output thereof that should be used, which
2560defaults to @code{"out"} (@pxref{Packages with Multiple Outputs}, for
f97c9175 2561more on package outputs). For example, the list below specifies three
70650c68 2562inputs:
87eafdbd 2563
70650c68
LC
2564@example
2565`(("libffi" ,libffi)
2566 ("libunistring" ,libunistring)
2567 ("glib:bin" ,glib "bin")) ;the "bin" output of Glib
2568@end example
2569
2570@cindex cross compilation, package dependencies
2571The distinction between @code{native-inputs} and @code{inputs} is
2572necessary when considering cross-compilation. When cross-compiling,
2573dependencies listed in @code{inputs} are built for the @emph{target}
2574architecture; conversely, dependencies listed in @code{native-inputs}
2575are built for the architecture of the @emph{build} machine.
2576
f97c9175
AE
2577@code{native-inputs} is typically used to list tools needed at
2578build time, but not at run time, such as Autoconf, Automake, pkg-config,
70650c68
LC
2579Gettext, or Bison. @command{guix lint} can report likely mistakes in
2580this area (@pxref{Invoking guix lint}).
2581
2582@anchor{package-propagated-inputs}
2583Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the
f97c9175
AE
2584specified packages will be automatically installed alongside the package
2585they belong to (@pxref{package-cmd-propagated-inputs, @command{guix
70650c68
LC
2586package}}, for information on how @command{guix package} deals with
2587propagated inputs.)
21461f27 2588
e0508b6b
LC
2589For example this is necessary when a C/C++ library needs headers of
2590another library to compile, or when a pkg-config file refers to another
2591one @i{via} its @code{Requires} field.
2592
f97c9175
AE
2593Another example where @code{propagated-inputs} is useful is for languages
2594that lack a facility to record the run-time search path akin to the
b7899749 2595@code{RUNPATH} of ELF files; this includes Guile, Python, Perl, GHC, and
e0508b6b
LC
2596more. To ensure that libraries written in those languages can find
2597library code they depend on at run time, run-time dependencies must be
2598listed in @code{propagated-inputs} rather than @code{inputs}.
87eafdbd 2599
87eafdbd
TUBK
2600@item @code{self-native-input?} (default: @code{#f})
2601This is a Boolean field telling whether the package should use itself as
2602a native input when cross-compiling.
2603
2604@item @code{outputs} (default: @code{'("out")})
2605The list of output names of the package. @xref{Packages with Multiple
2606Outputs}, for typical uses of additional outputs.
2607
2608@item @code{native-search-paths} (default: @code{'()})
2609@itemx @code{search-paths} (default: @code{'()})
2610A list of @code{search-path-specification} objects describing
2611search-path environment variables honored by the package.
2612
2613@item @code{replacement} (default: @code{#f})
f97c9175 2614This must be either @code{#f} or a package object that will be used as a
87eafdbd
TUBK
2615@dfn{replacement} for this package. @xref{Security Updates, grafts},
2616for details.
2617
2618@item @code{synopsis}
2619A one-line description of the package.
2620
2621@item @code{description}
2622A more elaborate description of the package.
2623
2624@item @code{license}
f97c9175
AE
2625The license of the package; a value from @code{(guix licenses)},
2626or a list of such values.
87eafdbd
TUBK
2627
2628@item @code{home-page}
2629The URL to the home-page of the package, as a string.
2630
2631@item @code{supported-systems} (default: @var{%supported-systems})
2632The list of systems supported by the package, as strings of the form
2633@code{architecture-kernel}, for example @code{"x86_64-linux"}.
2634
2635@item @code{maintainers} (default: @code{'()})
2636The list of maintainers of the package, as @code{maintainer} objects.
2637
2638@item @code{location} (default: source location of the @code{package} form)
f97c9175 2639The source location of the package. It is useful to override this when
87eafdbd
TUBK
2640inheriting from another package, in which case this field is not
2641automatically corrected.
2642@end table
2643@end deftp
2644
2645
2646@node origin Reference
2647@subsection @code{origin} Reference
2648
2649This section summarizes all the options available in @code{origin}
2650declarations (@pxref{Defining Packages}).
2651
2652@deftp {Data Type} origin
2653This is the data type representing a source code origin.
2654
2655@table @asis
2656@item @code{uri}
2657An object containing the URI of the source. The object type depends on
2658the @code{method} (see below). For example, when using the
2659@var{url-fetch} method of @code{(guix download)}, the valid @code{uri}
2660values are: a URL represented as a string, or a list thereof.
2661
2662@item @code{method}
f97c9175 2663A procedure that handles the URI.
87eafdbd
TUBK
2664
2665Examples include:
2666
2667@table @asis
2668@item @var{url-fetch} from @code{(guix download)}
f97c9175 2669download a file from the HTTP, HTTPS, or FTP URL specified in the
87eafdbd
TUBK
2670@code{uri} field;
2671
2672@item @var{git-fetch} from @code{(guix git-download)}
2673clone the Git version control repository, and check out the revision
2674specified in the @code{uri} field as a @code{git-reference} object; a
2675@code{git-reference} looks like this:
2676
2677@example
2678(git-reference
2679 (url "git://git.debian.org/git/pkg-shadow/shadow")
2680 (commit "v4.1.5.1"))
2681@end example
2682@end table
2683
2684@item @code{sha256}
2685A bytevector containing the SHA-256 hash of the source. Typically the
2686@code{base32} form is used here to generate the bytevector from a
2687base-32 string.
2688
2689@item @code{file-name} (default: @code{#f})
2690The file name under which the source code should be saved. When this is
2691@code{#f}, a sensible default value will be used in most cases. In case
2692the source is fetched from a URL, the file name from the URL will be
f97c9175 2693used. For version control checkouts, it is recommended to provide the
87eafdbd
TUBK
2694file name explicitly because the default is not very descriptive.
2695
2696@item @code{patches} (default: @code{'()})
2697A list of file names containing patches to be applied to the source.
2698
2699@item @code{snippet} (default: @code{#f})
2700A quoted piece of code that will be run in the source directory to make
2701any modifications, which is sometimes more convenient than a patch.
2702
2703@item @code{patch-flags} (default: @code{'("-p1")})
2704A list of command-line flags that should be passed to the @code{patch}
2705command.
2706
2707@item @code{patch-inputs} (default: @code{#f})
2708Input packages or derivations to the patching process. When this is
2709@code{#f}, the usual set of inputs necessary for patching are provided,
2710such as GNU@tie{}Patch.
2711
2712@item @code{modules} (default: @code{'()})
2713A list of Guile modules that should be loaded during the patching
2714process and while running the code in the @code{snippet} field.
2715
2716@item @code{imported-modules} (default: @code{'()})
2717The list of Guile modules to import in the patch derivation, for use by
2718the @code{snippet}.
2719
2720@item @code{patch-guile} (default: @code{#f})
2721The Guile package that should be used in the patching process. When
2722this is @code{#f}, a sensible default is used.
2723@end table
2724@end deftp
2725
9c1edabd 2726
7458bd0a
LC
2727@node Build Systems
2728@section Build Systems
2729
2730@cindex build system
2731Each package definition specifies a @dfn{build system} and arguments for
2732that build system (@pxref{Defining Packages}). This @code{build-system}
f97c9175 2733field represents the build procedure of the package, as well as implicit
7458bd0a
LC
2734dependencies of that build procedure.
2735
2736Build systems are @code{<build-system>} objects. The interface to
2737create and manipulate them is provided by the @code{(guix build-system)}
2738module, and actual build systems are exported by specific modules.
2739
f5fd4fd2 2740@cindex bag (low-level package representation)
0d5a559f
LC
2741Under the hood, build systems first compile package objects to
2742@dfn{bags}. A @dfn{bag} is like a package, but with less
2743ornamentation---in other words, a bag is a lower-level representation of
2744a package, which includes all the inputs of that package, including some
2745that were implicitly added by the build system. This intermediate
2746representation is then compiled to a derivation (@pxref{Derivations}).
2747
7458bd0a
LC
2748Build systems accept an optional list of @dfn{arguments}. In package
2749definitions, these are passed @i{via} the @code{arguments} field
2750(@pxref{Defining Packages}). They are typically keyword arguments
2751(@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU
2752Guile Reference Manual}). The value of these arguments is usually
2753evaluated in the @dfn{build stratum}---i.e., by a Guile process launched
2754by the daemon (@pxref{Derivations}).
2755
2756The main build system is @var{gnu-build-system}, which implements the
f97c9175 2757standard build procedure for GNU and many other packages. It
7458bd0a
LC
2758is provided by the @code{(guix build-system gnu)} module.
2759
2760@defvr {Scheme Variable} gnu-build-system
2761@var{gnu-build-system} represents the GNU Build System, and variants
2762thereof (@pxref{Configuration, configuration and makefile conventions,,
2763standards, GNU Coding Standards}).
2764
2765@cindex build phases
f97c9175 2766In a nutshell, packages using it are configured, built, and installed with
7458bd0a
LC
2767the usual @code{./configure && make && make check && make install}
2768command sequence. In practice, a few additional steps are often needed.
2769All these steps are split up in separate @dfn{phases},
2770notably@footnote{Please see the @code{(guix build gnu-build-system)}
2771modules for more details about the build phases.}:
2772
2773@table @code
2774@item unpack
2775Unpack the source tarball, and change the current directory to the
2776extracted source tree. If the source is actually a directory, copy it
2777to the build tree, and enter that directory.
2778
2779@item patch-source-shebangs
2780Patch shebangs encountered in source files so they refer to the right
2781store file names. For instance, this changes @code{#!/bin/sh} to
2782@code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}.
2783
2784@item configure
2785Run the @file{configure} script with a number of default options, such
2786as @code{--prefix=/gnu/store/@dots{}}, as well as the options specified
2787by the @code{#:configure-flags} argument.
2788
2789@item build
2790Run @code{make} with the list of flags specified with
0917e80e 2791@code{#:make-flags}. If the @code{#:parallel-build?} argument is true
7458bd0a
LC
2792(the default), build with @code{make -j}.
2793
2794@item check
2795Run @code{make check}, or some other target specified with
2796@code{#:test-target}, unless @code{#:tests? #f} is passed. If the
2797@code{#:parallel-tests?} argument is true (the default), run @code{make
2798check -j}.
2799
2800@item install
2801Run @code{make install} with the flags listed in @code{#:make-flags}.
2802
2803@item patch-shebangs
2804Patch shebangs on the installed executable files.
2805
2806@item strip
2807Strip debugging symbols from ELF files (unless @code{#:strip-binaries?}
2808is false), copying them to the @code{debug} output when available
2809(@pxref{Installing Debugging Files}).
2810@end table
2811
2812@vindex %standard-phases
2813The build-side module @code{(guix build gnu-build-system)} defines
2814@var{%standard-phases} as the default list of build phases.
2815@var{%standard-phases} is a list of symbol/procedure pairs, where the
2816procedure implements the actual phase.
2817
2818The list of phases used for a particular package can be changed with the
2819@code{#:phases} parameter. For instance, passing:
2820
2821@example
c2c5dc79 2822#:phases (modify-phases %standard-phases (delete 'configure))
7458bd0a
LC
2823@end example
2824
9bf404e9 2825means that all the phases described above will be used, except the
7458bd0a
LC
2826@code{configure} phase.
2827
2828In addition, this build system ensures that the ``standard'' environment
2829for GNU packages is available. This includes tools such as GCC, libc,
2830Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix
f97c9175
AE
2831build-system gnu)} module for a complete list). We call these the
2832@dfn{implicit inputs} of a package, because package definitions do not
7458bd0a
LC
2833have to mention them.
2834@end defvr
2835
2836Other @code{<build-system>} objects are defined to support other
2837conventions and tools used by free software packages. They inherit most
2838of @var{gnu-build-system}, and differ mainly in the set of inputs
2839implicitly added to the build process, and in the list of phases
2840executed. Some of these build systems are listed below.
2841
5f7a1a4d
RW
2842@defvr {Scheme Variable} ant-build-system
2843This variable is exported by @code{(guix build-system ant)}. It
2844implements the build procedure for Java packages that can be built with
2845@url{http://ant.apache.org/, Ant build tool}.
2846
2847It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as
2848provided by the @code{icedtea} package to the set of inputs. Different
2849packages can be specified with the @code{#:ant} and @code{#:jdk}
2850parameters, respectively.
2851
2852When the original package does not provide a suitable Ant build file,
2853the parameter @code{#:jar-name} can be used to generate a minimal Ant
2854build file @file{build.xml} with tasks to build the specified jar
2855archive.
2856
2857The parameter @code{#:build-target} can be used to specify the Ant task
2858that should be run during the @code{build} phase. By default the
2859``jar'' task will be run.
2860
2861@end defvr
2862
7458bd0a
LC
2863@defvr {Scheme Variable} cmake-build-system
2864This variable is exported by @code{(guix build-system cmake)}. It
2865implements the build procedure for packages using the
2866@url{http://www.cmake.org, CMake build tool}.
2867
2868It automatically adds the @code{cmake} package to the set of inputs.
2869Which package is used can be specified with the @code{#:cmake}
2870parameter.
9849cfc1
LC
2871
2872The @code{#:configure-flags} parameter is taken as a list of flags
2873passed to the @command{cmake} command. The @code{#:build-type}
2874parameter specifies in abstract terms the flags passed to the compiler;
2875it defaults to @code{"RelWithDebInfo"} (short for ``release mode with
2876debugging information''), which roughly means that code is compiled with
2877@code{-O2 -g}, as is the case for Autoconf-based packages by default.
7458bd0a
LC
2878@end defvr
2879
3afcf52b
FB
2880@defvr {Scheme Variable} glib-or-gtk-build-system
2881This variable is exported by @code{(guix build-system glib-or-gtk)}. It
2882is intended for use with packages making use of GLib or GTK+.
2883
2884This build system adds the following two phases to the ones defined by
2885@var{gnu-build-system}:
2886
2887@table @code
2888@item glib-or-gtk-wrap
f97c9175
AE
2889The phase @code{glib-or-gtk-wrap} ensures that programs in
2890@file{bin/} are able to find GLib ``schemas'' and
3afcf52b
FB
2891@uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+
2892modules}. This is achieved by wrapping the programs in launch scripts
2893that appropriately set the @code{XDG_DATA_DIRS} and @code{GTK_PATH}
2894environment variables.
2895
73aa8ddb
LC
2896It is possible to exclude specific package outputs from that wrapping
2897process by listing their names in the
2898@code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful
2899when an output is known not to contain any GLib or GTK+ binaries, and
2900where wrapping would gratuitously add a dependency of that output on
2901GLib and GTK+.
2902
3afcf52b 2903@item glib-or-gtk-compile-schemas
f97c9175 2904The phase @code{glib-or-gtk-compile-schemas} makes sure that all
3afcf52b 2905@uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html,
f97c9175 2906GSettings schemas} of GLib are compiled. Compilation is performed by the
3afcf52b
FB
2907@command{glib-compile-schemas} program. It is provided by the package
2908@code{glib:bin} which is automatically imported by the build system.
2909The @code{glib} package providing @command{glib-compile-schemas} can be
2910specified with the @code{#:glib} parameter.
2911@end table
2912
2913Both phases are executed after the @code{install} phase.
2914@end defvr
2915
7458bd0a
LC
2916@defvr {Scheme Variable} python-build-system
2917This variable is exported by @code{(guix build-system python)}. It
2918implements the more or less standard build procedure used by Python
2919packages, which consists in running @code{python setup.py build} and
2920then @code{python setup.py install --prefix=/gnu/store/@dots{}}.
2921
2922For packages that install stand-alone Python programs under @code{bin/},
f97c9175 2923it takes care of wrapping these programs so that their @code{PYTHONPATH}
7458bd0a
LC
2924environment variable points to all the Python libraries they depend on.
2925
8a46205b
CM
2926Which Python package is used to perform the build can be specified with
2927the @code{#:python} parameter. This is a useful way to force a package
2928to be built for a specific version of the Python interpreter, which
2929might be necessary if the package is only compatible with a single
2930interpreter version.
7458bd0a
LC
2931@end defvr
2932
2933@defvr {Scheme Variable} perl-build-system
2934This variable is exported by @code{(guix build-system perl)}. It
2d2a53fc
EB
2935implements the standard build procedure for Perl packages, which either
2936consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}},
2937followed by @code{Build} and @code{Build install}; or in running
2938@code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by
f97c9175 2939@code{make} and @code{make install}, depending on which of
2d2a53fc
EB
2940@code{Build.PL} or @code{Makefile.PL} is present in the package
2941distribution. Preference is given to the former if both @code{Build.PL}
2942and @code{Makefile.PL} exist in the package distribution. This
2943preference can be reversed by specifying @code{#t} for the
2944@code{#:make-maker?} parameter.
2945
2946The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation
2947passes flags specified by the @code{#:make-maker-flags} or
2948@code{#:module-build-flags} parameter, respectively.
7458bd0a
LC
2949
2950Which Perl package is used can be specified with @code{#:perl}.
2951@end defvr
2952
f8f3bef6
RW
2953@defvr {Scheme Variable} r-build-system
2954This variable is exported by @code{(guix build-system r)}. It
2955implements the build procedure used by @uref{http://r-project.org, R}
2956packages, which essentially is little more than running @code{R CMD
2957INSTALL --library=/gnu/store/@dots{}} in an environment where
2958@code{R_LIBS_SITE} contains the paths to all R package inputs. Tests
2959are run after installation using the R function
2960@code{tools::testInstalledPackage}.
2961@end defvr
2962
c08f9818
DT
2963@defvr {Scheme Variable} ruby-build-system
2964This variable is exported by @code{(guix build-system ruby)}. It
2965implements the RubyGems build procedure used by Ruby packages, which
2966involves running @code{gem build} followed by @code{gem install}.
2967
5dc87623
DT
2968The @code{source} field of a package that uses this build system
2969typically references a gem archive, since this is the format that Ruby
2970developers use when releasing their software. The build system unpacks
2971the gem archive, potentially patches the source, runs the test suite,
2972repackages the gem, and installs it. Additionally, directories and
2973tarballs may be referenced to allow building unreleased gems from Git or
2974a traditional source release tarball.
e83c6d00 2975
c08f9818 2976Which Ruby package is used can be specified with the @code{#:ruby}
6e9f2913
PP
2977parameter. A list of additional flags to be passed to the @command{gem}
2978command can be specified with the @code{#:gem-flags} parameter.
c08f9818 2979@end defvr
7458bd0a 2980
a677c726
RW
2981@defvr {Scheme Variable} waf-build-system
2982This variable is exported by @code{(guix build-system waf)}. It
2983implements a build procedure around the @code{waf} script. The common
2984phases---@code{configure}, @code{build}, and @code{install}---are
2985implemented by passing their names as arguments to the @code{waf}
2986script.
2987
2988The @code{waf} script is executed by the Python interpreter. Which
2989Python package is used to run the script can be specified with the
2990@code{#:python} parameter.
2991@end defvr
2992
14dfdf2e
FB
2993@defvr {Scheme Variable} haskell-build-system
2994This variable is exported by @code{(guix build-system haskell)}. It
2995implements the Cabal build procedure used by Haskell packages, which
2996involves running @code{runhaskell Setup.hs configure
2997--prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}.
2998Instead of installing the package by running @code{runhaskell Setup.hs
2999install}, to avoid trying to register libraries in the read-only
3000compiler store directory, the build system uses @code{runhaskell
3001Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In
3002addition, the build system generates the package documentation by
3003running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f}
3004is passed. Optional Haddock parameters can be passed with the help of
3005the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is
3006not found, the build system looks for @code{Setup.lhs} instead.
3007
3008Which Haskell compiler is used can be specified with the @code{#:haskell}
a54bd6d7 3009parameter which defaults to @code{ghc}.
14dfdf2e
FB
3010@end defvr
3011
e9137a53
FB
3012@defvr {Scheme Variable} emacs-build-system
3013This variable is exported by @code{(guix build-system emacs)}. It
f97c9175
AE
3014implements an installation procedure similar to the packaging system
3015of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
e9137a53
FB
3016
3017It first creates the @code{@var{package}-autoloads.el} file, then it
3018byte compiles all Emacs Lisp files. Differently from the Emacs
3019packaging system, the Info documentation files are moved to the standard
3020documentation directory and the @file{dir} file is deleted. Each
3021package is installed in its own directory under
3022@file{share/emacs/site-lisp/guix.d}.
3023@end defvr
3024
7458bd0a
LC
3025Lastly, for packages that do not need anything as sophisticated, a
3026``trivial'' build system is provided. It is trivial in the sense that
3027it provides basically no support: it does not pull any implicit inputs,
3028and does not have a notion of build phases.
3029
3030@defvr {Scheme Variable} trivial-build-system
3031This variable is exported by @code{(guix build-system trivial)}.
3032
3033This build system requires a @code{#:builder} argument. This argument
f97c9175 3034must be a Scheme expression that builds the package output(s)---as
7458bd0a
LC
3035with @code{build-expression->derivation} (@pxref{Derivations,
3036@code{build-expression->derivation}}).
3037@end defvr
3038
568717fd
LC
3039@node The Store
3040@section The Store
3041
e531ac2a 3042@cindex store
1ddee424 3043@cindex store items
e531ac2a
LC
3044@cindex store paths
3045
f97c9175
AE
3046Conceptually, the @dfn{store} is the place where derivations that have
3047been built successfully are stored---by default, @file{/gnu/store}.
1ddee424
LC
3048Sub-directories in the store are referred to as @dfn{store items} or
3049sometimes @dfn{store paths}. The store has an associated database that
3050contains information such as the store paths referred to by each store
3051path, and the list of @emph{valid} store items---results of successful
ef5f5c86
LC
3052builds. This database resides in @file{@var{localstatedir}/guix/db},
3053where @var{localstatedir} is the state directory specified @i{via}
3054@option{--localstatedir} at configure time, usually @file{/var}.
1ddee424
LC
3055
3056The store is @emph{always} accessed by the daemon on behalf of its clients
e531ac2a 3057(@pxref{Invoking guix-daemon}). To manipulate the store, clients
f97c9175
AE
3058connect to the daemon over a Unix-domain socket, send requests to it,
3059and read the result---these are remote procedure calls, or RPCs.
e531ac2a 3060
1ddee424
LC
3061@quotation Note
3062Users must @emph{never} modify files under @file{/gnu/store} directly.
3063This would lead to inconsistencies and break the immutability
3064assumptions of Guix's functional model (@pxref{Introduction}).
3065
3066@xref{Invoking guix gc, @command{guix gc --verify}}, for information on
3067how to check the integrity of the store and attempt recovery from
3068accidental modifications.
3069@end quotation
3070
e531ac2a
LC
3071The @code{(guix store)} module provides procedures to connect to the
3072daemon, and to perform RPCs. These are described below.
3073
3074@deffn {Scheme Procedure} open-connection [@var{file}] [#:reserve-space? #t]
3075Connect to the daemon over the Unix-domain socket at @var{file}. When
3076@var{reserve-space?} is true, instruct it to reserve a little bit of
3077extra space on the file system so that the garbage collector can still
f97c9175 3078operate should the disk become full. Return a server object.
e531ac2a
LC
3079
3080@var{file} defaults to @var{%default-socket-path}, which is the normal
3081location given the options that were passed to @command{configure}.
3082@end deffn
3083
3084@deffn {Scheme Procedure} close-connection @var{server}
3085Close the connection to @var{server}.
3086@end deffn
3087
3088@defvr {Scheme Variable} current-build-output-port
3089This variable is bound to a SRFI-39 parameter, which refers to the port
3090where build and error logs sent by the daemon should be written.
3091@end defvr
3092
3093Procedures that make RPCs all take a server object as their first
3094argument.
3095
3096@deffn {Scheme Procedure} valid-path? @var{server} @var{path}
06b76acc
LC
3097@cindex invalid store items
3098Return @code{#t} when @var{path} designates a valid store item and
3099@code{#f} otherwise (an invalid item may exist on disk but still be
3100invalid, for instance because it is the result of an aborted or failed
3101build.)
3102
3103A @code{&nix-protocol-error} condition is raised if @var{path} is not
3104prefixed by the store directory (@file{/gnu/store}).
e531ac2a
LC
3105@end deffn
3106
cfbf9160 3107@deffn {Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]
e531ac2a
LC
3108Add @var{text} under file @var{name} in the store, and return its store
3109path. @var{references} is the list of store paths referred to by the
3110resulting store path.
3111@end deffn
3112
874e6874 3113@deffn {Scheme Procedure} build-derivations @var{server} @var{derivations}
59688fc4
LC
3114Build @var{derivations} (a list of @code{<derivation>} objects or
3115derivation paths), and return when the worker is done building them.
3116Return @code{#t} on success.
874e6874
LC
3117@end deffn
3118
b860f382
LC
3119Note that the @code{(guix monads)} module provides a monad as well as
3120monadic versions of the above procedures, with the goal of making it
3121more convenient to work with code that accesses the store (@pxref{The
3122Store Monad}).
3123
e531ac2a
LC
3124@c FIXME
3125@i{This section is currently incomplete.}
568717fd
LC
3126
3127@node Derivations
3128@section Derivations
3129
874e6874
LC
3130@cindex derivations
3131Low-level build actions and the environment in which they are performed
70458ed5 3132are represented by @dfn{derivations}. A derivation contains the
874e6874
LC
3133following pieces of information:
3134
3135@itemize
3136@item
3137The outputs of the derivation---derivations produce at least one file or
3138directory in the store, but may produce more.
3139
3140@item
3141The inputs of the derivations, which may be other derivations or plain
3142files in the store (patches, build scripts, etc.)
3143
3144@item
3145The system type targeted by the derivation---e.g., @code{x86_64-linux}.
3146
3147@item
3148The file name of a build script in the store, along with the arguments
3149to be passed.
3150
3151@item
3152A list of environment variables to be defined.
3153
3154@end itemize
3155
3156@cindex derivation path
3157Derivations allow clients of the daemon to communicate build actions to
3158the store. They exist in two forms: as an in-memory representation,
3159both on the client- and daemon-side, and as files in the store whose
3160name end in @code{.drv}---these files are referred to as @dfn{derivation
3161paths}. Derivations paths can be passed to the @code{build-derivations}
3162procedure to perform the build actions they prescribe (@pxref{The
3163Store}).
3164
3165The @code{(guix derivations)} module provides a representation of
3166derivations as Scheme objects, along with procedures to create and
3167otherwise manipulate derivations. The lowest-level primitive to create
3168a derivation is the @code{derivation} procedure:
3169
1909431c
LC
3170@deffn {Scheme Procedure} derivation @var{store} @var{name} @var{builder} @
3171 @var{args} [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
2096ef47 3172 [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @
1909431c 3173 [#:system (%current-system)] [#:references-graphs #f] @
35b5ca78
LC
3174 [#:allowed-references #f] [#:disallowed-references #f] @
3175 [#:leaked-env-vars #f] [#:local-build? #f] @
4a6aeb67 3176 [#:substitutable? #t]
59688fc4
LC
3177Build a derivation with the given arguments, and return the resulting
3178@code{<derivation>} object.
874e6874 3179
2096ef47 3180When @var{hash} and @var{hash-algo} are given, a
874e6874 3181@dfn{fixed-output derivation} is created---i.e., one whose result is
36bbbbd1
LC
3182known in advance, such as a file download. If, in addition,
3183@var{recursive?} is true, then that fixed output may be an executable
3184file or a directory and @var{hash} must be the hash of an archive
3185containing this output.
5b0c9d16 3186
858e9282 3187When @var{references-graphs} is true, it must be a list of file
5b0c9d16
LC
3188name/store path pairs. In that case, the reference graph of each store
3189path is exported in the build environment in the corresponding file, in
3190a simple text format.
1909431c 3191
b53be755 3192When @var{allowed-references} is true, it must be a list of store items
35b5ca78
LC
3193or outputs that the derivation's output may refer to. Likewise,
3194@var{disallowed-references}, if true, must be a list of things the
3195outputs may @emph{not} refer to.
b53be755 3196
c0468155
LC
3197When @var{leaked-env-vars} is true, it must be a list of strings
3198denoting environment variables that are allowed to ``leak'' from the
3199daemon's environment to the build environment. This is only applicable
3200to fixed-output derivations---i.e., when @var{hash} is true. The main
3201use is to allow variables such as @code{http_proxy} to be passed to
3202derivations that download files.
3203
1909431c
LC
3204When @var{local-build?} is true, declare that the derivation is not a
3205good candidate for offloading and should rather be built locally
3206(@pxref{Daemon Offload Setup}). This is the case for small derivations
3207where the costs of data transfers would outweigh the benefits.
4a6aeb67
LC
3208
3209When @var{substitutable?} is false, declare that substitutes of the
3210derivation's output should not be used (@pxref{Substitutes}). This is
3211useful, for instance, when building packages that capture details of the
3212host CPU instruction set.
874e6874
LC
3213@end deffn
3214
3215@noindent
3216Here's an example with a shell script as its builder, assuming
3217@var{store} is an open connection to the daemon, and @var{bash} points
3218to a Bash executable in the store:
3219
3220@lisp
3221(use-modules (guix utils)
3222 (guix store)
3223 (guix derivations))
3224
59688fc4
LC
3225(let ((builder ; add the Bash script to the store
3226 (add-text-to-store store "my-builder.sh"
3227 "echo hello world > $out\n" '())))
3228 (derivation store "foo"
3229 bash `("-e" ,builder)
21b679f6 3230 #:inputs `((,bash) (,builder))
59688fc4 3231 #:env-vars '(("HOME" . "/homeless"))))
834129e0 3232@result{} #<derivation /gnu/store/@dots{}-foo.drv => /gnu/store/@dots{}-foo>
874e6874
LC
3233@end lisp
3234
21b679f6
LC
3235As can be guessed, this primitive is cumbersome to use directly. A
3236better approach is to write build scripts in Scheme, of course! The
3237best course of action for that is to write the build code as a
3238``G-expression'', and to pass it to @code{gexp->derivation}. For more
6621cdb6 3239information, @pxref{G-Expressions}.
21b679f6 3240
f2fadbc1
AE
3241Once upon a time, @code{gexp->derivation} did not exist and constructing
3242derivations with build code written in Scheme was achieved with
3243@code{build-expression->derivation}, documented below. This procedure
3244is now deprecated in favor of the much nicer @code{gexp->derivation}.
3245
3246@deffn {Scheme Procedure} build-expression->derivation @var{store} @
3247 @var{name} @var{exp} @
3248 [#:system (%current-system)] [#:inputs '()] @
3249 [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
3250 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
3251 [#:references-graphs #f] [#:allowed-references #f] @
35b5ca78 3252 [#:disallowed-references #f] @
f2fadbc1
AE
3253 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
3254Return a derivation that executes Scheme expression @var{exp} as a
3255builder for derivation @var{name}. @var{inputs} must be a list of
3256@code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted,
3257@code{"out"} is assumed. @var{modules} is a list of names of Guile
3258modules from the current search path to be copied in the store,
3259compiled, and made available in the load path during the execution of
3260@var{exp}---e.g., @code{((guix build utils) (guix build
3261gnu-build-system))}.
3262
3263@var{exp} is evaluated in an environment where @code{%outputs} is bound
3264to a list of output/path pairs, and where @code{%build-inputs} is bound
3265to a list of string/output-path pairs made from @var{inputs}.
3266Optionally, @var{env-vars} is a list of string pairs specifying the name
3267and value of environment variables visible to the builder. The builder
3268terminates by passing the result of @var{exp} to @code{exit}; thus, when
3269@var{exp} returns @code{#f}, the build is considered to have failed.
3270
3271@var{exp} is built using @var{guile-for-build} (a derivation). When
3272@var{guile-for-build} is omitted or is @code{#f}, the value of the
3273@code{%guile-for-build} fluid is used instead.
3274
3275See the @code{derivation} procedure for the meaning of
35b5ca78
LC
3276@var{references-graphs}, @var{allowed-references},
3277@var{disallowed-references}, @var{local-build?}, and
3278@var{substitutable?}.
f2fadbc1
AE
3279@end deffn
3280
3281@noindent
3282Here's an example of a single-output derivation that creates a directory
3283containing one file:
3284
3285@lisp
3286(let ((builder '(let ((out (assoc-ref %outputs "out")))
3287 (mkdir out) ; create /gnu/store/@dots{}-goo
3288 (call-with-output-file (string-append out "/test")
3289 (lambda (p)
3290 (display '(hello guix) p))))))
3291 (build-expression->derivation store "goo" builder))
3292
3293@result{} #<derivation /gnu/store/@dots{}-goo.drv => @dots{}>
3294@end lisp
3295
568717fd 3296
b860f382
LC
3297@node The Store Monad
3298@section The Store Monad
3299
3300@cindex monad
3301
3302The procedures that operate on the store described in the previous
3303sections all take an open connection to the build daemon as their first
3304argument. Although the underlying model is functional, they either have
3305side effects or depend on the current state of the store.
3306
3307The former is inconvenient: the connection to the build daemon has to be
3308carried around in all those functions, making it impossible to compose
3309functions that do not take that parameter with functions that do. The
3310latter can be problematic: since store operations have side effects
3311and/or depend on external state, they have to be properly sequenced.
3312
3313@cindex monadic values
3314@cindex monadic functions
3315This is where the @code{(guix monads)} module comes in. This module
3316provides a framework for working with @dfn{monads}, and a particularly
3317useful monad for our uses, the @dfn{store monad}. Monads are a
3318construct that allows two things: associating ``context'' with values
3319(in our case, the context is the store), and building sequences of
4827b36d 3320computations (here computations include accesses to the store). Values
b860f382
LC
3321in a monad---values that carry this additional context---are called
3322@dfn{monadic values}; procedures that return such values are called
3323@dfn{monadic procedures}.
3324
3325Consider this ``normal'' procedure:
3326
3327@example
45adbd62
LC
3328(define (sh-symlink store)
3329 ;; Return a derivation that symlinks the 'bash' executable.
3330 (let* ((drv (package-derivation store bash))
3331 (out (derivation->output-path drv))
3332 (sh (string-append out "/bin/bash")))
3333 (build-expression->derivation store "sh"
3334 `(symlink ,sh %output))))
b860f382
LC
3335@end example
3336
c6f30b81
LC
3337Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten
3338as a monadic function:
b860f382
LC
3339
3340@example
45adbd62 3341(define (sh-symlink)
b860f382 3342 ;; Same, but return a monadic value.
c6f30b81
LC
3343 (mlet %store-monad ((drv (package->derivation bash)))
3344 (gexp->derivation "sh"
3345 #~(symlink (string-append #$drv "/bin/bash")
3346 #$output))))
b860f382
LC
3347@end example
3348
4827b36d 3349There are several things to note in the second version: the @code{store}
c6f30b81
LC
3350parameter is now implicit and is ``threaded'' in the calls to the
3351@code{package->derivation} and @code{gexp->derivation} monadic
3352procedures, and the monadic value returned by @code{package->derivation}
3353is @dfn{bound} using @code{mlet} instead of plain @code{let}.
3354
3355As it turns out, the call to @code{package->derivation} can even be
3356omitted since it will take place implicitly, as we will see later
3357(@pxref{G-Expressions}):
3358
3359@example
3360(define (sh-symlink)
3361 (gexp->derivation "sh"
3362 #~(symlink (string-append #$bash "/bin/bash")
3363 #$output)))
3364@end example
b860f382 3365
7ce21611 3366@c See
a01ad638 3367@c <https://syntaxexclamation.wordpress.com/2014/06/26/escaping-continuations/>
7ce21611
LC
3368@c for the funny quote.
3369Calling the monadic @code{sh-symlink} has no effect. As someone once
3370said, ``you exit a monad like you exit a building on fire: by running''.
3371So, to exit the monad and get the desired effect, one must use
3372@code{run-with-store}:
b860f382
LC
3373
3374@example
8e9aa37f
CAW
3375(run-with-store (open-connection) (sh-symlink))
3376@result{} /gnu/store/...-sh-symlink
b860f382
LC
3377@end example
3378
f97c9175 3379Note that the @code{(guix monad-repl)} module extends the Guile REPL with
b9b86078 3380new ``meta-commands'' to make it easier to deal with monadic procedures:
f97c9175 3381@code{run-in-store}, and @code{enter-store-monad}. The former is used
b9b86078
LC
3382to ``run'' a single monadic value through the store:
3383
3384@example
3385scheme@@(guile-user)> ,run-in-store (package->derivation hello)
3386$1 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3387@end example
3388
3389The latter enters a recursive REPL, where all the return values are
3390automatically run through the store:
3391
3392@example
3393scheme@@(guile-user)> ,enter-store-monad
3394store-monad@@(guile-user) [1]> (package->derivation hello)
3395$2 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3396store-monad@@(guile-user) [1]> (text-file "foo" "Hello!")
3397$3 = "/gnu/store/@dots{}-foo"
3398store-monad@@(guile-user) [1]> ,q
3399scheme@@(guile-user)>
3400@end example
3401
3402@noindent
3403Note that non-monadic values cannot be returned in the
3404@code{store-monad} REPL.
3405
e87f0591
LC
3406The main syntactic forms to deal with monads in general are provided by
3407the @code{(guix monads)} module and are described below.
b860f382
LC
3408
3409@deffn {Scheme Syntax} with-monad @var{monad} @var{body} ...
3410Evaluate any @code{>>=} or @code{return} forms in @var{body} as being
3411in @var{monad}.
3412@end deffn
3413
3414@deffn {Scheme Syntax} return @var{val}
3415Return a monadic value that encapsulates @var{val}.
3416@end deffn
3417
751630c9 3418@deffn {Scheme Syntax} >>= @var{mval} @var{mproc} ...
b860f382 3419@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic
751630c9
LC
3420procedures @var{mproc}@dots{}@footnote{This operation is commonly
3421referred to as ``bind'', but that name denotes an unrelated procedure in
3422Guile. Thus we use this somewhat cryptic symbol inherited from the
3423Haskell language.}. There can be one @var{mproc} or several of them, as
3424in this example:
3425
3426@example
3427(run-with-state
3428 (with-monad %state-monad
3429 (>>= (return 1)
3430 (lambda (x) (return (+ 1 x)))
3431 (lambda (x) (return (* 2 x)))))
3432 'some-state)
3433
3434@result{} 4
3435@result{} some-state
3436@end example
b860f382
LC
3437@end deffn
3438
3439@deffn {Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @
3440 @var{body} ...
3441@deffnx {Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @
3442 @var{body} ...
3443Bind the variables @var{var} to the monadic values @var{mval} in
3444@var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the
3445``normal'' value @var{val}, as per @code{let}.
3446
3447@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let}
3448(@pxref{Local Bindings,,, guile, GNU Guile Reference Manual}).
3449@end deffn
3450
405a9d4e
LC
3451@deffn {Scheme System} mbegin @var{monad} @var{mexp} ...
3452Bind @var{mexp} and the following monadic expressions in sequence,
3453returning the result of the last expression.
3454
3455This is akin to @code{mlet}, except that the return values of the
3456monadic expressions are ignored. In that sense, it is analogous to
3457@code{begin}, but applied to monadic expressions.
3458@end deffn
3459
561fb6c3
LC
3460@cindex state monad
3461The @code{(guix monads)} module provides the @dfn{state monad}, which
3462allows an additional value---the state---to be @emph{threaded} through
3463monadic procedure calls.
3464
3465@defvr {Scheme Variable} %state-monad
3466The state monad. Procedures in the state monad can access and change
3467the state that is threaded.
3468
3469Consider the example below. The @code{square} procedure returns a value
3470in the state monad. It returns the square of its argument, but also
3471increments the current state value:
3472
3473@example
3474(define (square x)
3475 (mlet %state-monad ((count (current-state)))
3476 (mbegin %state-monad
3477 (set-current-state (+ 1 count))
3478 (return (* x x)))))
3479
3480(run-with-state (sequence %state-monad (map square (iota 3))) 0)
3481@result{} (0 1 4)
3482@result{} 3
3483@end example
3484
3485When ``run'' through @var{%state-monad}, we obtain that additional state
3486value, which is the number of @code{square} calls.
3487@end defvr
3488
3489@deffn {Monadic Procedure} current-state
3490Return the current state as a monadic value.
3491@end deffn
3492
3493@deffn {Monadic Procedure} set-current-state @var{value}
3494Set the current state to @var{value} and return the previous state as a
3495monadic value.
3496@end deffn
3497
3498@deffn {Monadic Procedure} state-push @var{value}
3499Push @var{value} to the current state, which is assumed to be a list,
3500and return the previous state as a monadic value.
3501@end deffn
3502
3503@deffn {Monadic Procedure} state-pop
3504Pop a value from the current state and return it as a monadic value.
3505The state is assumed to be a list.
3506@end deffn
3507
3508@deffn {Scheme Procedure} run-with-state @var{mval} [@var{state}]
3509Run monadic value @var{mval} starting with @var{state} as the initial
3510state. Return two values: the resulting value, and the resulting state.
3511@end deffn
3512
e87f0591
LC
3513The main interface to the store monad, provided by the @code{(guix
3514store)} module, is as follows.
b860f382
LC
3515
3516@defvr {Scheme Variable} %store-monad
561fb6c3
LC
3517The store monad---an alias for @var{%state-monad}.
3518
3519Values in the store monad encapsulate accesses to the store. When its
3520effect is needed, a value of the store monad must be ``evaluated'' by
3521passing it to the @code{run-with-store} procedure (see below.)
b860f382
LC
3522@end defvr
3523
3524@deffn {Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]
3525Run @var{mval}, a monadic value in the store monad, in @var{store}, an
3526open store connection.
3527@end deffn
3528
ad372953 3529@deffn {Monadic Procedure} text-file @var{name} @var{text} [@var{references}]
b860f382 3530Return as a monadic value the absolute file name in the store of the file
ad372953
LC
3531containing @var{text}, a string. @var{references} is a list of store items that the
3532resulting text file refers to; it defaults to the empty list.
45adbd62
LC
3533@end deffn
3534
0a90af15 3535@deffn {Monadic Procedure} interned-file @var{file} [@var{name}] @
1ec32f4a 3536 [#:recursive? #t] [#:select? (const #t)]
0a90af15
LC
3537Return the name of @var{file} once interned in the store. Use
3538@var{name} as its store name, or the basename of @var{file} if
3539@var{name} is omitted.
3540
3541When @var{recursive?} is true, the contents of @var{file} are added
3542recursively; if @var{file} designates a flat file and @var{recursive?}
3543is true, its contents are added, and its permission bits are kept.
3544
1ec32f4a
LC
3545When @var{recursive?} is true, call @code{(@var{select?} @var{file}
3546@var{stat})} for each directory entry, where @var{file} is the entry's
3547absolute file name and @var{stat} is the result of @code{lstat}; exclude
3548entries for which @var{select?} does not return true.
3549
0a90af15
LC
3550The example below adds a file to the store, under two different names:
3551
3552@example
3553(run-with-store (open-connection)
3554 (mlet %store-monad ((a (interned-file "README"))
3555 (b (interned-file "README" "LEGU-MIN")))
3556 (return (list a b))))
3557
3558@result{} ("/gnu/store/rwm@dots{}-README" "/gnu/store/44i@dots{}-LEGU-MIN")
3559@end example
3560
3561@end deffn
3562
e87f0591
LC
3563The @code{(guix packages)} module exports the following package-related
3564monadic procedures:
3565
b860f382 3566@deffn {Monadic Procedure} package-file @var{package} [@var{file}] @
4231f05b 3567 [#:system (%current-system)] [#:target #f] @
f97c9175
AE
3568 [#:output "out"]
3569Return as a monadic
b860f382
LC
3570value in the absolute file name of @var{file} within the @var{output}
3571directory of @var{package}. When @var{file} is omitted, return the name
4231f05b
LC
3572of the @var{output} directory of @var{package}. When @var{target} is
3573true, use it as a cross-compilation target triplet.
b860f382
LC
3574@end deffn
3575
b860f382 3576@deffn {Monadic Procedure} package->derivation @var{package} [@var{system}]
4231f05b
LC
3577@deffnx {Monadic Procedure} package->cross-derivation @var{package} @
3578 @var{target} [@var{system}]
3579Monadic version of @code{package-derivation} and
3580@code{package-cross-derivation} (@pxref{Defining Packages}).
b860f382
LC
3581@end deffn
3582
3583
21b679f6
LC
3584@node G-Expressions
3585@section G-Expressions
3586
3587@cindex G-expression
3588@cindex build code quoting
3589So we have ``derivations'', which represent a sequence of build actions
3590to be performed to produce an item in the store (@pxref{Derivations}).
f97c9175 3591These build actions are performed when asking the daemon to actually
21b679f6
LC
3592build the derivations; they are run by the daemon in a container
3593(@pxref{Invoking guix-daemon}).
3594
3595@cindex strata of code
f97c9175 3596It should come as no surprise that we like to write these build actions
21b679f6
LC
3597in Scheme. When we do that, we end up with two @dfn{strata} of Scheme
3598code@footnote{The term @dfn{stratum} in this context was coined by
ef4ab0a4
LC
3599Manuel Serrano et al.@: in the context of their work on Hop. Oleg
3600Kiselyov, who has written insightful
3601@url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code
3602on this topic}, refers to this kind of code generation as
3603@dfn{staging}.}: the ``host code''---code that defines packages, talks
3604to the daemon, etc.---and the ``build code''---code that actually
3605performs build actions, such as making directories, invoking
3606@command{make}, etc.
21b679f6
LC
3607
3608To describe a derivation and its build actions, one typically needs to
3609embed build code inside host code. It boils down to manipulating build
f97c9175 3610code as data, and the homoiconicity of Scheme---code has a direct
21b679f6 3611representation as data---comes in handy for that. But we need more than
f97c9175 3612the normal @code{quasiquote} mechanism in Scheme to construct build
21b679f6
LC
3613expressions.
3614
3615The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of
3616S-expressions adapted to build expressions. G-expressions, or
f97c9175 3617@dfn{gexps}, consist essentially of three syntactic forms: @code{gexp},
21b679f6 3618@code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~},
f97c9175
AE
3619@code{#$}, and @code{#$@@}), which are comparable to
3620@code{quasiquote}, @code{unquote}, and @code{unquote-splicing},
4827b36d 3621respectively (@pxref{Expression Syntax, @code{quasiquote},, guile,
f97c9175 3622GNU Guile Reference Manual}). However, there are major differences:
21b679f6
LC
3623
3624@itemize
3625@item
3626Gexps are meant to be written to a file and run or manipulated by other
3627processes.
3628
3629@item
b39fc6f7
LC
3630When a high-level object such as a package or derivation is unquoted
3631inside a gexp, the result is as if its output file name had been
3632introduced.
ff40e9b7 3633
21b679f6
LC
3634@item
3635Gexps carry information about the packages or derivations they refer to,
3636and these dependencies are automatically added as inputs to the build
3637processes that use them.
3638@end itemize
3639
c2b84676 3640@cindex lowering, of high-level objects in gexps
343eacbe
LC
3641This mechanism is not limited to package and derivation
3642objects: @dfn{compilers} able to ``lower'' other high-level objects to
c2b84676
LC
3643derivations or files in the store can be defined,
3644such that these objects can also be inserted
f97c9175 3645into gexps. For example, a useful type of high-level objects that can be
343eacbe 3646inserted in a gexp is ``file-like objects'', which make it easy to
f97c9175 3647add files to the store and to refer to them in
558e8b11
LC
3648derivations and such (see @code{local-file} and @code{plain-file}
3649below.)
b39fc6f7 3650
21b679f6
LC
3651To illustrate the idea, here is an example of a gexp:
3652
3653@example
3654(define build-exp
3655 #~(begin
3656 (mkdir #$output)
3657 (chdir #$output)
aff8ce7c 3658 (symlink (string-append #$coreutils "/bin/ls")
21b679f6
LC
3659 "list-files")))
3660@end example
3661
3662This gexp can be passed to @code{gexp->derivation}; we obtain a
3663derivation that builds a directory containing exactly one symlink to
3664@file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:
3665
3666@example
3667(gexp->derivation "the-thing" build-exp)
3668@end example
3669
e20fd1bf 3670As one would expect, the @code{"/gnu/store/@dots{}-coreutils-8.22"} string is
21b679f6
LC
3671substituted to the reference to the @var{coreutils} package in the
3672actual build code, and @var{coreutils} is automatically made an input to
3673the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp
f97c9175
AE
3674output)}) is replaced by a string containing the directory name of the
3675output of the derivation.
667b2508
LC
3676
3677@cindex cross compilation
3678In a cross-compilation context, it is useful to distinguish between
3679references to the @emph{native} build of a package---that can run on the
3680host---versus references to cross builds of a package. To that end, the
3681@code{#+} plays the same role as @code{#$}, but is a reference to a
3682native package build:
3683
3684@example
3685(gexp->derivation "vi"
3686 #~(begin
3687 (mkdir #$output)
3688 (system* (string-append #+coreutils "/bin/ln")
3689 "-s"
3690 (string-append #$emacs "/bin/emacs")
3691 (string-append #$output "/bin/vi")))
3692 #:target "mips64el-linux")
3693@end example
3694
3695@noindent
3696In the example above, the native build of @var{coreutils} is used, so
3697that @command{ln} can actually run on the host; but then the
3698cross-compiled build of @var{emacs} is referenced.
3699
0bb9929e
LC
3700@cindex imported modules, for gexps
3701@findex with-imported-modules
3702Another gexp feature is @dfn{imported modules}: sometimes you want to be
3703able to use certain Guile modules from the ``host environment'' in the
3704gexp, so those modules should be imported in the ``build environment''.
3705The @code{with-imported-modules} form allows you to express that:
3706
3707@example
3708(let ((build (with-imported-modules '((guix build utils))
3709 #~(begin
3710 (use-modules (guix build utils))
3711 (mkdir-p (string-append #$output "/bin"))))))
3712 (gexp->derivation "empty-dir"
3713 #~(begin
3714 #$build
3715 (display "success!\n")
3716 #t)))
3717@end example
3718
3719@noindent
3720In this example, the @code{(guix build utils)} module is automatically
3721pulled into the isolated build environment of our gexp, such that
3722@code{(use-modules (guix build utils))} works as expected.
3723
667b2508 3724The syntactic form to construct gexps is summarized below.
21b679f6
LC
3725
3726@deffn {Scheme Syntax} #~@var{exp}
3727@deffnx {Scheme Syntax} (gexp @var{exp})
3728Return a G-expression containing @var{exp}. @var{exp} may contain one
3729or more of the following forms:
3730
3731@table @code
3732@item #$@var{obj}
3733@itemx (ungexp @var{obj})
b39fc6f7
LC
3734Introduce a reference to @var{obj}. @var{obj} may have one of the
3735supported types, for example a package or a
21b679f6
LC
3736derivation, in which case the @code{ungexp} form is replaced by its
3737output file name---e.g., @code{"/gnu/store/@dots{}-coreutils-8.22}.
3738
b39fc6f7
LC
3739If @var{obj} is a list, it is traversed and references to supported
3740objects are substituted similarly.
21b679f6
LC
3741
3742If @var{obj} is another gexp, its contents are inserted and its
3743dependencies are added to those of the containing gexp.
3744
3745If @var{obj} is another kind of object, it is inserted as is.
3746
b39fc6f7
LC
3747@item #$@var{obj}:@var{output}
3748@itemx (ungexp @var{obj} @var{output})
21b679f6 3749This is like the form above, but referring explicitly to the
b39fc6f7
LC
3750@var{output} of @var{obj}---this is useful when @var{obj} produces
3751multiple outputs (@pxref{Packages with Multiple Outputs}).
21b679f6 3752
667b2508
LC
3753@item #+@var{obj}
3754@itemx #+@var{obj}:output
3755@itemx (ungexp-native @var{obj})
3756@itemx (ungexp-native @var{obj} @var{output})
3757Same as @code{ungexp}, but produces a reference to the @emph{native}
3758build of @var{obj} when used in a cross compilation context.
3759
21b679f6
LC
3760@item #$output[:@var{output}]
3761@itemx (ungexp output [@var{output}])
3762Insert a reference to derivation output @var{output}, or to the main
3763output when @var{output} is omitted.
3764
3765This only makes sense for gexps passed to @code{gexp->derivation}.
3766
3767@item #$@@@var{lst}
3768@itemx (ungexp-splicing @var{lst})
3769Like the above, but splices the contents of @var{lst} inside the
3770containing list.
3771
667b2508
LC
3772@item #+@@@var{lst}
3773@itemx (ungexp-native-splicing @var{lst})
3774Like the above, but refers to native builds of the objects listed in
3775@var{lst}.
3776
21b679f6
LC
3777@end table
3778
3779G-expressions created by @code{gexp} or @code{#~} are run-time objects
3780of the @code{gexp?} type (see below.)
3781@end deffn
3782
0bb9929e
LC
3783@deffn {Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}
3784Mark the gexps defined in @var{body}@dots{} as requiring @var{modules}
3785in their execution environment. @var{modules} must be a list of Guile
3786module names, such as @code{'((guix build utils) (guix build gremlin))}.
3787
3788This form has @emph{lexical} scope: it has an effect on the gexps
3789directly defined in @var{body}@dots{}, but not on those defined, say, in
3790procedures called from @var{body}@dots{}.
3791@end deffn
3792
21b679f6
LC
3793@deffn {Scheme Procedure} gexp? @var{obj}
3794Return @code{#t} if @var{obj} is a G-expression.
3795@end deffn
3796
3797G-expressions are meant to be written to disk, either as code building
3798some derivation, or as plain files in the store. The monadic procedures
3799below allow you to do that (@pxref{The Store Monad}, for more
3800information about monads.)
3801
3802@deffn {Monadic Procedure} gexp->derivation @var{name} @var{exp} @
ce45eb4c 3803 [#:system (%current-system)] [#:target #f] [#:graft? #t] @
21b679f6
LC
3804 [#:hash #f] [#:hash-algo #f] @
3805 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
4684f301 3806 [#:module-path @var{%load-path}] @
c8351d9a 3807 [#:references-graphs #f] [#:allowed-references #f] @
3f4ecf32 3808 [#:disallowed-references #f] @
c0468155 3809 [#:leaked-env-vars #f] @
0309e1b0 3810 [#:script-name (string-append @var{name} "-builder")] @
4a6aeb67 3811 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
21b679f6 3812Return a derivation @var{name} that runs @var{exp} (a gexp) with
0309e1b0
LC
3813@var{guile-for-build} (a derivation) on @var{system}; @var{exp} is
3814stored in a file called @var{script-name}. When @var{target} is true,
3815it is used as the cross-compilation target triplet for packages referred
3816to by @var{exp}.
21b679f6 3817
0bb9929e
LC
3818@var{modules} is deprecated in favor of @code{with-imported-modules}.
3819Its meaning is to
3820make @var{modules} available in the evaluation context of @var{exp};
ce45eb4c
LC
3821@var{modules} is a list of names of Guile modules searched in
3822@var{module-path} to be copied in the store, compiled, and made available in
21b679f6
LC
3823the load path during the execution of @var{exp}---e.g., @code{((guix
3824build utils) (guix build gnu-build-system))}.
3825
ce45eb4c
LC
3826@var{graft?} determines whether packages referred to by @var{exp} should be grafted when
3827applicable.
3828
b53833b2
LC
3829When @var{references-graphs} is true, it must be a list of tuples of one of the
3830following forms:
3831
3832@example
3833(@var{file-name} @var{package})
3834(@var{file-name} @var{package} @var{output})
3835(@var{file-name} @var{derivation})
3836(@var{file-name} @var{derivation} @var{output})
3837(@var{file-name} @var{store-item})
3838@end example
3839
3840The right-hand-side of each element of @var{references-graphs} is automatically made
3841an input of the build process of @var{exp}. In the build environment, each
3842@var{file-name} contains the reference graph of the corresponding item, in a simple
3843text format.
3844
c8351d9a
LC
3845@var{allowed-references} must be either @code{#f} or a list of output names and packages.
3846In the latter case, the list denotes store items that the result is allowed to
3847refer to. Any reference to another store item will lead to a build error.
3f4ecf32
LC
3848Similarly for @var{disallowed-references}, which can list items that must not be
3849referenced by the outputs.
c8351d9a 3850
e20fd1bf 3851The other arguments are as for @code{derivation} (@pxref{Derivations}).
21b679f6
LC
3852@end deffn
3853
343eacbe 3854@cindex file-like objects
e1c153e0
LC
3855The @code{local-file}, @code{plain-file}, @code{computed-file},
3856@code{program-file}, and @code{scheme-file} procedures below return
3857@dfn{file-like objects}. That is, when unquoted in a G-expression,
3858these objects lead to a file in the store. Consider this G-expression:
343eacbe
LC
3859
3860@example
3861#~(system* (string-append #$glibc "/sbin/nscd") "-f"
3862 #$(local-file "/tmp/my-nscd.conf"))
3863@end example
3864
3865The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it
3866to the store. Once expanded, for instance @i{via}
3867@code{gexp->derivation}, the G-expression refers to that copy under
3868@file{/gnu/store}; thus, modifying or removing the file in @file{/tmp}
3869does not have any effect on what the G-expression does.
3870@code{plain-file} can be used similarly; it differs in that the file
3871content is directly passed as a string.
3872
d9ae938f 3873@deffn {Scheme Procedure} local-file @var{file} [@var{name}] @
0687fc9c 3874 [#:recursive? #f] [#:select? (const #t)]
d9ae938f 3875Return an object representing local file @var{file} to add to the store; this
9d3994f7
LC
3876object can be used in a gexp. If @var{file} is a relative file name, it is looked
3877up relative to the source file where this form appears. @var{file} will be added to
3878the store under @var{name}--by default the base name of @var{file}.
d9ae938f
LC
3879
3880When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file}
3881designates a flat file and @var{recursive?} is true, its contents are added, and its
3882permission bits are kept.
3883
0687fc9c
LC
3884When @var{recursive?} is true, call @code{(@var{select?} @var{file}
3885@var{stat})} for each directory entry, where @var{file} is the entry's
3886absolute file name and @var{stat} is the result of @code{lstat}; exclude
3887entries for which @var{select?} does not return true.
3888
d9ae938f
LC
3889This is the declarative counterpart of the @code{interned-file} monadic
3890procedure (@pxref{The Store Monad, @code{interned-file}}).
3891@end deffn
3892
558e8b11
LC
3893@deffn {Scheme Procedure} plain-file @var{name} @var{content}
3894Return an object representing a text file called @var{name} with the given
3895@var{content} (a string) to be added to the store.
3896
3897This is the declarative counterpart of @code{text-file}.
3898@end deffn
3899
91937029
LC
3900@deffn {Scheme Procedure} computed-file @var{name} @var{gexp} @
3901 [#:modules '()] [#:options '(#:local-build? #t)]
3902Return an object representing the store item @var{name}, a file or
3903directory computed by @var{gexp}. @var{modules} specifies the set of
3904modules visible in the execution context of @var{gexp}. @var{options}
3905is a list of additional arguments to pass to @code{gexp->derivation}.
3906
3907This is the declarative counterpart of @code{gexp->derivation}.
3908@end deffn
3909
21b679f6
LC
3910@deffn {Monadic Procedure} gexp->script @var{name} @var{exp}
3911Return an executable script @var{name} that runs @var{exp} using
3912@var{guile} with @var{modules} in its search path.
3913
3914The example below builds a script that simply invokes the @command{ls}
3915command:
3916
3917@example
3918(use-modules (guix gexp) (gnu packages base))
3919
3920(gexp->script "list-files"
3921 #~(execl (string-append #$coreutils "/bin/ls")
3922 "ls"))
3923@end example
3924
3925When ``running'' it through the store (@pxref{The Store Monad,
e20fd1bf 3926@code{run-with-store}}), we obtain a derivation that produces an
21b679f6
LC
3927executable file @file{/gnu/store/@dots{}-list-files} along these lines:
3928
3929@example
3930#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds
3931!#
3932(execl (string-append "/gnu/store/@dots{}-coreutils-8.22"/bin/ls")
3933 "ls")
3934@end example
3935@end deffn
3936
15a01c72
LC
3937@deffn {Scheme Procedure} program-file @var{name} @var{exp} @
3938 [#:modules '()] [#:guile #f]
3939Return an object representing the executable store item @var{name} that
3940runs @var{gexp}. @var{guile} is the Guile package used to execute that
3941script, and @var{modules} is the list of modules visible to that script.
3942
3943This is the declarative counterpart of @code{gexp->script}.
3944@end deffn
3945
21b679f6
LC
3946@deffn {Monadic Procedure} gexp->file @var{name} @var{exp}
3947Return a derivation that builds a file @var{name} containing @var{exp}.
3948
3949The resulting file holds references to all the dependencies of @var{exp}
3950or a subset thereof.
3951@end deffn
1ed19464 3952
e1c153e0
LC
3953@deffn {Scheme Procedure} scheme-file @var{name} @var{exp}
3954Return an object representing the Scheme file @var{name} that contains
3955@var{exp}.
3956
3957This is the declarative counterpart of @code{gexp->file}.
3958@end deffn
3959
1ed19464
LC
3960@deffn {Monadic Procedure} text-file* @var{name} @var{text} @dots{}
3961Return as a monadic value a derivation that builds a text file
3962containing all of @var{text}. @var{text} may list, in addition to
d9ae938f
LC
3963strings, objects of any type that can be used in a gexp: packages,
3964derivations, local file objects, etc. The resulting store file holds
3965references to all these.
1ed19464
LC
3966
3967This variant should be preferred over @code{text-file} anytime the file
3968to create will reference items from the store. This is typically the
3969case when building a configuration file that embeds store file names,
3970like this:
3971
3972@example
3973(define (profile.sh)
3974 ;; Return the name of a shell script in the store that
3975 ;; initializes the 'PATH' environment variable.
3976 (text-file* "profile.sh"
3977 "export PATH=" coreutils "/bin:"
3978 grep "/bin:" sed "/bin\n"))
3979@end example
3980
3981In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file
b7899749 3982will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby
1ed19464
LC
3983preventing them from being garbage-collected during its lifetime.
3984@end deffn
21b679f6 3985
b751cde3
LC
3986@deffn {Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}
3987Return an object representing store file @var{name} containing
3988@var{text}. @var{text} is a sequence of strings and file-like objects,
3989as in:
3990
3991@example
3992(mixed-text-file "profile"
3993 "export PATH=" coreutils "/bin:" grep "/bin")
3994@end example
3995
3996This is the declarative counterpart of @code{text-file*}.
3997@end deffn
3998
21b679f6
LC
3999Of course, in addition to gexps embedded in ``host'' code, there are
4000also modules containing build tools. To make it clear that they are
4001meant to be used in the build stratum, these modules are kept in the
4002@code{(guix build @dots{})} name space.
4003
c2b84676
LC
4004@cindex lowering, of high-level objects in gexps
4005Internally, high-level objects are @dfn{lowered}, using their compiler,
4006to either derivations or store items. For instance, lowering a package
4007yields a derivation, and lowering a @code{plain-file} yields a store
4008item. This is achieved using the @code{lower-object} monadic procedure.
4009
4010@deffn {Monadic Procedure} lower-object @var{obj} [@var{system}] @
4011 [#:target #f]
4012Return as a value in @var{%store-monad} the derivation or store item
4013corresponding to @var{obj} for @var{system}, cross-compiling for
4014@var{target} if @var{target} is true. @var{obj} must be an object that
4015has an associated gexp compiler, such as a @code{<package>}.
4016@end deffn
4017
21b679f6 4018
568717fd
LC
4019@c *********************************************************************
4020@node Utilities
4021@chapter Utilities
4022
6f773606
LC
4023This section describes Guix command-line utilities. Some of them are
4024primarily targeted at developers and users who write new package
4025definitions, while others are more generally useful. They complement
4026the Scheme programming interface of Guix in a convenient way.
210cc920 4027
568717fd 4028@menu
37166310 4029* Invoking guix build:: Building packages from the command line.
39bee8a2 4030* Invoking guix edit:: Editing package definitions.
210cc920 4031* Invoking guix download:: Downloading a file and printing its hash.
37166310 4032* Invoking guix hash:: Computing the cryptographic hash of a file.
2f7d2d91 4033* Invoking guix import:: Importing package definitions.
37166310 4034* Invoking guix refresh:: Updating package definitions.
b4f5e0e8 4035* Invoking guix lint:: Finding errors in package definitions.
fcc58db6 4036* Invoking guix size:: Profiling disk usage.
88856916 4037* Invoking guix graph:: Visualizing the graph of packages.
372c4bbc 4038* Invoking guix environment:: Setting up development environments.
aff8ce7c 4039* Invoking guix publish:: Sharing substitutes.
d23c20f1 4040* Invoking guix challenge:: Challenging substitute servers.
32efa254 4041* Invoking guix container:: Process isolation.
568717fd
LC
4042@end menu
4043
e49951eb
MW
4044@node Invoking guix build
4045@section Invoking @command{guix build}
568717fd 4046
e49951eb 4047The @command{guix build} command builds packages or derivations and
6798a8e4
LC
4048their dependencies, and prints the resulting store paths. Note that it
4049does not modify the user's profile---this is the job of the
e49951eb 4050@command{guix package} command (@pxref{Invoking guix package}). Thus,
6798a8e4
LC
4051it is mainly useful for distribution developers.
4052
4053The general syntax is:
c78bd12b
LC
4054
4055@example
e49951eb 4056guix build @var{options} @var{package-or-derivation}@dots{}
c78bd12b
LC
4057@end example
4058
f97c9175 4059As an example, the following command builds the latest versions of Emacs
ccd7158d
LC
4060and of Guile, displays their build logs, and finally displays the
4061resulting directories:
4062
4063@example
4064guix build emacs guile
4065@end example
4066
4067Similarly, the following command builds all the available packages:
4068
4069@example
5284339d 4070guix build --quiet --keep-going \
ccd7158d
LC
4071 `guix package -A | cut -f1,2 --output-delimiter=@@`
4072@end example
4073
c78bd12b 4074@var{package-or-derivation} may be either the name of a package found in
5401dd75
LC
4075the software distribution such as @code{coreutils} or
4076@code{coreutils-8.20}, or a derivation such as
834129e0 4077@file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a
e7f34eb0
LC
4078package with the corresponding name (and optionally version) is searched
4079for among the GNU distribution modules (@pxref{Package Modules}).
4080
4081Alternatively, the @code{--expression} option may be used to specify a
4082Scheme expression that evaluates to a package; this is useful when
b7899749 4083disambiguating among several same-named packages or package variants is
e7f34eb0 4084needed.
c78bd12b 4085
ccd7158d
LC
4086There may be zero or more @var{options}. The available options are
4087described in the subsections below.
4088
4089@menu
4090* Common Build Options:: Build options for most commands.
88ad6ded 4091* Package Transformation Options:: Creating variants of packages.
ccd7158d
LC
4092* Additional Build Options:: Options specific to 'guix build'.
4093@end menu
4094
4095@node Common Build Options
4096@subsection Common Build Options
4097
4098A number of options that control the build process are common to
4099@command{guix build} and other commands that can spawn builds, such as
4100@command{guix package} or @command{guix archive}. These are the
4101following:
4102
4103@table @code
4104
4105@item --load-path=@var{directory}
4106@itemx -L @var{directory}
4107Add @var{directory} to the front of the package module search path
4108(@pxref{Package Modules}).
4109
4110This allows users to define their own packages and make them visible to
4111the command-line tools.
4112
4113@item --keep-failed
4114@itemx -K
b7899749 4115Keep the build tree of failed builds. Thus, if a build fails, its build
ccd7158d
LC
4116tree is kept under @file{/tmp}, in a directory whose name is shown at
4117the end of the build log. This is useful when debugging build issues.
4118
4119@item --keep-going
4120@itemx -k
4121Keep going when some of the derivations fail to build; return only once
4122all the builds have either completed or failed.
4123
4124The default behavior is to stop as soon as one of the specified
4125derivations has failed.
4126
4127@item --dry-run
4128@itemx -n
4129Do not build the derivations.
4130
4131@item --fallback
4132When substituting a pre-built binary fails, fall back to building
4133packages locally.
4134
4135@item --substitute-urls=@var{urls}
4136@anchor{client-substitute-urls}
4137Consider @var{urls} the whitespace-separated list of substitute source
4138URLs, overriding the default list of URLs of @command{guix-daemon}
4139(@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs}).
4140
4141This means that substitutes may be downloaded from @var{urls}, provided
4142they are signed by a key authorized by the system administrator
4143(@pxref{Substitutes}).
4144
71e2065a
LC
4145When @var{urls} is the empty string, substitutes are effectively
4146disabled.
4147
ccd7158d
LC
4148@item --no-substitutes
4149Do not use substitutes for build products. That is, always build things
4150locally instead of allowing downloads of pre-built binaries
4151(@pxref{Substitutes}).
4152
7573d30f
LC
4153@item --no-grafts
4154Do not ``graft'' packages. In practice, this means that package updates
4155available as grafts are not applied. @xref{Security Updates}, for more
4156information on grafts.
4157
ccd7158d
LC
4158@item --rounds=@var{n}
4159Build each derivation @var{n} times in a row, and raise an error if
4160consecutive build results are not bit-for-bit identical.
4161
4162This is a useful way to detect non-deterministic builds processes.
4163Non-deterministic build processes are a problem because they make it
4164practically impossible for users to @emph{verify} whether third-party
4165binaries are genuine. @xref{Invoking guix challenge}, for more.
4166
4167Note that, currently, the differing build results are not kept around,
4168so you will have to manually investigate in case of an error---e.g., by
e66d1f59
ML
4169stashing one of the build results with @code{guix archive --export}
4170(@pxref{Invoking guix archive}), then rebuilding, and finally comparing
4171the two results.
ccd7158d
LC
4172
4173@item --no-build-hook
f97c9175 4174Do not attempt to offload builds @i{via} the ``build hook'' of the daemon
ccd7158d
LC
4175(@pxref{Daemon Offload Setup}). That is, always build things locally
4176instead of offloading builds to remote machines.
4177
4178@item --max-silent-time=@var{seconds}
4179When the build or substitution process remains silent for more than
4180@var{seconds}, terminate it and report a build failure.
4181
4182@item --timeout=@var{seconds}
4183Likewise, when the build or substitution process lasts for more than
4184@var{seconds}, terminate it and report a build failure.
4185
4186By default there is no timeout. This behavior can be restored with
4187@code{--timeout=0}.
4188
4189@item --verbosity=@var{level}
4190Use the given verbosity level. @var{level} must be an integer between 0
4191and 5; higher means more verbose output. Setting a level of 4 or more
4192may be helpful when debugging setup issues with the build daemon.
4193
4194@item --cores=@var{n}
4195@itemx -c @var{n}
4196Allow the use of up to @var{n} CPU cores for the build. The special
4197value @code{0} means to use as many CPU cores as available.
4198
4199@item --max-jobs=@var{n}
4200@itemx -M @var{n}
4201Allow at most @var{n} build jobs in parallel. @xref{Invoking
4202guix-daemon, @code{--max-jobs}}, for details about this option and the
4203equivalent @command{guix-daemon} option.
4204
4205@end table
4206
4207Behind the scenes, @command{guix build} is essentially an interface to
4208the @code{package-derivation} procedure of the @code{(guix packages)}
4209module, and to the @code{build-derivations} procedure of the @code{(guix
4210derivations)} module.
4211
4212In addition to options explicitly passed on the command line,
4213@command{guix build} and other @command{guix} commands that support
4214building honor the @code{GUIX_BUILD_OPTIONS} environment variable.
4215
4216@defvr {Environment Variable} GUIX_BUILD_OPTIONS
4217Users can define this variable to a list of command line options that
4218will automatically be used by @command{guix build} and other
4219@command{guix} commands that can perform builds, as in the example
4220below:
4221
4222@example
4223$ export GUIX_BUILD_OPTIONS="--no-substitutes -c 2 -L /foo/bar"
4224@end example
4225
4226These options are parsed independently, and the result is appended to
4227the parsed command-line options.
4228@end defvr
4229
88ad6ded
LC
4230
4231@node Package Transformation Options
4232@subsection Package Transformation Options
4233
4234@cindex package variants
4235Another set of command-line options supported by @command{guix build}
b8638f03 4236and also @command{guix package} are @dfn{package transformation
f97c9175 4237options}. These are options that make it possible to define @dfn{package
b8638f03
LC
4238variants}---for instance, packages built from different source code.
4239This is a convenient way to create customized packages on the fly
4240without having to type in the definitions of package variants
4241(@pxref{Defining Packages}).
88ad6ded
LC
4242
4243@table @code
4244
4245@item --with-source=@var{source}
4246Use @var{source} as the source of the corresponding package.
4247@var{source} must be a file name or a URL, as for @command{guix
4248download} (@pxref{Invoking guix download}).
4249
f97c9175
AE
4250The ``corresponding package'' is taken to be the one specified on the
4251command line the name of which matches the base of @var{source}---e.g.,
4252if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding
88ad6ded 4253package is @code{guile}. Likewise, the version string is inferred from
f97c9175 4254@var{source}; in the previous example, it is @code{2.0.10}.
88ad6ded
LC
4255
4256This option allows users to try out versions of packages other than the
4257one provided by the distribution. The example below downloads
4258@file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for
4259the @code{ed} package:
4260
4261@example
4262guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz
4263@end example
4264
4265As a developer, @code{--with-source} makes it easy to test release
4266candidates:
4267
4268@example
4269guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz
4270@end example
4271
4272@dots{} or to build from a checkout in a pristine environment:
4273
4274@example
4275$ git clone git://git.sv.gnu.org/guix.git
4276$ guix build guix --with-source=./guix
4277@end example
4278
47c0f92c
LC
4279@item --with-input=@var{package}=@var{replacement}
4280Replace dependency on @var{package} by a dependency on
4281@var{replacement}. @var{package} must be a package name, and
4282@var{replacement} must be a package specification such as @code{guile}
4283or @code{guile@@1.8}.
4284
f97c9175 4285For instance, the following command builds Guix, but replaces its
47c0f92c
LC
4286dependency on the current stable version of Guile with a dependency on
4287the development version of Guile, @code{guile-next}:
4288
4289@example
4290guix build --with-input=guile=guile-next guix
4291@end example
4292
4293This is a recursive, deep replacement. So in this example, both
4294@code{guix} and its dependency @code{guile-json} (which also depends on
4295@code{guile}) get rebuilt against @code{guile-next}.
4296
4297However, implicit inputs are left unchanged.
88ad6ded
LC
4298@end table
4299
ccd7158d
LC
4300@node Additional Build Options
4301@subsection Additional Build Options
4302
4303The command-line options presented below are specific to @command{guix
4304build}.
c78bd12b
LC
4305
4306@table @code
4307
5284339d
LC
4308@item --quiet
4309@itemx -q
4310Build quietly, without displaying the build log. Upon completion, the
4311build log is kept in @file{/var} (or similar) and can always be
4312retrieved using the @option{--log-file} option.
4313
34a1783f
DT
4314@item --file=@var{file}
4315@itemx -f @var{file}
4316
4317Build the package or derivation that the code within @var{file}
4318evaluates to.
4319
4320As an example, @var{file} might contain a package definition like this
4321(@pxref{Defining Packages}):
4322
4323@example
4324@verbatiminclude package-hello.scm
4325@end example
4326
c78bd12b
LC
4327@item --expression=@var{expr}
4328@itemx -e @var{expr}
ac5de156 4329Build the package or derivation @var{expr} evaluates to.
c78bd12b 4330
5401dd75 4331For example, @var{expr} may be @code{(@@ (gnu packages guile)
c78bd12b
LC
4332guile-1.8)}, which unambiguously designates this specific variant of
4333version 1.8 of Guile.
4334
f97c9175 4335Alternatively, @var{expr} may be a G-expression, in which case it is used
56b82106
LC
4336as a build program passed to @code{gexp->derivation}
4337(@pxref{G-Expressions}).
4338
4339Lastly, @var{expr} may refer to a zero-argument monadic procedure
ac5de156
LC
4340(@pxref{The Store Monad}). The procedure must return a derivation as a
4341monadic value, which is then passed through @code{run-with-store}.
4342
c78bd12b
LC
4343@item --source
4344@itemx -S
f97c9175 4345Build the source derivations of the packages, rather than the packages
c78bd12b
LC
4346themselves.
4347
e49951eb 4348For instance, @code{guix build -S gcc} returns something like
f97c9175
AE
4349@file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC
4350source tarball.
c78bd12b 4351
f9cc8971 4352The returned source tarball is the result of applying any patches and
f97c9175 4353code snippets specified in the package @code{origin} (@pxref{Defining
f9cc8971
LC
4354Packages}).
4355
2cdfe13d
EB
4356@item --sources
4357Fetch and return the source of @var{package-or-derivation} and all their
4358dependencies, recursively. This is a handy way to obtain a local copy
4359of all the source code needed to build @var{packages}, allowing you to
4360eventually build them even without network access. It is an extension
4361of the @code{--source} option and can accept one of the following
4362optional argument values:
4363
4364@table @code
4365@item package
4366This value causes the @code{--sources} option to behave in the same way
4367as the @code{--source} option.
4368
4369@item all
f97c9175
AE
4370Build the source derivations of all packages, including any source that
4371might be listed as @code{inputs}. This is the default value.
2cdfe13d
EB
4372
4373@example
4374$ guix build --sources tzdata
4375The following derivations will be built:
4376 /gnu/store/@dots{}-tzdata2015b.tar.gz.drv
4377 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
4378@end example
4379
4380@item transitive
f97c9175
AE
4381Build the source derivations of all packages, as well of all transitive
4382inputs to the packages. This can be used e.g. to
2cdfe13d
EB
4383prefetch package source for later offline building.
4384
4385@example
4386$ guix build --sources=transitive tzdata
4387The following derivations will be built:
4388 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
4389 /gnu/store/@dots{}-findutils-4.4.2.tar.xz.drv
4390 /gnu/store/@dots{}-grep-2.21.tar.xz.drv
4391 /gnu/store/@dots{}-coreutils-8.23.tar.xz.drv
4392 /gnu/store/@dots{}-make-4.1.tar.xz.drv
4393 /gnu/store/@dots{}-bash-4.3.tar.xz.drv
4394@dots{}
4395@end example
4396
4397@end table
4398
c78bd12b
LC
4399@item --system=@var{system}
4400@itemx -s @var{system}
4401Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of
f97c9175 4402the system type of the build host.
c78bd12b
LC
4403
4404An example use of this is on Linux-based systems, which can emulate
4405different personalities. For instance, passing
4406@code{--system=i686-linux} on an @code{x86_64-linux} system allows users
4407to build packages in a complete 32-bit environment.
4408
e55ec43d
LC
4409@item --target=@var{triplet}
4410@cindex cross-compilation
4411Cross-build for @var{triplet}, which must be a valid GNU triplet, such
4412as @code{"mips64el-linux-gnu"} (@pxref{Configuration Names, GNU
4413configuration triplets,, configure, GNU Configure and Build System}).
4414
a8d65643
LC
4415@anchor{build-check}
4416@item --check
4417@cindex determinism, checking
4418@cindex reproducibility, checking
4419Rebuild @var{package-or-derivation}, which are already available in the
4420store, and raise an error if the build results are not bit-for-bit
4421identical.
4422
f97c9175
AE
4423This mechanism allows you to check whether previously installed
4424substitutes are genuine (@pxref{Substitutes}), or whether the build result
4425of a package is deterministic. @xref{Invoking guix challenge}, for more
a8d65643
LC
4426background information and tools.
4427
7f3b2510
ED
4428When used in conjunction with @option{--keep-failed}, the differing
4429output is kept in the store, under @file{/gnu/store/@dots{}-check}.
4430This makes it easy to look for differences between the two results.
4431
c78bd12b
LC
4432@item --derivations
4433@itemx -d
4434Return the derivation paths, not the output paths, of the given
4435packages.
4436
70ee5642
LC
4437@item --root=@var{file}
4438@itemx -r @var{file}
4439Make @var{file} a symlink to the result, and register it as a garbage
4440collector root.
4441
4442@item --log-file
3f208ad7 4443Return the build log file names or URLs for the given
f97c9175 4444@var{package-or-derivation}, or raise an error if build logs are
70ee5642
LC
4445missing.
4446
4447This works regardless of how packages or derivations are specified. For
4448instance, the following invocations are equivalent:
4449
4450@example
4451guix build --log-file `guix build -d guile`
4452guix build --log-file `guix build guile`
4453guix build --log-file guile
4454guix build --log-file -e '(@@ (gnu packages guile) guile-2.0)'
4455@end example
4456
3f208ad7
LC
4457If a log is unavailable locally, and unless @code{--no-substitutes} is
4458passed, the command looks for a corresponding log on one of the
4459substitute servers (as specified with @code{--substitute-urls}.)
70ee5642 4460
f97c9175
AE
4461So for instance, imagine you want to see the build log of GDB on MIPS,
4462but you are actually on an @code{x86_64} machine:
3f208ad7
LC
4463
4464@example
a01ad638 4465$ guix build --log-file gdb -s mips64el-linux
df061d07 4466https://hydra.gnu.org/log/@dots{}-gdb-7.10
3f208ad7
LC
4467@end example
4468
4469You can freely access a huge library of build logs!
70ee5642
LC
4470@end table
4471
16eb115e 4472
39bee8a2
LC
4473@node Invoking guix edit
4474@section Invoking @command{guix edit}
4475
4476@cindex package definition, editing
4477So many packages, so many source files! The @command{guix edit} command
4478facilitates the life of packagers by pointing their editor at the source
4479file containing the definition of the specified packages. For instance:
4480
4481@example
7b9a66e5 4482guix edit gcc@@4.9 vim
39bee8a2
LC
4483@end example
4484
4485@noindent
6237b9fa 4486launches the program specified in the @code{VISUAL} or in the
7b9a66e5 4487@code{EDITOR} environment variable to edit the recipe of GCC@tie{}4.9.3
6237b9fa 4488and that of Vim.
39bee8a2 4489
f97c9175 4490If you are using Emacs, note that the Emacs user interface provides the
7c1b1ae2 4491@kbd{M-x guix-edit} command and a similar functionality in the ``package
f97c9175 4492info'' and ``package list'' buffers created by the @kbd{M-x
7c1b1ae2 4493guix-search-by-name} and similar commands (@pxref{Emacs Commands}).
39bee8a2
LC
4494
4495
210cc920
LC
4496@node Invoking guix download
4497@section Invoking @command{guix download}
4498
4499When writing a package definition, developers typically need to download
f97c9175 4500a source tarball, compute its SHA256 hash, and write that
210cc920
LC
4501hash in the package definition (@pxref{Defining Packages}). The
4502@command{guix download} tool helps with this task: it downloads a file
4503from the given URI, adds it to the store, and prints both its file name
4504in the store and its SHA256 hash.
4505
4506The fact that the downloaded file is added to the store saves bandwidth:
4507when the developer eventually tries to build the newly defined package
4508with @command{guix build}, the source tarball will not have to be
4509downloaded again because it is already in the store. It is also a
4510convenient way to temporarily stash files, which may be deleted
4511eventually (@pxref{Invoking guix gc}).
4512
4513The @command{guix download} command supports the same URIs as used in
4514package definitions. In particular, it supports @code{mirror://} URIs.
4515@code{https} URIs (HTTP over TLS) are supported @emph{provided} the
4516Guile bindings for GnuTLS are available in the user's environment; when
537c8bb3
LC
4517they are not available, an error is raised. @xref{Guile Preparations,
4518how to install the GnuTLS bindings for Guile,, gnutls-guile,
4519GnuTLS-Guile}, for more information.
210cc920
LC
4520
4521The following option is available:
4522
4523@table @code
4524@item --format=@var{fmt}
4525@itemx -f @var{fmt}
4526Write the hash in the format specified by @var{fmt}. For more
081145cf 4527information on the valid values for @var{fmt}, @pxref{Invoking guix hash}.
210cc920
LC
4528@end table
4529
6c365eca
NK
4530@node Invoking guix hash
4531@section Invoking @command{guix hash}
4532
210cc920 4533The @command{guix hash} command computes the SHA256 hash of a file.
6c365eca
NK
4534It is primarily a convenience tool for anyone contributing to the
4535distribution: it computes the cryptographic hash of a file, which can be
4536used in the definition of a package (@pxref{Defining Packages}).
4537
4538The general syntax is:
4539
4540@example
4541guix hash @var{option} @var{file}
4542@end example
4543
4544@command{guix hash} has the following option:
4545
4546@table @code
4547
4548@item --format=@var{fmt}
4549@itemx -f @var{fmt}
210cc920 4550Write the hash in the format specified by @var{fmt}.
6c365eca
NK
4551
4552Supported formats: @code{nix-base32}, @code{base32}, @code{base16}
4553(@code{hex} and @code{hexadecimal} can be used as well).
4554
4555If the @option{--format} option is not specified, @command{guix hash}
4556will output the hash in @code{nix-base32}. This representation is used
4557in the definitions of packages.
4558
3140f2df
LC
4559@item --recursive
4560@itemx -r
4561Compute the hash on @var{file} recursively.
4562
4563In this case, the hash is computed on an archive containing @var{file},
f97c9175
AE
4564including its children if it is a directory. Some of the metadata of
4565@var{file} is part of the archive; for instance, when @var{file} is a
3140f2df 4566regular file, the hash is different depending on whether @var{file} is
f97c9175 4567executable or not. Metadata such as time stamps has no impact on the
3140f2df
LC
4568hash (@pxref{Invoking guix archive}).
4569@c FIXME: Replace xref above with xref to an ``Archive'' section when
4570@c it exists.
4571
6c365eca
NK
4572@end table
4573
2f7d2d91
LC
4574@node Invoking guix import
4575@section Invoking @command{guix import}
4576
4577@cindex importing packages
4578@cindex package import
4579@cindex package conversion
f97c9175
AE
4580The @command{guix import} command is useful for people who would like to
4581add a package to the distribution with as little work as
4582possible---a legitimate demand. The command knows of a few
4583repositories from which it can ``import'' package metadata. The result
2f7d2d91
LC
4584is a package definition, or a template thereof, in the format we know
4585(@pxref{Defining Packages}).
4586
4587The general syntax is:
4588
4589@example
4590guix import @var{importer} @var{options}@dots{}
4591@end example
4592
4593@var{importer} specifies the source from which to import package
f97c9175 4594metadata, and @var{options} specifies a package identifier and other
2f7d2d91
LC
4595options specific to @var{importer}. Currently, the available
4596``importers'' are:
4597
4598@table @code
4599@item gnu
f97c9175 4600Import metadata for the given GNU package. This provides a template
2f7d2d91
LC
4601for the latest version of that GNU package, including the hash of its
4602source tarball, and its canonical synopsis and description.
4603
f97c9175 4604Additional information such as the package dependencies and its
2f7d2d91
LC
4605license needs to be figured out manually.
4606
4607For example, the following command returns a package definition for
4608GNU@tie{}Hello:
4609
4610@example
4611guix import gnu hello
4612@end example
4613
4614Specific command-line options are:
4615
4616@table @code
4617@item --key-download=@var{policy}
4618As for @code{guix refresh}, specify the policy to handle missing OpenPGP
f97c9175 4619keys when verifying the package signature. @xref{Invoking guix
2f7d2d91
LC
4620refresh, @code{--key-download}}.
4621@end table
4622
4623@item pypi
4624@cindex pypi
f97c9175 4625Import metadata from the @uref{https://pypi.python.org/, Python Package
2f7d2d91
LC
4626Index}@footnote{This functionality requires Guile-JSON to be installed.
4627@xref{Requirements}.}. Information is taken from the JSON-formatted
4628description available at @code{pypi.python.org} and usually includes all
266785d2
CR
4629the relevant information, including package dependencies. For maximum
4630efficiency, it is recommended to install the @command{unzip} utility, so
4631that the importer can unzip Python wheels and gather data from them.
2f7d2d91 4632
f97c9175 4633The command below imports metadata for the @code{itsdangerous} Python
2f7d2d91
LC
4634package:
4635
4636@example
4637guix import pypi itsdangerous
4638@end example
4639
3aae8145
DT
4640@item gem
4641@cindex gem
f97c9175 4642Import metadata from @uref{https://rubygems.org/,
3aae8145
DT
4643RubyGems}@footnote{This functionality requires Guile-JSON to be
4644installed. @xref{Requirements}.}. Information is taken from the
4645JSON-formatted description available at @code{rubygems.org} and includes
4646most relevant information, including runtime dependencies. There are
f97c9175 4647some caveats, however. The metadata doesn't distinguish between
3aae8145
DT
4648synopses and descriptions, so the same string is used for both fields.
4649Additionally, the details of non-Ruby dependencies required to build
4650native extensions is unavailable and left as an exercise to the
4651packager.
4652
f97c9175 4653The command below imports metadata for the @code{rails} Ruby package:
3aae8145
DT
4654
4655@example
4656guix import gem rails
4657@end example
4658
d45dc6da
EB
4659@item cpan
4660@cindex CPAN
3c192e4e
AE
4661Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}@footnote{This
4662functionality requires Guile-JSON to be installed.
4663@xref{Requirements}.}.
f97c9175 4664Information is taken from the JSON-formatted metadata provided through
d45dc6da 4665@uref{https://api.metacpan.org/, MetaCPAN's API} and includes most
66392e47
EB
4666relevant information, such as module dependencies. License information
4667should be checked closely. If Perl is available in the store, then the
4668@code{corelist} utility will be used to filter core modules out of the
4669list of dependencies.
d45dc6da 4670
f97c9175 4671The command command below imports metadata for the @code{Acme::Boolean}
d45dc6da
EB
4672Perl module:
4673
4674@example
4675guix import cpan Acme::Boolean
4676@end example
4677
e1248602
RW
4678@item cran
4679@cindex CRAN
d0bd632f 4680@cindex Bioconductor
f97c9175 4681Import metadata from @uref{http://cran.r-project.org/, CRAN}, the
e1248602
RW
4682central repository for the @uref{http://r-project.org, GNU@tie{}R
4683statistical and graphical environment}.
4684
f97c9175 4685Information is extracted from the @code{DESCRIPTION} file of the package.
e1248602 4686
f97c9175 4687The command command below imports metadata for the @code{Cairo}
e1248602
RW
4688R package:
4689
4690@example
4691guix import cran Cairo
4692@end example
4693
f97c9175 4694When @code{--archive=bioconductor} is added, metadata is imported from
d0bd632f
RW
4695@uref{http://www.bioconductor.org/, Bioconductor}, a repository of R
4696packages for for the analysis and comprehension of high-throughput
4697genomic data in bioinformatics.
4698
f97c9175 4699Information is extracted from the @code{DESCRIPTION} file of a package
d0bd632f
RW
4700published on the web interface of the Bioconductor SVN repository.
4701
f97c9175 4702The command below imports metadata for the @code{GenomicRanges}
d0bd632f
RW
4703R package:
4704
4705@example
4706guix import cran --archive=bioconductor GenomicRanges
4707@end example
4708
2f7d2d91 4709@item nix
f97c9175 4710Import metadata from a local copy of the source of the
2f7d2d91
LC
4711@uref{http://nixos.org/nixpkgs/, Nixpkgs distribution}@footnote{This
4712relies on the @command{nix-instantiate} command of
4713@uref{http://nixos.org/nix/, Nix}.}. Package definitions in Nixpkgs are
4714typically written in a mixture of Nix-language and Bash code. This
4715command only imports the high-level package structure that is written in
4716the Nix language. It normally includes all the basic fields of a
4717package definition.
4718
4719When importing a GNU package, the synopsis and descriptions are replaced
4720by their canonical upstream variant.
4721
961d0d2d
LC
4722Usually, you will first need to do:
4723
4724@example
4725export NIX_REMOTE=daemon
4726@end example
4727
4728@noindent
4729so that @command{nix-instantiate} does not try to open the Nix database.
4730
2f7d2d91
LC
4731As an example, the command below imports the package definition of
4732LibreOffice (more precisely, it imports the definition of the package
4733bound to the @code{libreoffice} top-level attribute):
4734
4735@example
4736guix import nix ~/path/to/nixpkgs libreoffice
4737@end example
863af4e1
FB
4738
4739@item hackage
4740@cindex hackage
f97c9175 4741Import metadata from the Haskell community's central package archive
863af4e1
FB
4742@uref{https://hackage.haskell.org/, Hackage}. Information is taken from
4743Cabal files and includes all the relevant information, including package
4744dependencies.
4745
4746Specific command-line options are:
4747
4748@table @code
a4154748
FB
4749@item --stdin
4750@itemx -s
f97c9175 4751Read a Cabal file from standard input.
863af4e1
FB
4752@item --no-test-dependencies
4753@itemx -t
f97c9175 4754Do not include dependencies required only by the test suites.
a4154748
FB
4755@item --cabal-environment=@var{alist}
4756@itemx -e @var{alist}
4757@var{alist} is a Scheme alist defining the environment in which the
4758Cabal conditionals are evaluated. The accepted keys are: @code{os},
4759@code{arch}, @code{impl} and a string representing the name of a flag.
4760The value associated with a flag has to be either the symbol
4761@code{true} or @code{false}. The value associated with other keys
4762has to conform to the Cabal file format definition. The default value
4763associated with the keys @code{os}, @code{arch} and @code{impl} is
f97c9175 4764@samp{linux}, @samp{x86_64} and @samp{ghc}, respectively.
863af4e1
FB
4765@end table
4766
f97c9175 4767The command below imports metadata for the latest version of the
a4154748
FB
4768@code{HTTP} Haskell package without including test dependencies and
4769specifying the value of the flag @samp{network-uri} as @code{false}:
863af4e1
FB
4770
4771@example
a4154748 4772guix import hackage -t -e "'((\"network-uri\" . false))" HTTP
863af4e1
FB
4773@end example
4774
4775A specific package version may optionally be specified by following the
1b846da8 4776package name by an at-sign and a version number as in the following example:
863af4e1
FB
4777
4778@example
1b846da8 4779guix import hackage mtl@@2.1.3.1
863af4e1 4780@end example
7f74a931
FB
4781
4782@item elpa
4783@cindex elpa
f97c9175 4784Import metadata from an Emacs Lisp Package Archive (ELPA) package
7f74a931
FB
4785repository (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
4786
4787Specific command-line options are:
4788
4789@table @code
4790@item --archive=@var{repo}
4791@itemx -a @var{repo}
4792@var{repo} identifies the archive repository from which to retrieve the
4793information. Currently the supported repositories and their identifiers
4794are:
4795@itemize -
4796@item
840bd1d3 4797@uref{http://elpa.gnu.org/packages, GNU}, selected by the @code{gnu}
7f74a931
FB
4798identifier. This is the default.
4799
4800@item
840bd1d3 4801@uref{http://stable.melpa.org/packages, MELPA-Stable}, selected by the
7f74a931
FB
4802@code{melpa-stable} identifier.
4803
4804@item
840bd1d3 4805@uref{http://melpa.org/packages, MELPA}, selected by the @code{melpa}
7f74a931
FB
4806identifier.
4807@end itemize
4808@end table
2f7d2d91
LC
4809@end table
4810
4811The structure of the @command{guix import} code is modular. It would be
4812useful to have more importers for other package formats, and your help
4813is welcome here (@pxref{Contributing}).
4814
37166310
LC
4815@node Invoking guix refresh
4816@section Invoking @command{guix refresh}
4817
4818The primary audience of the @command{guix refresh} command is developers
4819of the GNU software distribution. By default, it reports any packages
4820provided by the distribution that are outdated compared to the latest
4821upstream version, like this:
4822
4823@example
4824$ guix refresh
4825gnu/packages/gettext.scm:29:13: gettext would be upgraded from 0.18.1.1 to 0.18.2.1
4826gnu/packages/glib.scm:77:12: glib would be upgraded from 2.34.3 to 2.37.0
4827@end example
4828
f97c9175
AE
4829It does so by browsing the FTP directory of each package and determining
4830the highest version number of the source tarballs therein. The command
bcb571cb
LC
4831knows how to update specific types of packages: GNU packages, ELPA
4832packages, etc.---see the documentation for @option{--type} below. The
4833are many packages, though, for which it lacks a method to determine
4834whether a new upstream release is available. However, the mechanism is
4835extensible, so feel free to get in touch with us to add a new method!
37166310
LC
4836
4837When passed @code{--update}, it modifies distribution source files to
f97c9175 4838update the version numbers and source tarball hashes of those package
37166310
LC
4839recipes (@pxref{Defining Packages}). This is achieved by downloading
4840each package's latest source tarball and its associated OpenPGP
4841signature, authenticating the downloaded tarball against its signature
4842using @command{gpg}, and finally computing its hash. When the public
4843key used to sign the tarball is missing from the user's keyring, an
4844attempt is made to automatically retrieve it from a public key server;
f97c9175 4845when this is successful, the key is added to the user's keyring; otherwise,
37166310
LC
4846@command{guix refresh} reports an error.
4847
4848The following options are supported:
4849
4850@table @code
4851
2d7fc7da
LC
4852@item --expression=@var{expr}
4853@itemx -e @var{expr}
4854Consider the package @var{expr} evaluates to.
4855
4856This is useful to precisely refer to a package, as in this example:
4857
4858@example
4859guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'
4860@end example
4861
4862This command lists the dependents of the ``final'' libc (essentially all
4863the packages.)
4864
37166310
LC
4865@item --update
4866@itemx -u
38e16b49
LC
4867Update distribution source files (package recipes) in place. This is
4868usually run from a checkout of the Guix source tree (@pxref{Running
4869Guix Before It Is Installed}):
4870
4871@example
4872$ ./pre-inst-env guix refresh -s non-core
4873@end example
4874
081145cf 4875@xref{Defining Packages}, for more information on package definitions.
37166310
LC
4876
4877@item --select=[@var{subset}]
4878@itemx -s @var{subset}
4879Select all the packages in @var{subset}, one of @code{core} or
4880@code{non-core}.
4881
4882The @code{core} subset refers to all the packages at the core of the
4883distribution---i.e., packages that are used to build ``everything
4884else''. This includes GCC, libc, Binutils, Bash, etc. Usually,
4885changing one of these packages in the distribution entails a rebuild of
4886all the others. Thus, such updates are an inconvenience to users in
4887terms of build time or bandwidth used to achieve the upgrade.
4888
4889The @code{non-core} subset refers to the remaining packages. It is
4890typically useful in cases where an update of the core packages would be
4891inconvenient.
4892
bcb571cb
LC
4893@item --type=@var{updater}
4894@itemx -t @var{updater}
7191adc5
AK
4895Select only packages handled by @var{updater} (may be a comma-separated
4896list of updaters). Currently, @var{updater} may be one of:
bcb571cb
LC
4897
4898@table @code
4899@item gnu
4900the updater for GNU packages;
e80c0f85
LC
4901@item gnome
4902the updater for GNOME packages;
62061d6b
AW
4903@item xorg
4904the updater for X.org packages;
bcb571cb 4905@item elpa
d882c235
LC
4906the updater for @uref{http://elpa.gnu.org/, ELPA} packages;
4907@item cran
b9d044ef 4908the updater for @uref{http://cran.r-project.org/, CRAN} packages;
d0bd632f
RW
4909@item bioconductor
4910the updater for @uref{http://www.bioconductor.org/, Bioconductor} R packages;
bab020d7 4911@item pypi
b9d044ef 4912the updater for @uref{https://pypi.python.org, PyPI} packages.
fbc5b815
BW
4913@item gem
4914the updater for @uref{https://rubygems.org, RubyGems} packages.
917a2a58
BW
4915@item github
4916the updater for @uref{https://github.com, GitHub} packages.
42efe27a
EB
4917@item hackage
4918the updater for @uref{https://hackage.haskell.org, Hackage} packages.
bcb571cb
LC
4919@end table
4920
f97c9175
AE
4921For instance, the following command only checks for updates of Emacs
4922packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:
bcb571cb
LC
4923
4924@example
7191adc5 4925$ guix refresh --type=elpa,cran
d882c235 4926gnu/packages/statistics.scm:819:13: r-testthat would be upgraded from 0.10.0 to 0.11.0
bcb571cb
LC
4927gnu/packages/emacs.scm:856:13: emacs-auctex would be upgraded from 11.88.6 to 11.88.9
4928@end example
4929
37166310
LC
4930@end table
4931
4932In addition, @command{guix refresh} can be passed one or more package
4933names, as in this example:
4934
4935@example
38e16b49 4936$ ./pre-inst-env guix refresh -u emacs idutils gcc-4.8.4
37166310
LC
4937@end example
4938
4939@noindent
4940The command above specifically updates the @code{emacs} and
4941@code{idutils} packages. The @code{--select} option would have no
4942effect in this case.
4943
7d193ec3
EB
4944When considering whether to upgrade a package, it is sometimes
4945convenient to know which packages would be affected by the upgrade and
4946should be checked for compatibility. For this the following option may
4947be used when passing @command{guix refresh} one or more package names:
4948
4949@table @code
4950
6ffa706b
AK
4951@item --list-updaters
4952@itemx -L
4953List available updaters and exit (see @option{--type} above.)
4954
7d193ec3
EB
4955@item --list-dependent
4956@itemx -l
4957List top-level dependent packages that would need to be rebuilt as a
4958result of upgrading one or more packages.
4959
4960@end table
4961
4962Be aware that the @code{--list-dependent} option only
4963@emph{approximates} the rebuilds that would be required as a result of
4964an upgrade. More rebuilds might be required under some circumstances.
4965
4966@example
7779ab61
LC
4967$ guix refresh --list-dependent flex
4968Building the following 120 packages would ensure 213 dependent packages are rebuilt:
4969hop-2.4.0 geiser-0.4 notmuch-0.18 mu-0.9.9.5 cflow-1.4 idutils-4.6 @dots{}
7d193ec3
EB
4970@end example
4971
4972The command above lists a set of packages that could be built to check
4973for compatibility with an upgraded @code{flex} package.
4974
f9230085
LC
4975The following options can be used to customize GnuPG operation:
4976
4977@table @code
4978
f9230085
LC
4979@item --gpg=@var{command}
4980Use @var{command} as the GnuPG 2.x command. @var{command} is searched
4981for in @code{$PATH}.
4982
2bc53ba9
LC
4983@item --key-download=@var{policy}
4984Handle missing OpenPGP keys according to @var{policy}, which may be one
4985of:
4986
4987@table @code
4988@item always
4989Always download missing OpenPGP keys from the key server, and add them
4990to the user's GnuPG keyring.
4991
4992@item never
4993Never try to download missing OpenPGP keys. Instead just bail out.
4994
4995@item interactive
4996When a package signed with an unknown OpenPGP key is encountered, ask
4997the user whether to download it or not. This is the default behavior.
4998@end table
4999
5000@item --key-server=@var{host}
5001Use @var{host} as the OpenPGP key server when importing a public key.
5002
f9230085
LC
5003@end table
5004
917a2a58
BW
5005The @code{github} updater uses the
5006@uref{https://developer.github.com/v3/, GitHub API} to query for new
5007releases. When used repeatedly e.g. when refreshing all packages,
5008GitHub will eventually refuse to answer any further API requests. By
5009default 60 API requests per hour are allowed, and a full refresh on all
5010GitHub packages in Guix requires more than this. Authentication with
5011GitHub through the use of an API token alleviates these limits. To use
5012an API token, set the environment variable @code{GUIX_GITHUB_TOKEN} to a
5013token procured from @uref{https://github.com/settings/tokens} or
5014otherwise.
5015
5016
b4f5e0e8
CR
5017@node Invoking guix lint
5018@section Invoking @command{guix lint}
f97c9175
AE
5019The @command{guix lint} command is meant to help package developers avoid
5020common errors and use a consistent style. It runs a number of checks on
5021a given set of packages in order to find common mistakes in their
873c4085
LC
5022definitions. Available @dfn{checkers} include (see
5023@code{--list-checkers} for a complete list):
5024
5025@table @code
5026@item synopsis
5027@itemx description
5028Validate certain typographical and stylistic rules about package
5029descriptions and synopses.
5030
5031@item inputs-should-be-native
5032Identify inputs that should most likely be native inputs.
5033
5034@item source
5035@itemx home-page
50f5c46d 5036@itemx source-file-name
873c4085 5037Probe @code{home-page} and @code{source} URLs and report those that are
50f5c46d 5038invalid. Check that the source file name is meaningful, e.g. is not
f97c9175
AE
5039just a version number or ``git-checkout'', without a declared
5040@code{file-name} (@pxref{origin Reference}).
40a7d4e5 5041
5432734b 5042@item cve
09866b39
LC
5043@cindex security vulnerabilities
5044@cindex CVE, Common Vulnerabilities and Exposures
5432734b 5045Report known vulnerabilities found in the Common Vulnerabilities and
09866b39 5046Exposures (CVE) databases of the current and past year
5432734b
LC
5047@uref{https://nvd.nist.gov/download.cfm#CVE_FEED, published by the US
5048NIST}.
5049
09866b39
LC
5050To view information about a particular vulnerability, visit pages such as:
5051
5052@itemize
5053@item
5054@indicateurl{https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD}
5055@item
5056@indicateurl{https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD}
5057@end itemize
5058
5059@noindent
5060where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g.,
5061@code{CVE-2015-7554}.
5062
99effc8f
LC
5063Package developers can specify in package recipes the
5064@uref{https://nvd.nist.gov/cpe.cfm,Common Platform Enumeration (CPE)}
5065name and version of the package when they differ from the name that Guix
5066uses, as in this example:
5067
5068@example
5069(package
5070 (name "grub")
5071 ;; @dots{}
5072 ;; CPE calls this package "grub2".
5073 (properties '((cpe-name . "grub2"))))
5074@end example
5075
40a7d4e5
LC
5076@item formatting
5077Warn about obvious source code formatting issues: trailing white space,
5078use of tabulations, etc.
873c4085 5079@end table
b4f5e0e8
CR
5080
5081The general syntax is:
5082
5083@example
5084guix lint @var{options} @var{package}@dots{}
5085@end example
5086
5087If no package is given on the command line, then all packages are checked.
5088The @var{options} may be zero or more of the following:
5089
5090@table @code
f97c9175
AE
5091@item --list-checkers
5092@itemx -l
5093List and describe all the available checkers that will be run on packages
5094and exit.
b4f5e0e8 5095
dd7c013d
CR
5096@item --checkers
5097@itemx -c
5098Only enable the checkers specified in a comma-separated list using the
5099names returned by @code{--list-checkers}.
5100
b4f5e0e8 5101@end table
37166310 5102
fcc58db6
LC
5103@node Invoking guix size
5104@section Invoking @command{guix size}
5105
5106The @command{guix size} command helps package developers profile the
5107disk usage of packages. It is easy to overlook the impact of an
5108additional dependency added to a package, or the impact of using a
5109single output for a package that could easily be split (@pxref{Packages
f97c9175 5110with Multiple Outputs}). Such are the typical issues that
fcc58db6
LC
5111@command{guix size} can highlight.
5112
5113The command can be passed a package specification such as @code{gcc-4.8}
5114or @code{guile:debug}, or a file name in the store. Consider this
5115example:
5116
5117@example
5118$ guix size coreutils
5119store item total self
5120/gnu/store/@dots{}-coreutils-8.23 70.0 13.9 19.8%
5121/gnu/store/@dots{}-gmp-6.0.0a 55.3 2.5 3.6%
5122/gnu/store/@dots{}-acl-2.2.52 53.7 0.5 0.7%
5123/gnu/store/@dots{}-attr-2.4.46 53.2 0.3 0.5%
5124/gnu/store/@dots{}-gcc-4.8.4-lib 52.9 15.7 22.4%
5125/gnu/store/@dots{}-glibc-2.21 37.2 37.2 53.1%
5126@end example
5127
5128@cindex closure
5129The store items listed here constitute the @dfn{transitive closure} of
5130Coreutils---i.e., Coreutils and all its dependencies, recursively---as
5131would be returned by:
5132
5133@example
5134$ guix gc -R /gnu/store/@dots{}-coreutils-8.23
5135@end example
5136
f97c9175 5137Here the output shows three columns next to store items. The first column,
fcc58db6
LC
5138labeled ``total'', shows the size in mebibytes (MiB) of the closure of
5139the store item---that is, its own size plus the size of all its
5140dependencies. The next column, labeled ``self'', shows the size of the
f97c9175
AE
5141item itself. The last column shows the ratio of the size of the item
5142itself to the space occupied by all the items listed here.
fcc58db6
LC
5143
5144In this example, we see that the closure of Coreutils weighs in at
514570@tie{}MiB, half of which is taken by libc. (That libc represents a
5146large fraction of the closure is not a problem @i{per se} because it is
5147always available on the system anyway.)
5148
5149When the package passed to @command{guix size} is available in the
5150store, @command{guix size} queries the daemon to determine its
5151dependencies, and measures its size in the store, similar to @command{du
5152-ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU
5153Coreutils}).
5154
5155When the given package is @emph{not} in the store, @command{guix size}
f97c9175
AE
5156reports information based on the available substitutes
5157(@pxref{Substitutes}). This makes it possible it to profile disk usage of
5158store items that are not even on disk, only available remotely.
fcc58db6 5159
db761534
LC
5160You can also specify several package names:
5161
5162@example
5163$ guix size coreutils grep sed bash
5164store item total self
5165/gnu/store/@dots{}-coreutils-8.24 77.8 13.8 13.4%
5166/gnu/store/@dots{}-grep-2.22 73.1 0.8 0.8%
5167/gnu/store/@dots{}-bash-4.3.42 72.3 4.7 4.6%
5168/gnu/store/@dots{}-readline-6.3 67.6 1.2 1.2%
5169@dots{}
5170total: 102.3 MiB
5171@end example
5172
5173@noindent
5174In this example we see that the combination of the four packages takes
5175102.3@tie{}MiB in total, which is much less than the sum of each closure
5176since they have a lot of dependencies in common.
5177
a8f996c6 5178The available options are:
fcc58db6
LC
5179
5180@table @option
5181
d490d06e
LC
5182@item --substitute-urls=@var{urls}
5183Use substitute information from @var{urls}.
5184@xref{client-substitute-urls, the same option for @code{guix build}}.
5185
a8f996c6 5186@item --map-file=@var{file}
f97c9175 5187Write a graphical map of disk usage in PNG format to @var{file}.
a8f996c6
LC
5188
5189For the example above, the map looks like this:
5190
5191@image{images/coreutils-size-map,5in,, map of Coreutils disk usage
5192produced by @command{guix size}}
5193
5194This option requires that
5195@uref{http://wingolog.org/software/guile-charting/, Guile-Charting} be
5196installed and visible in Guile's module search path. When that is not
5197the case, @command{guix size} fails as it tries to load it.
5198
fcc58db6
LC
5199@item --system=@var{system}
5200@itemx -s @var{system}
5201Consider packages for @var{system}---e.g., @code{x86_64-linux}.
5202
5203@end table
5204
88856916
LC
5205@node Invoking guix graph
5206@section Invoking @command{guix graph}
5207
5208@cindex DAG
5209Packages and their dependencies form a @dfn{graph}, specifically a
5210directed acyclic graph (DAG). It can quickly become difficult to have a
f97c9175
AE
5211mental model of the package DAG, so the @command{guix graph} command
5212provides a visual representation of the DAG. @command{guix graph}
5213emits a DAG representation in the input format of
88856916 5214@uref{http://www.graphviz.org/, Graphviz}, so its output can be passed
f97c9175 5215directly to the @command{dot} command of Graphviz. The general
88856916
LC
5216syntax is:
5217
5218@example
5219guix graph @var{options} @var{package}@dots{}
5220@end example
5221
5222For example, the following command generates a PDF file representing the
5223package DAG for the GNU@tie{}Core Utilities, showing its build-time
5224dependencies:
5225
5226@example
5227guix graph coreutils | dot -Tpdf > dag.pdf
5228@end example
5229
5230The output looks like this:
5231
5232@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}
5233
5234Nice little graph, no?
5235
f97c9175 5236But there is more than one graph! The one above is concise: it is the
88856916 5237graph of package objects, omitting implicit inputs such as GCC, libc,
f97c9175
AE
5238grep, etc. It is often useful to have such a concise graph, but
5239sometimes one may want to see more details. @command{guix graph} supports
5240several types of graphs, allowing you to choose the level of detail:
88856916
LC
5241
5242@table @code
5243@item package
f97c9175 5244This is the default type used in the example above. It shows the DAG of
88856916
LC
5245package objects, excluding implicit dependencies. It is concise, but
5246filters out many details.
5247
5248@item bag-emerged
5249This is the package DAG, @emph{including} implicit inputs.
5250
5251For instance, the following command:
5252
5253@example
5254guix graph --type=bag-emerged coreutils | dot -Tpdf > dag.pdf
5255@end example
5256
5257... yields this bigger graph:
5258
5259@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}
5260
5261At the bottom of the graph, we see all the implicit inputs of
5262@var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}}).
5263
f97c9175 5264Now, note that the dependencies of these implicit inputs---that is, the
88856916
LC
5265@dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown
5266here, for conciseness.
5267
5268@item bag
5269Similar to @code{bag-emerged}, but this time including all the bootstrap
5270dependencies.
5271
38b92daa
LC
5272@item bag-with-origins
5273Similar to @code{bag}, but also showing origins and their dependencies.
5274
88856916
LC
5275@item derivations
5276This is the most detailed representation: It shows the DAG of
5277derivations (@pxref{Derivations}) and plain store items. Compared to
5278the above representation, many additional nodes are visible, including
f97c9175 5279build scripts, patches, Guile modules, etc.
88856916 5280
a773c314
LC
5281For this type of graph, it is also possible to pass a @file{.drv} file
5282name instead of a package name, as in:
5283
5284@example
5285guix graph -t derivation `guix system build -d my-config.scm`
5286@end example
88856916
LC
5287@end table
5288
f97c9175 5289All the types above correspond to @emph{build-time dependencies}. The
88856916
LC
5290following graph type represents the @emph{run-time dependencies}:
5291
5292@table @code
5293@item references
5294This is the graph of @dfn{references} of a package output, as returned
5295by @command{guix gc --references} (@pxref{Invoking guix gc}).
5296
5297If the given package output is not available in the store, @command{guix
5298graph} attempts to obtain dependency information from substitutes.
a773c314
LC
5299
5300Here you can also pass a store file name instead of a package name. For
5301example, the command below produces the reference graph of your profile
5302(which can be big!):
5303
5304@example
5305guix graph -t references `readlink -f ~/.guix-profile`
5306@end example
88856916
LC
5307@end table
5308
5309The available options are the following:
5310
5311@table @option
5312@item --type=@var{type}
5313@itemx -t @var{type}
5314Produce a graph output of @var{type}, where @var{type} must be one of
5315the values listed above.
5316
5317@item --list-types
5318List the supported graph types.
4c8f997a
LC
5319
5320@item --expression=@var{expr}
5321@itemx -e @var{expr}
5322Consider the package @var{expr} evaluates to.
5323
5324This is useful to precisely refer to a package, as in this example:
5325
5326@example
5327guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'
5328@end example
88856916
LC
5329@end table
5330
5331
372c4bbc
DT
5332@node Invoking guix environment
5333@section Invoking @command{guix environment}
5334
f5fd4fd2 5335@cindex reproducible build environments
fe36d84e 5336@cindex development environments
372c4bbc
DT
5337The purpose of @command{guix environment} is to assist hackers in
5338creating reproducible development environments without polluting their
5339package profile. The @command{guix environment} tool takes one or more
f97c9175 5340packages, builds all of their inputs, and creates a shell
372c4bbc
DT
5341environment to use them.
5342
5343The general syntax is:
5344
5345@example
5346guix environment @var{options} @var{package}@dots{}
5347@end example
5348
fe36d84e
LC
5349The following example spawns a new shell set up for the development of
5350GNU@tie{}Guile:
372c4bbc
DT
5351
5352@example
5353guix environment guile
5354@end example
5355
f97c9175
AE
5356If the needed dependencies are not built yet, @command{guix environment}
5357automatically builds them. The environment of the new shell is an augmented
372c4bbc
DT
5358version of the environment that @command{guix environment} was run in.
5359It contains the necessary search paths for building the given package
5360added to the existing environment variables. To create a ``pure''
f97c9175 5361environment, in which the original environment variables have been unset,
50500f7c
LC
5362use the @code{--pure} option@footnote{Users sometimes wrongfully augment
5363environment variables such as @code{PATH} in their @file{~/.bashrc}
5364file. As a consequence, when @code{guix environment} launches it, Bash
5365may read @file{~/.bashrc}, thereby introducing ``impurities'' in these
5366environment variables. It is an error to define such environment
5367variables in @file{.bashrc}; instead, they should be defined in
5368@file{.bash_profile}, which is sourced only by log-in shells.
5369@xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for
5370details on Bash start-up files.}.
372c4bbc 5371
28de8d25
LC
5372@vindex GUIX_ENVIRONMENT
5373@command{guix environment} defines the @code{GUIX_ENVIRONMENT}
f97c9175 5374variable in the shell it spawns. This allows users to, say, define a
28de8d25
LC
5375specific prompt for development environments in their @file{.bashrc}
5376(@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):
5377
5378@example
5379if [ -n "$GUIX_ENVIRONMENT" ]
5380then
5381 export PS1="\u@@\h \w [dev]\$ "
5382fi
5383@end example
5384
372c4bbc
DT
5385Additionally, more than one package may be specified, in which case the
5386union of the inputs for the given packages are used. For example, the
5387command below spawns a shell where all of the dependencies of both Guile
5388and Emacs are available:
5389
5390@example
5391guix environment guile emacs
5392@end example
5393
1de2fe95
DT
5394Sometimes an interactive shell session is not desired. An arbitrary
5395command may be invoked by placing the @code{--} token to separate the
5396command from the rest of the arguments:
372c4bbc
DT
5397
5398@example
1de2fe95 5399guix environment guile -- make -j4
372c4bbc
DT
5400@end example
5401
fe36d84e
LC
5402In other situations, it is more convenient to specify the list of
5403packages needed in the environment. For example, the following command
5404runs @command{python} from an environment containing Python@tie{}2.7 and
5405NumPy:
5406
5407@example
1de2fe95 5408guix environment --ad-hoc python2-numpy python-2.7 -- python
fe36d84e
LC
5409@end example
5410
cc90fbbf
DT
5411Furthermore, one might want the dependencies of a package and also some
5412additional packages that are not build-time or runtime dependencies, but
5413are useful when developing nonetheless. Because of this, the
5414@code{--ad-hoc} flag is positional. Packages appearing before
5415@code{--ad-hoc} are interpreted as packages whose dependencies will be
5416added to the environment. Packages appearing after are interpreted as
5417packages that will be added to the environment directly. For example,
5418the following command creates a Guix development environment that
5419additionally includes Git and strace:
5420
5421@example
5422guix environment guix --ad-hoc git strace
5423@end example
5424
f535dcbe
DT
5425Sometimes it is desirable to isolate the environment as much as
5426possible, for maximal purity and reproducibility. In particular, when
5427using Guix on a host distro that is not GuixSD, it is desirable to
5428prevent access to @file{/usr/bin} and other system-wide resources from
5429the development environment. For example, the following command spawns
5430a Guile REPL in a ``container'' where only the store and the current
5431working directory are mounted:
5432
5433@example
5434guix environment --ad-hoc --container guile -- guile
5435@end example
5436
0f252e26 5437@quotation Note
cfd35b4e 5438The @code{--container} option requires Linux-libre 3.19 or newer.
0f252e26
DT
5439@end quotation
5440
fe36d84e 5441The available options are summarized below.
372c4bbc
DT
5442
5443@table @code
5444@item --expression=@var{expr}
5445@itemx -e @var{expr}
c9c282ce
DT
5446Create an environment for the package or list of packages that
5447@var{expr} evaluates to.
372c4bbc 5448
fe36d84e
LC
5449For example, running:
5450
5451@example
5452guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'
5453@end example
5454
5455starts a shell with the environment for this specific variant of the
5456PETSc package.
5457
c9c282ce
DT
5458Running:
5459
5460@example
5c2b2f00 5461guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'
c9c282ce
DT
5462@end example
5463
5464starts a shell with all the GuixSD base packages available.
5465
779aa003
DT
5466The above commands only the use default output of the given packages.
5467To select other outputs, two element tuples can be specified:
5468
5469@example
5470guix environment --ad-hoc -e '(list (@ (gnu packages bash) bash) "include")'
5471@end example
5472
372c4bbc
DT
5473@item --load=@var{file}
5474@itemx -l @var{file}
c9c282ce
DT
5475Create an environment for the package or list of packages that the code
5476within @var{file} evaluates to.
372c4bbc 5477
fe36d84e
LC
5478As an example, @var{file} might contain a definition like this
5479(@pxref{Defining Packages}):
5480
5481@example
5482@verbatiminclude environment-gdb.scm
5483@end example
5484
a54bd6d7
DT
5485@item --ad-hoc
5486Include all specified packages in the resulting environment, as if an
5487@i{ad hoc} package were defined with them as inputs. This option is
5488useful for quickly creating an environment without having to write a
5489package expression to contain the desired inputs.
5490
5491For instance, the command:
5492
5493@example
1de2fe95 5494guix environment --ad-hoc guile guile-sdl -- guile
a54bd6d7
DT
5495@end example
5496
5497runs @command{guile} in an environment where Guile and Guile-SDL are
5498available.
5499
417c39f1 5500Note that this example implicitly asks for the default output of
f97c9175 5501@code{guile} and @code{guile-sdl}, but it is possible to ask for a
417c39f1
LC
5502specific output---e.g., @code{glib:bin} asks for the @code{bin} output
5503of @code{glib} (@pxref{Packages with Multiple Outputs}).
5504
cc90fbbf
DT
5505This option may be composed with the default behavior of @command{guix
5506environment}. Packages appearing before @code{--ad-hoc} are interpreted
5507as packages whose dependencies will be added to the environment, the
5508default behavior. Packages appearing after are interpreted as packages
5509that will be added to the environment directly.
5510
372c4bbc
DT
5511@item --pure
5512Unset existing environment variables when building the new environment.
5513This has the effect of creating an environment in which search paths
5514only contain package inputs.
5515
5516@item --search-paths
5517Display the environment variable definitions that make up the
5518environment.
ce367ef3
LC
5519
5520@item --system=@var{system}
5521@itemx -s @var{system}
5522Attempt to build for @var{system}---e.g., @code{i686-linux}.
f535dcbe
DT
5523
5524@item --container
5525@itemx -C
5526@cindex container
5527Run @var{command} within an isolated container. The current working
a01ad638
DT
5528directory outside the container is mapped inside the container.
5529Additionally, a dummy home directory is created that matches the current
5530user's home directory, and @file{/etc/passwd} is configured accordingly.
5531The spawned process runs as the current user outside the container, but
5532has root privileges in the context of the container.
f535dcbe
DT
5533
5534@item --network
5535@itemx -N
5536For containers, share the network namespace with the host system.
5537Containers created without this flag only have access to the loopback
5538device.
5539
5540@item --expose=@var{source}[=@var{target}]
5541For containers, expose the file system @var{source} from the host system
5542as the read-only file system @var{target} within the container. If
5543@var{target} is not specified, @var{source} is used as the target mount
5544point in the container.
5545
5546The example below spawns a Guile REPL in a container in which the user's
5547home directory is accessible read-only via the @file{/exchange}
5548directory:
5549
5550@example
5551guix environment --container --expose=$HOME=/exchange guile -- guile
5552@end example
5553
5c2b2f00 5554@item --share=@var{source}[=@var{target}]
f535dcbe
DT
5555For containers, share the file system @var{source} from the host system
5556as the writable file system @var{target} within the container. If
5557@var{target} is not specified, @var{source} is used as the target mount
5558point in the container.
5559
5560The example below spawns a Guile REPL in a container in which the user's
5561home directory is accessible for both reading and writing via the
5562@file{/exchange} directory:
5563
5564@example
5565guix environment --container --share=$HOME=/exchange guile -- guile
5566@end example
372c4bbc
DT
5567@end table
5568
5569It also supports all of the common build options that @command{guix
ccd7158d 5570build} supports (@pxref{Common Build Options}).
372c4bbc 5571
aff8ce7c
DT
5572@node Invoking guix publish
5573@section Invoking @command{guix publish}
5574
5575The purpose of @command{guix publish} is to enable users to easily share
f97c9175 5576their store with others, who can then use it as a substitute server
8ce229fc
LC
5577(@pxref{Substitutes}).
5578
5579When @command{guix publish} runs, it spawns an HTTP server which allows
5580anyone with network access to obtain substitutes from it. This means
5581that any machine running Guix can also act as if it were a build farm,
5582since the HTTP interface is compatible with Hydra, the software behind
5583the @code{hydra.gnu.org} build farm.
aff8ce7c
DT
5584
5585For security, each substitute is signed, allowing recipients to check
5586their authenticity and integrity (@pxref{Substitutes}). Because
f97c9175 5587@command{guix publish} uses the signing key of the system, which is only
5463fe51
LC
5588readable by the system administrator, it must be started as root; the
5589@code{--user} option makes it drop root privileges early on.
aff8ce7c 5590
b18812b6
LC
5591The signing key pair must be generated before @command{guix publish} is
5592launched, using @command{guix archive --generate-key} (@pxref{Invoking
5593guix archive}).
5594
aff8ce7c
DT
5595The general syntax is:
5596
5597@example
5598guix publish @var{options}@dots{}
5599@end example
5600
5601Running @command{guix publish} without any additional arguments will
5602spawn an HTTP server on port 8080:
5603
5604@example
5605guix publish
5606@end example
5607
5608Once a publishing server has been authorized (@pxref{Invoking guix
5609archive}), the daemon may download substitutes from it:
5610
5611@example
5612guix-daemon --substitute-urls=http://example.org:8080
5613@end example
5614
5615The following options are available:
5616
5617@table @code
5618@item --port=@var{port}
5619@itemx -p @var{port}
5620Listen for HTTP requests on @var{port}.
5621
9e2292ef
LC
5622@item --listen=@var{host}
5623Listen on the network interface for @var{host}. The default is to
5624accept connections from any interface.
5625
5463fe51
LC
5626@item --user=@var{user}
5627@itemx -u @var{user}
5628Change privileges to @var{user} as soon as possible---i.e., once the
5629server socket is open and the signing key has been read.
5630
e4c7a5f7
LC
5631@item --ttl=@var{ttl}
5632Produce @code{Cache-Control} HTTP headers that advertise a time-to-live
5633(TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5
5634days, @code{1m} means 1 month, and so on.
5635
5636This allows the user's Guix to keep substitute information in cache for
5637@var{ttl}. However, note that @code{guix publish} does not itself
5638guarantee that the store items it provides will indeed remain available
5639for as long as @var{ttl}.
5640
aff8ce7c
DT
5641@item --repl[=@var{port}]
5642@itemx -r [@var{port}]
5643Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile
8ce229fc
LC
5644Reference Manual}) on @var{port} (37146 by default). This is used
5645primarily for debugging a running @command{guix publish} server.
aff8ce7c
DT
5646@end table
5647
1c52181f
LC
5648Enabling @command{guix publish} on a GuixSD system is a one-liner: just
5649add a call to @code{guix-publish-service} in the @code{services} field
5650of the @code{operating-system} declaration (@pxref{guix-publish-service,
5651@code{guix-publish-service}}).
5652
d23c20f1
LC
5653
5654@node Invoking guix challenge
5655@section Invoking @command{guix challenge}
5656
5657@cindex reproducible builds
5658@cindex verifiable builds
5659
5660Do the binaries provided by this server really correspond to the source
f97c9175 5661code it claims to build? Is a package build process deterministic?
d23c20f1
LC
5662These are the questions the @command{guix challenge} command attempts to
5663answer.
5664
5665The former is obviously an important question: Before using a substitute
f97c9175 5666server (@pxref{Substitutes}), one had better @emph{verify} that it
d23c20f1
LC
5667provides the right binaries, and thus @emph{challenge} it. The latter
5668is what enables the former: If package builds are deterministic, then
5669independent builds of the package should yield the exact same result,
5670bit for bit; if a server provides a binary different from the one
5671obtained locally, it may be either corrupt or malicious.
5672
5673We know that the hash that shows up in @file{/gnu/store} file names is
5674the hash of all the inputs of the process that built the file or
5675directory---compilers, libraries, build scripts,
5676etc. (@pxref{Introduction}). Assuming deterministic build processes,
5677one store file name should map to exactly one build output.
5678@command{guix challenge} checks whether there is, indeed, a single
5679mapping by comparing the build outputs of several independent builds of
5680any given store item.
5681
f97c9175 5682The command output looks like this:
d23c20f1
LC
5683
5684@smallexample
ddbc7f7d
LC
5685$ guix challenge --substitute-urls="https://hydra.gnu.org https://guix.example.org"
5686updating list of substitutes from 'https://hydra.gnu.org'... 100.0%
5687updating list of substitutes from 'https://guix.example.org'... 100.0%
d23c20f1
LC
5688/gnu/store/@dots{}-openssl-1.0.2d contents differ:
5689 local hash: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
ddbc7f7d
LC
5690 https://hydra.gnu.org/nar/@dots{}-openssl-1.0.2d: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
5691 https://guix.example.org/nar/@dots{}-openssl-1.0.2d: 1zy4fmaaqcnjrzzajkdn3f5gmjk754b43qkq47llbyak9z0qjyim
d23c20f1
LC
5692/gnu/store/@dots{}-git-2.5.0 contents differ:
5693 local hash: 00p3bmryhjxrhpn2gxs2fy0a15lnip05l97205pgbk5ra395hyha
ddbc7f7d
LC
5694 https://hydra.gnu.org/nar/@dots{}-git-2.5.0: 069nb85bv4d4a6slrwjdy8v1cn4cwspm3kdbmyb81d6zckj3nq9f
5695 https://guix.example.org/nar/@dots{}-git-2.5.0: 0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73
d23c20f1
LC
5696/gnu/store/@dots{}-pius-2.1.1 contents differ:
5697 local hash: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
ddbc7f7d
LC
5698 https://hydra.gnu.org/nar/@dots{}-pius-2.1.1: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
5699 https://guix.example.org/nar/@dots{}-pius-2.1.1: 1cy25x1a4fzq5rk0pmvc8xhwyffnqz95h2bpvqsz2mpvlbccy0gs
d23c20f1
LC
5700@end smallexample
5701
5702@noindent
5703In this example, @command{guix challenge} first scans the store to
5704determine the set of locally-built derivations---as opposed to store
5705items that were downloaded from a substitute server---and then queries
5706all the substitute servers. It then reports those store items for which
5707the servers obtained a result different from the local build.
5708
5709@cindex non-determinism, in package builds
5710As an example, @code{guix.example.org} always gets a different answer.
5711Conversely, @code{hydra.gnu.org} agrees with local builds, except in the
5712case of Git. This might indicate that the build process of Git is
5713non-deterministic, meaning that its output varies as a function of
5714various things that Guix does not fully control, in spite of building
5715packages in isolated environments (@pxref{Features}). Most common
5716sources of non-determinism include the addition of timestamps in build
5717results, the inclusion of random numbers, and directory listings sorted
a70a5004 5718by inode number. See @uref{https://reproducible-builds.org/docs/}, for
d23c20f1
LC
5719more information.
5720
f97c9175 5721To find out what is wrong with this Git binary, we can do something along
d23c20f1
LC
5722these lines (@pxref{Invoking guix archive}):
5723
5724@example
ddbc7f7d 5725$ wget -q -O - https://hydra.gnu.org/nar/@dots{}-git-2.5.0 \
d23c20f1 5726 | guix archive -x /tmp/git
043f4698 5727$ diff -ur --no-dereference /gnu/store/@dots{}-git.2.5.0 /tmp/git
d23c20f1
LC
5728@end example
5729
5730This command shows the difference between the files resulting from the
5731local build, and the files resulting from the build on
5732@code{hydra.gnu.org} (@pxref{Overview, Comparing and Merging Files,,
5733diffutils, Comparing and Merging Files}). The @command{diff} command
5734works great for text files. When binary files differ, a better option
ddbc7f7d 5735is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps
d23c20f1
LC
5736visualize differences for all kinds of files.
5737
f97c9175 5738Once you have done that work, you can tell whether the differences are due
d23c20f1
LC
5739to a non-deterministic build process or to a malicious server. We try
5740hard to remove sources of non-determinism in packages to make it easier
f97c9175
AE
5741to verify substitutes, but of course, this is a process that
5742involves not just Guix, but a large part of the free software community.
d23c20f1
LC
5743In the meantime, @command{guix challenge} is one tool to help address
5744the problem.
5745
5746If you are writing packages for Guix, you are encouraged to check
5747whether @code{hydra.gnu.org} and other substitute servers obtain the
5748same build result as you did with:
5749
5750@example
5751$ guix challenge @var{package}
5752@end example
5753
5754@noindent
f97c9175 5755where @var{package} is a package specification such as
7cffaeb6 5756@code{guile@@2.0} or @code{glibc:debug}.
d23c20f1
LC
5757
5758The general syntax is:
5759
5760@example
5761guix challenge @var{options} [@var{packages}@dots{}]
5762@end example
5763
7cffaeb6
LC
5764When a difference is found between the hash of a locally-built item and
5765that of a server-provided substitute, or among substitutes provided by
5766different servers, the command displays it as in the example above and
a17417a8
LC
5767its exit code is 2 (other non-zero exit codes denote other kinds of
5768errors.)
7cffaeb6 5769
d23c20f1
LC
5770The one option that matters is:
5771
5772@table @code
5773
5774@item --substitute-urls=@var{urls}
5775Consider @var{urls} the whitespace-separated list of substitute source
5776URLs to compare to.
5777
5778@end table
5779
5780
32efa254
DT
5781@node Invoking guix container
5782@section Invoking @command{guix container}
5783@cindex container
5784
5785@quotation Note
5786As of version @value{VERSION}, this tool is experimental. The interface
5787is subject to radical change in the future.
5788@end quotation
5789
5790The purpose of @command{guix container} is to manipulate processes
5791running within an isolated environment, commonly known as a
46c36586 5792``container'', typically created by the @command{guix environment}
32efa254
DT
5793(@pxref{Invoking guix environment}) and @command{guix system container}
5794(@pxref{Invoking guix system}) commands.
5795
5796The general syntax is:
5797
5798@example
5799guix container @var{action} @var{options}@dots{}
5800@end example
5801
5802@var{action} specifies the operation to perform with a container, and
5803@var{options} specifies the context-specific arguments for the action.
5804
5805The following actions are available:
5806
5807@table @code
5808@item exec
5809Execute a command within the context of a running container.
5810
5811The syntax is:
5812
5813@example
5814guix container exec @var{pid} @var{program} @var{arguments}@dots{}
5815@end example
5816
5817@var{pid} specifies the process ID of the running container.
f97c9175
AE
5818@var{program} specifies an executable file name within the root file
5819system of the container. @var{arguments} are the additional options that
5820will be passed to @var{program}.
32efa254
DT
5821
5822The following command launches an interactive login shell inside a
5823GuixSD container, started by @command{guix system container}, and whose
5824process ID is 9001:
5825
5826@example
5827guix container exec 9001 /run/current-system/profile/bin/bash --login
5828@end example
5829
5830Note that the @var{pid} cannot be the parent process of a container. It
f97c9175 5831must be PID 1 of the container or one of its child processes.
32efa254
DT
5832
5833@end table
5834
a1ba8475
LC
5835@c *********************************************************************
5836@node GNU Distribution
5837@chapter GNU Distribution
5838
3ca2731c 5839@cindex Guix System Distribution
4705641f 5840@cindex GuixSD
3ca2731c
LC
5841Guix comes with a distribution of the GNU system consisting entirely of
5842free software@footnote{The term ``free'' here refers to the
a1ba8475 5843@url{http://www.gnu.org/philosophy/free-sw.html,freedom provided to
3ca2731c 5844users of that software}.}. The
35ed9306
LC
5845distribution can be installed on its own (@pxref{System Installation}),
5846but it is also possible to install Guix as a package manager on top of
5847an installed GNU/Linux system (@pxref{Installation}). To distinguish
3ca2731c 5848between the two, we refer to the standalone distribution as the Guix
4705641f 5849System Distribution, or GuixSD.
35ed9306
LC
5850
5851The distribution provides core GNU packages such as GNU libc, GCC, and
5852Binutils, as well as many GNU and non-GNU applications. The complete
5853list of available packages can be browsed
093ae1be 5854@url{http://www.gnu.org/software/guix/packages,on-line} or by
d03bb653 5855running @command{guix package} (@pxref{Invoking guix package}):
a1ba8475
LC
5856
5857@example
e49951eb 5858guix package --list-available
a1ba8475
LC
5859@end example
5860
f97c9175 5861Our goal is to provide a practical 100% free software distribution of
401c53c4
LC
5862Linux-based and other variants of GNU, with a focus on the promotion and
5863tight integration of GNU components, and an emphasis on programs and
5864tools that help users exert that freedom.
5865
3ca2731c 5866Packages are currently available on the following platforms:
c320011d
LC
5867
5868@table @code
5869
5870@item x86_64-linux
5871Intel/AMD @code{x86_64} architecture, Linux-Libre kernel;
5872
5873@item i686-linux
5874Intel 32-bit architecture (IA32), Linux-Libre kernel;
5875
aa1e1947 5876@item armhf-linux
aa725117 5877ARMv7-A architecture with hard float, Thumb-2 and NEON,
f97c9175
AE
5878using the EABI hard-float application binary interface (ABI),
5879and Linux-Libre kernel.
aa1e1947 5880
c320011d
LC
5881@item mips64el-linux
5882little-endian 64-bit MIPS processors, specifically the Loongson series,
f97c9175 5883n32 ABI, and Linux-Libre kernel.
c320011d
LC
5884
5885@end table
5886
4705641f 5887GuixSD itself is currently only available on @code{i686} and @code{x86_64}.
3ca2731c 5888
c320011d
LC
5889@noindent
5890For information on porting to other architectures or kernels,
f97c9175 5891@pxref{Porting}.
c320011d 5892
401c53c4 5893@menu
5af6de3e 5894* System Installation:: Installing the whole operating system.
35ed9306 5895* System Configuration:: Configuring the operating system.
91ef73d4 5896* Installing Debugging Files:: Feeding the debugger.
05962f29 5897* Security Updates:: Deploying security fixes quickly.
401c53c4 5898* Package Modules:: Packages from the programmer's viewpoint.
da7cabd4 5899* Packaging Guidelines:: Growing the distribution.
401c53c4 5900* Bootstrapping:: GNU/Linux built from scratch.
8b315a6d 5901* Porting:: Targeting another platform or kernel.
401c53c4
LC
5902@end menu
5903
5904Building this distribution is a cooperative effort, and you are invited
081145cf 5905to join! @xref{Contributing}, for information about how you can help.
401c53c4 5906
5af6de3e
LC
5907@node System Installation
5908@section System Installation
5909
3ca2731c
LC
5910@cindex Guix System Distribution
5911This section explains how to install the Guix System Distribution
5912on a machine. The Guix package manager can
35ed9306
LC
5913also be installed on top of a running GNU/Linux system,
5914@pxref{Installation}.
5af6de3e
LC
5915
5916@ifinfo
9c18cf9b 5917@quotation Note
5af6de3e
LC
5918@c This paragraph is for people reading this from tty2 of the
5919@c installation image.
1068f26b 5920You are reading this documentation with an Info reader. For details on
5af6de3e 5921how to use it, hit the @key{RET} key (``return'' or ``enter'') on the
de341e7c
LC
5922link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU
5923Info}. Hit @kbd{l} afterwards to come back here.
9c18cf9b
LC
5924
5925Alternately, run @command{info info} in another tty to keep the manual
5926available.
5927@end quotation
5af6de3e
LC
5928@end ifinfo
5929
dedb8d5e 5930@menu
e3009f60
LC
5931* Limitations:: What you can expect.
5932* Hardware Considerations:: Supported hardware.
5933* USB Stick Installation:: Preparing the installation medium.
5934* Preparing for Installation:: Networking, partitioning, etc.
5935* Proceeding with the Installation:: The real thing.
5936* Building the Installation Image:: How this comes to be.
dedb8d5e
LC
5937@end menu
5938
5939@node Limitations
8aaaae38
LC
5940@subsection Limitations
5941
4705641f 5942As of version @value{VERSION}, the Guix System Distribution (GuixSD) is
3ca2731c 5943not production-ready. It may contain bugs and lack important
8aaaae38
LC
5944features. Thus, if you are looking for a stable production system that
5945respects your freedom as a computer user, a good solution at this point
5946is to consider @url{http://www.gnu.org/distros/free-distros.html, one of
f97c9175 5947the more established GNU/Linux distributions}. We hope you can soon switch
4705641f 5948to the GuixSD without fear, of course. In the meantime, you can
8aaaae38
LC
5949also keep using your distribution and try out the package manager on top
5950of it (@pxref{Installation}).
5951
5952Before you proceed with the installation, be aware of the following
5953noteworthy limitations applicable to version @value{VERSION}:
5954
5955@itemize
5956@item
5957The installation process does not include a graphical user interface and
5958requires familiarity with GNU/Linux (see the following subsections to
5959get a feel of what that means.)
5960
8aaaae38 5961@item
dbcb0ab1 5962Support for the Logical Volume Manager (LVM) is missing.
8aaaae38
LC
5963
5964@item
5965Few system services are currently supported out-of-the-box
5966(@pxref{Services}).
5967
5968@item
e2f41133 5969More than 3,200 packages are available, but you may
8aaaae38 5970occasionally find that a useful package is missing.
5fe01c2d
LC
5971
5972@item
5973GNOME, Xfce, and Enlightenment are available (@pxref{Desktop Services}),
5974as well as a number of X11 window managers. However, some graphical
5975applications may be missing, as well as KDE.
8aaaae38
LC
5976@end itemize
5977
f97c9175
AE
5978You have been warned! But more than a disclaimer, this is an invitation
5979to report issues (and success stories!), and to join us in improving it.
8aaaae38 5980@xref{Contributing}, for more info.
5af6de3e 5981
e3009f60
LC
5982
5983@node Hardware Considerations
5984@subsection Hardware Considerations
5985
5986@cindex hardware support on GuixSD
5987GNU@tie{}GuixSD focuses on respecting the user's computing freedom. It
5988builds around the kernel Linux-libre, which means that only hardware for
e0b3f97e 5989which free software drivers and firmware exist is supported. Nowadays,
e3009f60
LC
5990a wide range of off-the-shelf hardware is supported on
5991GNU/Linux-libre---from keyboards to graphics cards to scanners and
5992Ethernet controllers. Unfortunately, there are still areas where
5993hardware vendors deny users control over their own computing, and such
5994hardware is not supported on GuixSD.
5995
5996@cindex WiFi, hardware support
e0b3f97e 5997One of the main areas where free drivers or firmware are lacking is WiFi
e3009f60
LC
5998devices. WiFi devices known to work include those using Atheros chips
5999(AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre
6000driver, and for which free firmware exists and is available
6001out-of-the-box on GuixSD, as part of @var{%base-firmware}
6002(@pxref{operating-system Reference, @code{firmware}}).
6003
6004@cindex RYF, Respects Your Freedom
6005The @uref{https://www.fsf.org/, Free Software Foundation} runs
e0b3f97e 6006@uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a
e3009f60
LC
6007certification program for hardware products that respect your freedom
6008and your privacy and ensure that you have control over your device. We
e0b3f97e 6009encourage you to check the list of RYF-certified devices.
e3009f60
LC
6010
6011Another useful resource is the @uref{https://www.h-node.org/, H-Node}
6012web site. It contains a catalog of hardware devices with information
6013about their support in GNU/Linux.
6014
6015
dedb8d5e 6016@node USB Stick Installation
5af6de3e
LC
6017@subsection USB Stick Installation
6018
6019An installation image for USB sticks can be downloaded from
4705641f 6020@indicateurl{ftp://alpha.gnu.org/gnu/guix/guixsd-usb-install-@value{VERSION}.@var{system}.xz},
5af6de3e
LC
6021where @var{system} is one of:
6022
6023@table @code
6024@item x86_64-linux
6025for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;
6026
6027@item i686-linux
6028for a 32-bit GNU/Linux system on Intel-compatible CPUs.
6029@end table
6030
6031This image contains a single partition with the tools necessary for an
6032installation. It is meant to be copied @emph{as is} to a large-enough
6033USB stick.
6034
6035To copy the image to a USB stick, follow these steps:
6036
6037@enumerate
6038@item
6039Decompress the image using the @command{xz} command:
6040
6041@example
4705641f 6042xz -d guixsd-usb-install-@value{VERSION}.@var{system}.xz
5af6de3e
LC
6043@end example
6044
6045@item
f97c9175
AE
6046Insert a USB stick of 1@tie{}GiB or more into your machine, and determine
6047its device name. Assuming that the USB stick is known as @file{/dev/sdX},
5af6de3e
LC
6048copy the image with:
6049
6050@example
4705641f 6051dd if=guixsd-usb-install-@value{VERSION}.x86_64 of=/dev/sdX
5af6de3e
LC
6052@end example
6053
6054Access to @file{/dev/sdX} usually requires root privileges.
6055@end enumerate
6056
6057Once this is done, you should be able to reboot the system and boot from
6058the USB stick. The latter usually requires you to get in the BIOS' boot
6059menu, where you can choose to boot from the USB stick.
6060
dedb8d5e 6061@node Preparing for Installation
5af6de3e
LC
6062@subsection Preparing for Installation
6063
6064Once you have successfully booted the image on the USB stick, you should
6065end up with a root prompt. Several console TTYs are configured and can
6066be used to run commands as root. TTY2 shows this documentation,
de341e7c
LC
6067browsable using the Info reader commands (@pxref{Top,,, info-stnd,
6068Stand-alone GNU Info}). The installation system runs the GPM mouse
6069daemon, which allows you to select text with the left mouse button and
6070to paste it with the middle button.
5af6de3e 6071
ff925d37
LC
6072@quotation Note
6073Installation requires access to the Internet so that any missing
6074dependencies of your system configuration can be downloaded. See the
6075``Networking'' section below.
6076@end quotation
6077
0e69cf67
LC
6078The installation system includes many common tools needed for this task.
6079But it is also a full-blown GuixSD system, which means that you can
6080install additional packages, should you need it, using @command{guix
6081package} (@pxref{Invoking guix package}).
6082
dedb8d5e 6083@subsubsection Keyboard Layout
5af6de3e 6084
dedb8d5e
LC
6085@cindex keyboard layout
6086The installation image uses the US qwerty keyboard layout. If you want
6087to change it, you can use the @command{loadkeys} command. For example,
6088the following command selects the Dvorak keyboard layout:
5af6de3e 6089
dedb8d5e
LC
6090@example
6091loadkeys dvorak
6092@end example
6093
6094See the files under @file{/run/current-system/profile/share/keymaps} for
6095a list of available keyboard layouts. Run @command{man loadkeys} for
6096more information.
6097
6098@subsubsection Networking
6099
6100Run the following command see what your network interfaces are called:
235cba85
LC
6101
6102@example
dedb8d5e 6103ifconfig -a
235cba85
LC
6104@end example
6105
1713c37f
LC
6106@noindent
6107@dots{} or, using the GNU/Linux-specific @command{ip} command:
6108
6109@example
6110ip a
6111@end example
6112
95c559c1 6113@c http://cgit.freedesktop.org/systemd/systemd/tree/src/udev/udev-builtin-net_id.c#n20
dedb8d5e
LC
6114Wired interfaces have a name starting with @samp{e}; for example, the
6115interface corresponding to the first on-board Ethernet controller is
6116called @samp{eno1}. Wireless interfaces have a name starting with
6117@samp{w}, like @samp{w1p2s0}.
6118
6119@table @asis
6120@item Wired connection
6121To configure a wired network run the following command, substituting
6122@var{interface} with the name of the wired interface you want to use.
6123
6124@example
6125ifconfig @var{interface} up
6126@end example
6127
6128@item Wireless connection
6129To configure wireless networking, you can create a configuration file
6130for the @command{wpa_supplicant} configuration tool (its location is not
6131important) using one of the available text editors such as
6132@command{zile}:
6133
6134@example
6135zile wpa_supplicant.conf
6136@end example
6137
6138As an example, the following stanza can go to this file and will work
6139for many wireless networks, provided you give the actual SSID and
6140passphrase for the network you are connecting to:
6141
6142@example
6143network=@{
ae768308 6144 ssid="@var{my-ssid}"
dedb8d5e
LC
6145 key_mgmt=WPA-PSK
6146 psk="the network's secret passphrase"
6147@}
6148@end example
6149
6150Start the wireless service and run it in the background with the
6151following command (substitute @var{interface} with the name of the
6152network interface you want to use):
6153
6154@example
6155wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B
6156@end example
6157
641d0518 6158Run @command{man wpa_supplicant} for more information.
dedb8d5e
LC
6159@end table
6160
6161At this point, you need to acquire an IP address. On a network where IP
6162addresses are automatically assigned @i{via} DHCP, you can run:
6163
6164@example
15650ac2 6165dhclient -v @var{interface}
dedb8d5e 6166@end example
5af6de3e 6167
dedb8d5e
LC
6168Try to ping a server to see if networking is up and running:
6169
6170@example
6171ping -c 3 gnu.org
6172@end example
5af6de3e
LC
6173
6174Setting up network access is almost always a requirement because the
6175image does not contain all the software and tools that may be needed.
6176
dedb8d5e
LC
6177@subsubsection Disk Partitioning
6178
6179Unless this has already been done, the next step is to partition, and
6180then format the target partition(s).
6181
6182The installation image includes several partitioning tools, including
6183Parted (@pxref{Overview,,, parted, GNU Parted User Manual}),
6184@command{fdisk}, and @command{cfdisk}. Run it and set up your disk with
6185the partition layout you want:
6186
6187@example
6188cfdisk
6189@end example
6190
6191Once you are done partitioning the target hard disk drive, you have to
6192create a file system on the relevant partition(s)@footnote{Currently
6193GuixSD pretty much assumes an ext4 file system. In particular, code
6194that reads partition UUIDs and labels only works with ext4. This will
6195be fixed in the future.}.
5af6de3e 6196
7ab44369
LC
6197Preferably, assign partitions a label so that you can easily and
6198reliably refer to them in @code{file-system} declarations (@pxref{File
6199Systems}). This is typically done using the @code{-L} option of
dedb8d5e
LC
6200@command{mkfs.ext4} and related commands. So, assuming the target root
6201partition lives at @file{/dev/sda1}, a file system with the label
6202@code{my-root} can be created with:
7ab44369 6203
dedb8d5e
LC
6204@example
6205mkfs.ext4 -L my-root /dev/sda1
6206@end example
dd816355 6207
316d65be
LC
6208@c FIXME: Uncomment this once GRUB fully supports encrypted roots.
6209@c A typical command sequence may be:
6210@c
6211@c @example
6212@c # fdisk /dev/sdX
6213@c @dots{} Create partitions etc.@dots{}
6214@c # cryptsetup luksFormat /dev/sdX1
6215@c # cryptsetup open --type luks /dev/sdX1 my-partition
6216@c # mkfs.ext4 -L my-root /dev/mapper/my-partition
6217@c @end example
6d6e6281 6218
dedb8d5e
LC
6219In addition to e2fsprogs, the suite of tools to manipulate
6220ext2/ext3/ext4 file systems, the installation image includes
6221Cryptsetup/LUKS for disk encryption.
5af6de3e 6222
dedb8d5e
LC
6223Once that is done, mount the target root partition under @file{/mnt}
6224with a command like (again, assuming @file{/dev/sda1} is the root
6225partition):
83a17b62 6226
dedb8d5e
LC
6227@example
6228mount /dev/sda1 /mnt
6229@end example
83a17b62 6230
31b6cdf8
LC
6231Finally, if you plan to use one or more swap partitions (@pxref{Memory
6232Concepts, swap space,, libc, The GNU C Library Reference Manual}), make
6233sure to initialize them with @command{mkswap}. Assuming you have one
6234swap partition on @file{/dev/sda2}, you would run:
6235
6236@example
6237mkswap /dev/sda2
6238@end example
6239
dedb8d5e
LC
6240@node Proceeding with the Installation
6241@subsection Proceeding with the Installation
83a17b62 6242
dedb8d5e
LC
6243With the target partitions ready and the target root mounted on
6244@file{/mnt}, we're ready to go. First, run:
5af6de3e 6245
dedb8d5e
LC
6246@example
6247herd start cow-store /mnt
6248@end example
5af6de3e 6249
b397c0d5
LC
6250This makes @file{/gnu/store} copy-on-write, such that packages added to it
6251during the installation phase are written to the target disk on @file{/mnt}
6252rather than kept in memory. This is necessary because the first phase of
6253the @command{guix system init} command (see below) entails downloads or
6254builds to @file{/gnu/store} which, initially, is an in-memory file system.
5af6de3e 6255
dedb8d5e 6256Next, you have to edit a file and
5af6de3e
LC
6257provide the declaration of the operating system to be installed. To
6258that end, the installation system comes with two text editors: GNU nano
6259(@pxref{Top,,, nano, GNU nano Manual}), and GNU Zile, an Emacs clone.
efa77c6c
LC
6260We strongly recommend storing that file on the target root file system, say,
6261as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your
6262configuration file once you have rebooted into the newly-installed system.
5af6de3e 6263
dedb8d5e
LC
6264@xref{Using the Configuration System}, for an overview of the
6265configuration file. The example configurations discussed in that
6266section are available under @file{/etc/configuration} in the
6267installation image. Thus, to get started with a system configuration
6268providing a graphical display server (a ``desktop'' system), you can run
6269something along these lines:
6270
6271@example
6272# mkdir /mnt/etc
6273# cp /etc/configuration/desktop.scm /mnt/etc/config.scm
6274# zile /mnt/etc/config.scm
6275@end example
6276
6277You should pay attention to what your configuration file contains, and
6278in particular:
6279
6280@itemize
6281@item
6282Make sure the @code{grub-configuration} form refers to the device you
6283want to install GRUB on.
6284
6285@item
6286Be sure that your partition labels match the value of their respective
6287@code{device} fields in your @code{file-system} configuration, assuming
6288your @code{file-system} configuration sets the value of @code{title} to
6289@code{'label}.
6290@end itemize
5af6de3e 6291
dd51caac
LC
6292Once you are done preparing the configuration file, the new system must
6293be initialized (remember that the target root file system is mounted
6294under @file{/mnt}):
5af6de3e
LC
6295
6296@example
6297guix system init /mnt/etc/config.scm /mnt
6298@end example
6299
6300@noindent
dedb8d5e 6301This copies all the necessary files and installs GRUB on
5af6de3e 6302@file{/dev/sdX}, unless you pass the @option{--no-grub} option. For
6621cdb6 6303more information, @pxref{Invoking guix system}. This command may trigger
5af6de3e
LC
6304downloads or builds of missing packages, which can take some time.
6305
1bd4e6db
LC
6306Once that command has completed---and hopefully succeeded!---you can run
6307@command{reboot} and boot into the new system. The @code{root} password
6308in the new system is initially empty; other users' passwords need to be
6309initialized by running the @command{passwd} command as @code{root},
6310unless your configuration specifies otherwise
6311(@pxref{user-account-password, user account passwords}).
6312
6313Join us on @code{#guix} on the Freenode IRC network or on
5af6de3e
LC
6314@file{guix-devel@@gnu.org} to share your experience---good or not so
6315good.
6316
dedb8d5e 6317@node Building the Installation Image
5af6de3e
LC
6318@subsection Building the Installation Image
6319
6320The installation image described above was built using the @command{guix
6321system} command, specifically:
6322
622b2304 6323@c FIXME: 1G is too much; see <http://bugs.gnu.org/23077>.
5af6de3e 6324@example
622b2304 6325guix system disk-image --image-size=1G gnu/system/install.scm
5af6de3e
LC
6326@end example
6327
6e6a0401
AE
6328Have a look at @file{gnu/system/install.scm} in the source tree,
6329and see also @ref{Invoking guix system} for more information
5af6de3e
LC
6330about the installation image.
6331
cf4a9129
LC
6332@node System Configuration
6333@section System Configuration
b208a005 6334
cf4a9129 6335@cindex system configuration
3ca2731c 6336The Guix System Distribution supports a consistent whole-system configuration
cf4a9129
LC
6337mechanism. By that we mean that all aspects of the global system
6338configuration---such as the available system services, timezone and
6339locale settings, user accounts---are declared in a single place. Such
6340a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected.
91ef73d4 6341
cf4a9129
LC
6342One of the advantages of putting all the system configuration under the
6343control of Guix is that it supports transactional system upgrades, and
1068f26b 6344makes it possible to roll back to a previous system instantiation,
cf4a9129 6345should something go wrong with the new one (@pxref{Features}). Another
1068f26b 6346advantage is that it makes it easy to replicate the exact same configuration
cf4a9129
LC
6347across different machines, or at different points in time, without
6348having to resort to additional administration tools layered on top of
1068f26b 6349the own tools of the system.
cf4a9129 6350@c Yes, we're talking of Puppet, Chef, & co. here. ↑
91ef73d4 6351
cf4a9129
LC
6352This section describes this mechanism. First we focus on the system
6353administrator's viewpoint---explaining how the system is configured and
6354instantiated. Then we show how this mechanism can be extended, for
6355instance to support new system services.
91ef73d4 6356
cf4a9129
LC
6357@menu
6358* Using the Configuration System:: Customizing your GNU system.
7313a52e 6359* operating-system Reference:: Detail of operating-system declarations.
cf4a9129 6360* File Systems:: Configuring file system mounts.
510f9d86 6361* Mapped Devices:: Block device extra processing.
cf4a9129 6362* User Accounts:: Specifying user accounts.
598e19dc 6363* Locales:: Language and cultural convention settings.
cf4a9129 6364* Services:: Specifying system services.
0ae8c15a 6365* Setuid Programs:: Programs running with root privileges.
efb5e833 6366* X.509 Certificates:: Authenticating HTTPS servers.
996ed739 6367* Name Service Switch:: Configuring libc's name service switch.
fd1b1fa2 6368* Initial RAM Disk:: Linux-Libre bootstrapping.
88faf933 6369* GRUB Configuration:: Configuring the boot loader.
cf4a9129 6370* Invoking guix system:: Instantiating a system configuration.
97d76250 6371* Running GuixSD in a VM:: How to run GuixSD in a virtual machine.
cf4a9129
LC
6372* Defining Services:: Adding new service definitions.
6373@end menu
91ef73d4 6374
cf4a9129
LC
6375@node Using the Configuration System
6376@subsection Using the Configuration System
64d76fa6 6377
cf4a9129
LC
6378The operating system is configured by providing an
6379@code{operating-system} declaration in a file that can then be passed to
6380the @command{guix system} command (@pxref{Invoking guix system}). A
6381simple setup, with the default system services, the default Linux-Libre
6382kernel, initial RAM disk, and boot loader looks like this:
91ef73d4 6383
cf4a9129
LC
6384@findex operating-system
6385@lisp
dd51caac 6386@include os-config-bare-bones.texi
cf4a9129 6387@end lisp
401c53c4 6388
cf4a9129
LC
6389This example should be self-describing. Some of the fields defined
6390above, such as @code{host-name} and @code{bootloader}, are mandatory.
6391Others, such as @code{packages} and @code{services}, can be omitted, in
6392which case they get a default value.
e7f34eb0 6393
5d94ac51
LC
6394Below we discuss the effect of some of the most important fields
6395(@pxref{operating-system Reference}, for details about all the available
6396fields), and how to @dfn{instantiate} the operating system using
6397@command{guix system}.
6398
6399@unnumberedsubsubsec Globally-Visible Packages
6400
cf4a9129 6401@vindex %base-packages
5d94ac51
LC
6402The @code{packages} field lists packages that will be globally visible
6403on the system, for all user accounts---i.e., in every user's @code{PATH}
6404environment variable---in addition to the per-user profiles
6405(@pxref{Invoking guix package}). The @var{%base-packages} variable
6406provides all the tools one would expect for basic user and administrator
6407tasks---including the GNU Core Utilities, the GNU Networking Utilities,
6408the GNU Zile lightweight text editor, @command{find}, @command{grep},
6409etc. The example above adds tcpdump to those, taken from the @code{(gnu
6410packages admin)} module (@pxref{Package Modules}).
e7f34eb0 6411
f6c9fb1b
LC
6412@findex specification->package
6413Referring to packages by variable name, like @var{tcpdump} above, has
6414the advantage of being unambiguous; it also allows typos and such to be
6415diagnosed right away as ``unbound variables''. The downside is that one
6416needs to know which module defines which package, and to augment the
6417@code{use-package-modules} line accordingly. To avoid that, one can use
6418the @code{specification->package} procedure of the @code{(gnu packages)}
6419module, which returns the best package for a given name or name and
6420version:
6421
6422@lisp
6423(use-modules (gnu packages))
6424
6425(operating-system
6426 ;; ...
6427 (packages (append (map specification->package
d5e59248 6428 '("tcpdump" "htop" "gnupg@@2.0"))
f6c9fb1b
LC
6429 %base-packages)))
6430@end lisp
6431
5d94ac51
LC
6432@unnumberedsubsubsec System Services
6433
cf4a9129
LC
6434@vindex %base-services
6435The @code{services} field lists @dfn{system services} to be made
6436available when the system starts (@pxref{Services}).
6437The @code{operating-system} declaration above specifies that, in
6438addition to the basic services, we want the @command{lshd} secure shell
cd6f6c22
LC
6439daemon listening on port 2222 (@pxref{Networking Services,
6440@code{lsh-service}}). Under the hood,
cf4a9129
LC
6441@code{lsh-service} arranges so that @code{lshd} is started with the
6442right command-line options, possibly with supporting configuration files
cd6f6c22
LC
6443generated as needed (@pxref{Defining Services}).
6444
6445@cindex customization, of services
6446@findex modify-services
6447Occasionally, instead of using the base services as is, you will want to
4d343a14
CM
6448customize them. To do this, use @code{modify-services} (@pxref{Service
6449Reference, @code{modify-services}}) to modify the list.
6450
6451For example, suppose you want to modify @code{guix-daemon} and Mingetty
6452(the console log-in) in the @var{%base-services} list (@pxref{Base
6453Services, @code{%base-services}}). To do that, you can write the
6454following in your operating system declaration:
cd6f6c22
LC
6455
6456@lisp
4d343a14
CM
6457(define %my-services
6458 ;; My very own list of services.
6459 (modify-services %base-services
6460 (guix-service-type config =>
6461 (guix-configuration
6462 (inherit config)
6463 (use-substitutes? #f)
6464 (extra-options '("--gc-keep-derivations"))))
6465 (mingetty-service-type config =>
6466 (mingetty-configuration
6467 (inherit config)
6468 (motd (plain-file "motd" "Howdy!"))))))
6469
6470(operating-system
6471 ;; @dots{}
6472 (services %my-services))
cd6f6c22
LC
6473@end lisp
6474
4d343a14
CM
6475This changes the configuration---i.e., the service parameters---of the
6476@code{guix-service-type} instance, and that of all the
6477@code{mingetty-service-type} instances in the @var{%base-services} list.
6478Observe how this is accomplished: first, we arrange for the original
6479configuration to be bound to the identifier @code{config} in the
6480@var{body}, and then we write the @var{body} so that it evaluates to the
6481desired configuration. In particular, notice how we use @code{inherit}
6482to create a new configuration which has the same values as the old
6483configuration, but with a few modifications.
a1ba8475 6484
dd51caac 6485The configuration for a typical ``desktop'' usage, with the X11 display
d038b674
LC
6486server, GNOME and Xfce (users can choose which of these desktop
6487environments to use at the log-in screen by pressing @kbd{F1}), network
6488management, power management, and more, would look like this:
dd51caac
LC
6489
6490@lisp
6491@include os-config-desktop.texi
6492@end lisp
6493
d038b674
LC
6494A graphical environment with a choice of lightweight window managers
6495instead of full-blown desktop environments would look like this:
6496
6497@lisp
6498@include os-config-lightweight-desktop.texi
6499@end lisp
6500
dd51caac 6501@xref{Desktop Services}, for the exact list of services provided by
efb5e833
LC
6502@var{%desktop-services}. @xref{X.509 Certificates}, for background
6503information about the @code{nss-certs} package that is used here.
dd51caac 6504
5d94ac51
LC
6505Again, @var{%desktop-services} is just a list of service objects. If
6506you want to remove services from there, you can do so using the
6507procedures for list filtering (@pxref{SRFI-1 Filtering and
6508Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the
6509following expression returns a list that contains all the services in
6510@var{%desktop-services} minus the Avahi service:
6511
6512@example
6513(remove (lambda (service)
6514 (eq? (service-kind service) avahi-service-type))
6515 %desktop-services)
6516@end example
6517
6518@unnumberedsubsubsec Instantiating the System
6519
6520Assuming the @code{operating-system} declaration
6521is stored in the @file{my-system-config.scm}
cf4a9129
LC
6522file, the @command{guix system reconfigure my-system-config.scm} command
6523instantiates that configuration, and makes it the default GRUB boot
65797bff
LC
6524entry (@pxref{Invoking guix system}).
6525
1068f26b 6526The normal way to change the system configuration is by updating this
65797bff
LC
6527file and re-running @command{guix system reconfigure}. One should never
6528have to touch files in @command{/etc} or to run commands that modify the
6529system state such as @command{useradd} or @command{grub-install}. In
6530fact, you must avoid that since that would not only void your warranty
6531but also prevent you from rolling back to previous versions of your
6532system, should you ever need to.
6533
6534@cindex roll-back, of the operating system
6535Speaking of roll-back, each time you run @command{guix system
6536reconfigure}, a new @dfn{generation} of the system is created---without
6537modifying or deleting previous generations. Old system generations get
6538an entry in the GRUB boot menu, allowing you to boot them in case
6539something went wrong with the latest generation. Reassuring, no? The
6540@command{guix system list-generations} command lists the system
6541generations available on disk.
b81e1947 6542
5d94ac51
LC
6543@unnumberedsubsubsec The Programming Interface
6544
cf4a9129
LC
6545At the Scheme level, the bulk of an @code{operating-system} declaration
6546is instantiated with the following monadic procedure (@pxref{The Store
6547Monad}):
b81e1947 6548
cf4a9129
LC
6549@deffn {Monadic Procedure} operating-system-derivation os
6550Return a derivation that builds @var{os}, an @code{operating-system}
6551object (@pxref{Derivations}).
b81e1947 6552
cf4a9129
LC
6553The output of the derivation is a single directory that refers to all
6554the packages, configuration files, and other supporting files needed to
6555instantiate @var{os}.
6556@end deffn
b81e1947 6557
5d94ac51
LC
6558This procedure is provided by the @code{(gnu system)} module. Along
6559with @code{(gnu services)} (@pxref{Services}), this module contains the
6560guts of GuixSD. Make sure to visit it!
6561
6562
7313a52e
LC
6563@node operating-system Reference
6564@subsection @code{operating-system} Reference
6565
6566This section summarizes all the options available in
6567@code{operating-system} declarations (@pxref{Using the Configuration
6568System}).
6569
6570@deftp {Data Type} operating-system
6571This is the data type representing an operating system configuration.
6572By that, we mean all the global system configuration, not per-user
6573configuration (@pxref{Using the Configuration System}).
6574
6575@table @asis
6576@item @code{kernel} (default: @var{linux-libre})
fbb25e56 6577The package object of the operating system kernel to use@footnote{Currently
7313a52e
LC
6578only the Linux-libre kernel is supported. In the future, it will be
6579possible to use the GNU@tie{}Hurd.}.
6580
ee2a6304
LC
6581@item @code{kernel-arguments} (default: @code{'()})
6582List of strings or gexps representing additional arguments to pass on
1068f26b 6583the command-line of the kernel---e.g., @code{("console=ttyS0")}.
ee2a6304 6584
7313a52e 6585@item @code{bootloader}
88faf933 6586The system bootloader configuration object. @xref{GRUB Configuration}.
7313a52e
LC
6587
6588@item @code{initrd} (default: @code{base-initrd})
6589A two-argument monadic procedure that returns an initial RAM disk for
6590the Linux kernel. @xref{Initial RAM Disk}.
6591
f34c56be
LC
6592@item @code{firmware} (default: @var{%base-firmware})
6593@cindex firmware
6594List of firmware packages loadable by the operating system kernel.
6595
6596The default includes firmware needed for Atheros-based WiFi devices
e3009f60
LC
6597(Linux-libre module @code{ath9k}). @xref{Hardware Considerations}, for
6598more info on supported hardware.
f34c56be 6599
7313a52e
LC
6600@item @code{host-name}
6601The host name.
6602
6603@item @code{hosts-file}
6604@cindex hosts file
24e02c28 6605A file-like object (@pxref{G-Expressions, file-like objects}) for use as
7313a52e 6606@file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library
24e02c28 6607Reference Manual}). The default is a file with entries for
7313a52e
LC
6608@code{localhost} and @var{host-name}.
6609
6610@item @code{mapped-devices} (default: @code{'()})
6611A list of mapped devices. @xref{Mapped Devices}.
6612
6613@item @code{file-systems}
6614A list of file systems. @xref{File Systems}.
6615
6616@item @code{swap-devices} (default: @code{'()})
6617@cindex swap devices
6618A list of strings identifying devices to be used for ``swap space''
6619(@pxref{Memory Concepts,,, libc, The GNU C Library Reference Manual}).
6620For example, @code{'("/dev/sda3")}.
6621
bf87f38a 6622@item @code{users} (default: @code{%base-user-accounts})
7313a52e
LC
6623@itemx @code{groups} (default: @var{%base-groups})
6624List of user accounts and groups. @xref{User Accounts}.
6625
6626@item @code{skeletons} (default: @code{(default-skeletons)})
e9dffec1
LC
6627A list target file name/file-like object tuples (@pxref{G-Expressions,
6628file-like objects}). These are the skeleton files that will be added to
6629the home directory of newly-created user accounts.
7313a52e
LC
6630
6631For instance, a valid value may look like this:
6632
6633@example
e9dffec1
LC
6634`((".bashrc" ,(plain-file "bashrc" "echo Hello\n"))
6635 (".guile" ,(plain-file "guile"
6636 "(use-modules (ice-9 readline))
6637 (activate-readline)")))
7313a52e
LC
6638@end example
6639
6640@item @code{issue} (default: @var{%default-issue})
6641A string denoting the contents of the @file{/etc/issue} file, which is
1068f26b 6642displayed when users log in on a text console.
7313a52e
LC
6643
6644@item @code{packages} (default: @var{%base-packages})
6645The set of packages installed in the global profile, which is accessible
6646at @file{/run/current-system/profile}.
6647
1068f26b 6648The default set includes core utilities and it is good practice to
7313a52e
LC
6649install non-core utilities in user profiles (@pxref{Invoking guix
6650package}).
6651
6652@item @code{timezone}
6653A timezone identifying string---e.g., @code{"Europe/Paris"}.
6654
17c20385
LC
6655You can run the @command{tzselect} command to find out which timezone
6656string corresponds to your region. Choosing an invalid timezone name
6657causes @command{guix system} to fail.
6658
598e19dc
LC
6659@item @code{locale} (default: @code{"en_US.utf8"})
6660The name of the default locale (@pxref{Locale Names,,, libc, The GNU C
6661Library Reference Manual}). @xref{Locales}, for more information.
6662
6663@item @code{locale-definitions} (default: @var{%default-locale-definitions})
6664The list of locale definitions to be compiled and that may be used at
6665run time. @xref{Locales}.
7313a52e 6666
34760ae7
LC
6667@item @code{locale-libcs} (default: @code{(list @var{glibc})})
6668The list of GNU@tie{}libc packages whose locale data and tools are used
6669to build the locale definitions. @xref{Locales}, for compatibility
6670considerations that justify this option.
6671
996ed739 6672@item @code{name-service-switch} (default: @var{%default-nss})
1068f26b 6673Configuration of the libc name service switch (NSS)---a
996ed739
LC
6674@code{<name-service-switch>} object. @xref{Name Service Switch}, for
6675details.
6676
7313a52e 6677@item @code{services} (default: @var{%base-services})
28d939af 6678A list of service objects denoting system services. @xref{Services}.
7313a52e
LC
6679
6680@item @code{pam-services} (default: @code{(base-pam-services)})
6681@cindex PAM
6682@cindex pluggable authentication modules
6683Linux @dfn{pluggable authentication module} (PAM) services.
6684@c FIXME: Add xref to PAM services section.
6685
6686@item @code{setuid-programs} (default: @var{%setuid-programs})
6687List of string-valued G-expressions denoting setuid programs.
6688@xref{Setuid Programs}.
6689
f5a9ffa0
AK
6690@item @code{sudoers-file} (default: @var{%sudoers-specification})
6691@cindex sudoers file
84765839
LC
6692The contents of the @file{/etc/sudoers} file as a file-like object
6693(@pxref{G-Expressions, @code{local-file} and @code{plain-file}}).
7313a52e
LC
6694
6695This file specifies which users can use the @command{sudo} command, what
6696they are allowed to do, and what privileges they may gain. The default
6697is that only @code{root} and members of the @code{wheel} group may use
6698@code{sudo}.
6699
6700@end table
6701@end deftp
6702
cf4a9129
LC
6703@node File Systems
6704@subsection File Systems
b81e1947 6705
cf4a9129 6706The list of file systems to be mounted is specified in the
1068f26b 6707@code{file-systems} field of the operating system declaration
cf4a9129
LC
6708(@pxref{Using the Configuration System}). Each file system is declared
6709using the @code{file-system} form, like this:
b81e1947
LC
6710
6711@example
cf4a9129
LC
6712(file-system
6713 (mount-point "/home")
6714 (device "/dev/sda3")
6715 (type "ext4"))
b81e1947
LC
6716@end example
6717
cf4a9129
LC
6718As usual, some of the fields are mandatory---those shown in the example
6719above---while others can be omitted. These are described below.
b81e1947 6720
cf4a9129
LC
6721@deftp {Data Type} file-system
6722Objects of this type represent file systems to be mounted. They
6723contain the following members:
5ff3c4b8 6724
cf4a9129
LC
6725@table @asis
6726@item @code{type}
6727This is a string specifying the type of the file system---e.g.,
6728@code{"ext4"}.
5ff3c4b8 6729
cf4a9129
LC
6730@item @code{mount-point}
6731This designates the place where the file system is to be mounted.
b81e1947 6732
cf4a9129
LC
6733@item @code{device}
6734This names the ``source'' of the file system. By default it is the name
6735of a node under @file{/dev}, but its meaning depends on the @code{title}
6736field described below.
401c53c4 6737
cf4a9129
LC
6738@item @code{title} (default: @code{'device})
6739This is a symbol that specifies how the @code{device} field is to be
6740interpreted.
401c53c4 6741
cf4a9129
LC
6742When it is the symbol @code{device}, then the @code{device} field is
6743interpreted as a file name; when it is @code{label}, then @code{device}
6744is interpreted as a partition label name; when it is @code{uuid},
6745@code{device} is interpreted as a partition unique identifier (UUID).
da7cabd4 6746
661a1d79 6747UUIDs may be converted from their string representation (as shown by the
0767f6a6
LC
6748@command{tune2fs -l} command) using the @code{uuid} form@footnote{The
6749@code{uuid} form expects 16-byte UUIDs as defined in
6750@uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the
6751form of UUID used by the ext2 family of file systems and others, but it
6752is different from ``UUIDs'' found in FAT file systems, for instance.},
6753like this:
661a1d79
LC
6754
6755@example
6756(file-system
6757 (mount-point "/home")
6758 (type "ext4")
6759 (title 'uuid)
6760 (device (uuid "4dab5feb-d176-45de-b287-9b0a6e4c01cb")))
6761@end example
6762
cf4a9129 6763The @code{label} and @code{uuid} options offer a way to refer to disk
661a1d79
LC
6764partitions without having to hard-code their actual device
6765name@footnote{Note that, while it is tempting to use
6766@file{/dev/disk/by-uuid} and similar device names to achieve the same
6767result, this is not recommended: These special device nodes are created
6768by the udev daemon and may be unavailable at the time the device is
6769mounted.}.
da7cabd4 6770
1068f26b 6771However, when the source of a file system is a mapped device (@pxref{Mapped
5f86a66e
LC
6772Devices}), its @code{device} field @emph{must} refer to the mapped
6773device name---e.g., @file{/dev/mapper/root-partition}---and consequently
6774@code{title} must be set to @code{'device}. This is required so that
6775the system knows that mounting the file system depends on having the
6776corresponding device mapping established.
6777
cf4a9129
LC
6778@item @code{flags} (default: @code{'()})
6779This is a list of symbols denoting mount flags. Recognized flags
2c071ce9
LC
6780include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow
6781access to special files), @code{no-suid} (ignore setuid and setgid
6782bits), and @code{no-exec} (disallow program execution.)
da7cabd4 6783
cf4a9129
LC
6784@item @code{options} (default: @code{#f})
6785This is either @code{#f}, or a string denoting mount options.
da7cabd4 6786
be21979d
LC
6787@item @code{mount?} (default: @code{#t})
6788This value indicates whether to automatically mount the file system when
6789the system is brought up. When set to @code{#f}, the file system gets
6790an entry in @file{/etc/fstab} (read by the @command{mount} command) but
6791is not automatically mounted.
6792
cf4a9129
LC
6793@item @code{needed-for-boot?} (default: @code{#f})
6794This Boolean value indicates whether the file system is needed when
6795booting. If that is true, then the file system is mounted when the
6796initial RAM disk (initrd) is loaded. This is always the case, for
6797instance, for the root file system.
da7cabd4 6798
cf4a9129
LC
6799@item @code{check?} (default: @code{#t})
6800This Boolean indicates whether the file system needs to be checked for
6801errors before being mounted.
f9cc8971 6802
4e469051
LC
6803@item @code{create-mount-point?} (default: @code{#f})
6804When true, the mount point is created if it does not exist yet.
6805
e51710d1
LC
6806@item @code{dependencies} (default: @code{'()})
6807This is a list of @code{<file-system>} objects representing file systems
6808that must be mounted before (and unmounted after) this one.
6809
6810As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is
6811a dependency of @file{/sys/fs/cgroup/cpu} and
6812@file{/sys/fs/cgroup/memory}.
6813
cf4a9129
LC
6814@end table
6815@end deftp
da7cabd4 6816
a69576ea
LC
6817The @code{(gnu system file-systems)} exports the following useful
6818variables.
6819
6820@defvr {Scheme Variable} %base-file-systems
6821These are essential file systems that are required on normal systems,
cc0e575a 6822such as @var{%pseudo-terminal-file-system} and @var{%immutable-store} (see
3392ce5d
LC
6823below.) Operating system declarations should always contain at least
6824these.
a69576ea
LC
6825@end defvr
6826
7f239fd3
LC
6827@defvr {Scheme Variable} %pseudo-terminal-file-system
6828This is the file system to be mounted as @file{/dev/pts}. It supports
6829@dfn{pseudo-terminals} created @i{via} @code{openpty} and similar
6830functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference
6831Manual}). Pseudo-terminals are used by terminal emulators such as
6832@command{xterm}.
6833@end defvr
6834
db17ae5c
LC
6835@defvr {Scheme Variable} %shared-memory-file-system
6836This file system is mounted as @file{/dev/shm} and is used to support
6837memory sharing across processes (@pxref{Memory-mapped I/O,
6838@code{shm_open},, libc, The GNU C Library Reference Manual}).
6839@end defvr
6840
3392ce5d
LC
6841@defvr {Scheme Variable} %immutable-store
6842This file system performs a read-only ``bind mount'' of
6843@file{/gnu/store}, making it read-only for all the users including
6844@code{root}. This prevents against accidental modification by software
6845running as @code{root} or by system administrators.
6846
6847The daemon itself is still able to write to the store: it remounts it
6848read-write in its own ``name space.''
6849@end defvr
6850
a69576ea
LC
6851@defvr {Scheme Variable} %binary-format-file-system
6852The @code{binfmt_misc} file system, which allows handling of arbitrary
6853executable file types to be delegated to user space. This requires the
6854@code{binfmt.ko} kernel module to be loaded.
6855@end defvr
6856
6857@defvr {Scheme Variable} %fuse-control-file-system
6858The @code{fusectl} file system, which allows unprivileged users to mount
6859and unmount user-space FUSE file systems. This requires the
6860@code{fuse.ko} kernel module to be loaded.
6861@end defvr
6862
510f9d86
LC
6863@node Mapped Devices
6864@subsection Mapped Devices
6865
6866@cindex device mapping
6867@cindex mapped devices
6868The Linux kernel has a notion of @dfn{device mapping}: a block device,
6869such as a hard disk partition, can be @dfn{mapped} into another device,
6870with additional processing over the data that flows through
6871it@footnote{Note that the GNU@tie{}Hurd makes no difference between the
6872concept of a ``mapped device'' and that of a file system: both boil down
6873to @emph{translating} input/output operations made on a file to
6874operations on its backing store. Thus, the Hurd implements mapped
6875devices, like file systems, using the generic @dfn{translator} mechanism
6876(@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A
6877typical example is encryption device mapping: all writes to the mapped
6878device are encrypted, and all reads are deciphered, transparently.
6879
6880Mapped devices are declared using the @code{mapped-device} form:
6881
6882@example
6883(mapped-device
6884 (source "/dev/sda3")
6885 (target "home")
6886 (type luks-device-mapping))
6887@end example
6888
ffba7d49
LC
6889Or, better yet, like this:
6890
6891@example
6892(mapped-device
6893 (source (uuid "cb67fc72-0d54-4c88-9d4b-b225f30b0f44"))
6894 (target "home")
6895 (type luks-device-mapping))
6896@end example
6897
510f9d86
LC
6898@cindex disk encryption
6899@cindex LUKS
6900This example specifies a mapping from @file{/dev/sda3} to
6901@file{/dev/mapper/home} using LUKS---the
6902@url{http://code.google.com/p/cryptsetup,Linux Unified Key Setup}, a
ffba7d49
LC
6903standard mechanism for disk encryption. In the second example, the UUID
6904(unique identifier) is the LUKS UUID returned for the device by a
6905command like:
6906
6907@example
6908cryptsetup luksUUID /dev/sdx9
6909@end example
6910
6911The @file{/dev/mapper/home}
510f9d86
LC
6912device can then be used as the @code{device} of a @code{file-system}
6913declaration (@pxref{File Systems}). The @code{mapped-device} form is
6914detailed below.
6915
6916@deftp {Data Type} mapped-device
6917Objects of this type represent device mappings that will be made when
6918the system boots up.
6919
9cb426b8
LC
6920@table @code
6921@item source
510f9d86
LC
6922This string specifies the name of the block device to be mapped, such as
6923@code{"/dev/sda3"}.
6924
9cb426b8 6925@item target
510f9d86
LC
6926This string specifies the name of the mapping to be established. For
6927example, specifying @code{"my-partition"} will lead to the creation of
6928the @code{"/dev/mapper/my-partition"} device.
6929
9cb426b8 6930@item type
510f9d86
LC
6931This must be a @code{mapped-device-kind} object, which specifies how
6932@var{source} is mapped to @var{target}.
6933@end table
6934@end deftp
6935
6936@defvr {Scheme Variable} luks-device-mapping
6937This defines LUKS block device encryption using the @command{cryptsetup}
1068f26b 6938command from the package with the same name. It relies on the
510f9d86
LC
6939@code{dm-crypt} Linux kernel module.
6940@end defvr
6941
cf4a9129
LC
6942@node User Accounts
6943@subsection User Accounts
ee85f3db 6944
9bea87a5
LC
6945User accounts and groups are entirely managed through the
6946@code{operating-system} declaration. They are specified with the
6947@code{user-account} and @code{user-group} forms:
ee85f3db 6948
cf4a9129
LC
6949@example
6950(user-account
6951 (name "alice")
6952 (group "users")
24e752c0
LC
6953 (supplementary-groups '("wheel" ;allow use of sudo, etc.
6954 "audio" ;sound card
6955 "video" ;video devices such as webcams
6956 "cdrom")) ;the good ol' CD-ROM
cf4a9129
LC
6957 (comment "Bob's sister")
6958 (home-directory "/home/alice"))
6959@end example
25083588 6960
9bea87a5
LC
6961When booting or upon completion of @command{guix system reconfigure},
6962the system ensures that only the user accounts and groups specified in
6963the @code{operating-system} declaration exist, and with the specified
6964properties. Thus, account or group creations or modifications made by
6965directly invoking commands such as @command{useradd} are lost upon
6966reconfiguration or reboot. This ensures that the system remains exactly
6967as declared.
6968
cf4a9129
LC
6969@deftp {Data Type} user-account
6970Objects of this type represent user accounts. The following members may
6971be specified:
ee85f3db 6972
cf4a9129
LC
6973@table @asis
6974@item @code{name}
6975The name of the user account.
ee85f3db 6976
cf4a9129
LC
6977@item @code{group}
6978This is the name (a string) or identifier (a number) of the user group
6979this account belongs to.
ee85f3db 6980
cf4a9129
LC
6981@item @code{supplementary-groups} (default: @code{'()})
6982Optionally, this can be defined as a list of group names that this
6983account belongs to.
ee85f3db 6984
cf4a9129
LC
6985@item @code{uid} (default: @code{#f})
6986This is the user ID for this account (a number), or @code{#f}. In the
6987latter case, a number is automatically chosen by the system when the
6988account is created.
ee85f3db 6989
cf4a9129 6990@item @code{comment} (default: @code{""})
1068f26b 6991A comment about the account, such as the account owner's full name.
c8c871d1 6992
cf4a9129
LC
6993@item @code{home-directory}
6994This is the name of the home directory for the account.
ee85f3db 6995
cf4a9129
LC
6996@item @code{shell} (default: Bash)
6997This is a G-expression denoting the file name of a program to be used as
6998the shell (@pxref{G-Expressions}).
ee85f3db 6999
cf4a9129
LC
7000@item @code{system?} (default: @code{#f})
7001This Boolean value indicates whether the account is a ``system''
7002account. System accounts are sometimes treated specially; for instance,
7003graphical login managers do not list them.
ee85f3db 7004
1bd4e6db 7005@anchor{user-account-password}
cf4a9129 7006@item @code{password} (default: @code{#f})
eb59595c
LC
7007You would normally leave this field to @code{#f}, initialize user
7008passwords as @code{root} with the @command{passwd} command, and then let
9bea87a5
LC
7009users change it with @command{passwd}. Passwords set with
7010@command{passwd} are of course preserved across reboot and
7011reconfiguration.
eb59595c
LC
7012
7013If you @emph{do} want to have a preset password for an account, then
7014this field must contain the encrypted password, as a string.
5d1f1177
LC
7015@xref{crypt,,, libc, The GNU C Library Reference Manual}, for more information
7016on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference
eb59595c 7017Manual}, for information on Guile's @code{crypt} procedure.
c8c871d1 7018
cf4a9129
LC
7019@end table
7020@end deftp
ee85f3db 7021
cf4a9129 7022User group declarations are even simpler:
ee85f3db 7023
cf4a9129
LC
7024@example
7025(user-group (name "students"))
7026@end example
ee85f3db 7027
cf4a9129
LC
7028@deftp {Data Type} user-group
7029This type is for, well, user groups. There are just a few fields:
af8a56b8 7030
cf4a9129
LC
7031@table @asis
7032@item @code{name}
1068f26b 7033The name of the group.
ee85f3db 7034
cf4a9129
LC
7035@item @code{id} (default: @code{#f})
7036The group identifier (a number). If @code{#f}, a new number is
7037automatically allocated when the group is created.
ee85f3db 7038
c8fa3426
LC
7039@item @code{system?} (default: @code{#f})
7040This Boolean value indicates whether the group is a ``system'' group.
7041System groups have low numerical IDs.
7042
cf4a9129
LC
7043@item @code{password} (default: @code{#f})
7044What, user groups can have a password? Well, apparently yes. Unless
1068f26b 7045@code{#f}, this field specifies the password of the group.
ee85f3db 7046
cf4a9129
LC
7047@end table
7048@end deftp
401c53c4 7049
cf4a9129
LC
7050For convenience, a variable lists all the basic user groups one may
7051expect:
401c53c4 7052
cf4a9129
LC
7053@defvr {Scheme Variable} %base-groups
7054This is the list of basic user groups that users and/or packages expect
7055to be present on the system. This includes groups such as ``root'',
7056``wheel'', and ``users'', as well as groups used to control access to
7057specific devices such as ``audio'', ``disk'', and ``cdrom''.
7058@end defvr
401c53c4 7059
bf87f38a
LC
7060@defvr {Scheme Variable} %base-user-accounts
7061This is the list of basic system accounts that programs may expect to
7062find on a GNU/Linux system, such as the ``nobody'' account.
7063
7064Note that the ``root'' account is not included here. It is a
7065special-case and is automatically added whether or not it is specified.
7066@end defvr
7067
598e19dc
LC
7068@node Locales
7069@subsection Locales
7070
7071@cindex locale
7072A @dfn{locale} defines cultural conventions for a particular language
7073and region of the world (@pxref{Locales,,, libc, The GNU C Library
7074Reference Manual}). Each locale has a name that typically has the form
b2636518 7075@code{@var{language}_@var{territory}.@var{codeset}}---e.g.,
598e19dc
LC
7076@code{fr_LU.utf8} designates the locale for the French language, with
7077cultural conventions from Luxembourg, and using the UTF-8 encoding.
7078
7079@cindex locale definition
7080Usually, you will want to specify the default locale for the machine
7081using the @code{locale} field of the @code{operating-system} declaration
7082(@pxref{operating-system Reference, @code{locale}}).
7083
f5582b2c
LC
7084The selected locale is automatically added to the @dfn{locale
7085definitions} known to the system if needed, with its codeset inferred
7086from its name---e.g., @code{bo_CN.utf8} will be assumed to use the
7087@code{UTF-8} codeset. Additional locale definitions can be specified in
7088the @code{locale-definitions} slot of @code{operating-system}---this is
7089useful, for instance, if the codeset could not be inferred from the
7090locale name. The default set of locale definitions includes some widely
7091used locales, but not all the available locales, in order to save space.
7092
7093For instance, to add the North Frisian locale for Germany, the value of
7094that field may be:
598e19dc
LC
7095
7096@example
7097(cons (locale-definition
7098 (name "fy_DE.utf8") (source "fy_DE"))
7099 %default-locale-definitions)
7100@end example
7101
7102Likewise, to save space, one might want @code{locale-definitions} to
7103list only the locales that are actually used, as in:
7104
7105@example
7106(list (locale-definition
7107 (name "ja_JP.eucjp") (source "ja_JP")
7108 (charset "EUC-JP")))
7109@end example
7110
5c3c1427
LC
7111@vindex LOCPATH
7112The compiled locale definitions are available at
46bd6edd
LC
7113@file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc
7114version, which is the default location where the GNU@tie{}libc provided
7115by Guix looks for locale data. This can be overridden using the
7116@code{LOCPATH} environment variable (@pxref{locales-and-locpath,
5c3c1427
LC
7117@code{LOCPATH} and locale packages}).
7118
598e19dc
LC
7119The @code{locale-definition} form is provided by the @code{(gnu system
7120locale)} module. Details are given below.
7121
7122@deftp {Data Type} locale-definition
7123This is the data type of a locale definition.
7124
7125@table @asis
7126
7127@item @code{name}
7128The name of the locale. @xref{Locale Names,,, libc, The GNU C Library
7129Reference Manual}, for more information on locale names.
7130
7131@item @code{source}
7132The name of the source for that locale. This is typically the
7133@code{@var{language}_@var{territory}} part of the locale name.
7134
7135@item @code{charset} (default: @code{"UTF-8"})
7136The ``character set'' or ``code set'' for that locale,
7137@uref{http://www.iana.org/assignments/character-sets, as defined by
7138IANA}.
7139
7140@end table
7141@end deftp
7142
7143@defvr {Scheme Variable} %default-locale-definitions
1068f26b 7144A list of commonly used UTF-8 locales, used as the default
b2636518 7145value of the @code{locale-definitions} field of @code{operating-system}
598e19dc 7146declarations.
b2636518
LC
7147
7148@cindex locale name
7149@cindex normalized codeset in locale names
7150These locale definitions use the @dfn{normalized codeset} for the part
7151that follows the dot in the name (@pxref{Using gettextized software,
7152normalized codeset,, libc, The GNU C Library Reference Manual}). So for
7153instance it has @code{uk_UA.utf8} but @emph{not}, say,
7154@code{uk_UA.UTF-8}.
598e19dc 7155@end defvr
401c53c4 7156
34760ae7
LC
7157@subsubsection Locale Data Compatibility Considerations
7158
7159@cindex incompatibility, of locale data
7160@code{operating-system} declarations provide a @code{locale-libcs} field
7161to specify the GNU@tie{}libc packages that are used to compile locale
7162declarations (@pxref{operating-system Reference}). ``Why would I
7163care?'', you may ask. Well, it turns out that the binary format of
7164locale data is occasionally incompatible from one libc version to
7165another.
7166
7167@c See <https://sourceware.org/ml/libc-alpha/2015-09/msg00575.html>
7168@c and <https://lists.gnu.org/archive/html/guix-devel/2015-08/msg00737.html>.
7169For instance, a program linked against libc version 2.21 is unable to
7170read locale data produced with libc 2.22; worse, that program
7171@emph{aborts} instead of simply ignoring the incompatible locale
7172data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip
7173the incompatible locale data, which is already an improvement.}.
7174Similarly, a program linked against libc 2.22 can read most, but not
7175all, the locale data from libc 2.21 (specifically, @code{LC_COLLATE}
7176data is incompatible); thus calls to @code{setlocale} may fail, but
7177programs will not abort.
7178
7179The ``problem'' in GuixSD is that users have a lot of freedom: They can
7180choose whether and when to upgrade software in their profiles, and might
7181be using a libc version different from the one the system administrator
7182used to build the system-wide locale data.
7183
7184Fortunately, unprivileged users can also install their own locale data
7185and define @var{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath,
7186@code{GUIX_LOCPATH} and locale packages}).
7187
7188Still, it is best if the system-wide locale data at
7189@file{/run/current-system/locale} is built for all the libc versions
7190actually in use on the system, so that all the programs can access
7191it---this is especially crucial on a multi-user system. To do that, the
7192administrator can specify several libc packages in the
7193@code{locale-libcs} field of @code{operating-system}:
7194
7195@example
7196(use-package-modules base)
7197
7198(operating-system
7199 ;; @dots{}
7200 (locale-libcs (list glibc-2.21 (canonical-package glibc))))
7201@end example
7202
7203This example would lead to a system containing locale definitions for
7204both libc 2.21 and the current version of libc in
7205@file{/run/current-system/locale}.
7206
7207
cf4a9129
LC
7208@node Services
7209@subsection Services
401c53c4 7210
cf4a9129
LC
7211@cindex system services
7212An important part of preparing an @code{operating-system} declaration is
7213listing @dfn{system services} and their configuration (@pxref{Using the
7214Configuration System}). System services are typically daemons launched
7215when the system boots, or other actions needed at that time---e.g.,
d8b94dbd
LC
7216configuring network access.
7217
dd17bc38
AK
7218Services are managed by the GNU@tie{}Shepherd (@pxref{Introduction,,,
7219shepherd, The GNU Shepherd Manual}). On a running system, the
7220@command{herd} command allows you to list the available services, show
7221their status, start and stop them, or do other specific operations
7222(@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:
d8b94dbd
LC
7223
7224@example
dd17bc38 7225# herd status
d8b94dbd
LC
7226@end example
7227
7228The above command, run as @code{root}, lists the currently defined
dd17bc38 7229services. The @command{herd doc} command shows a synopsis of the given
d8b94dbd
LC
7230service:
7231
7232@example
dd17bc38 7233# herd doc nscd
d8b94dbd
LC
7234Run libc's name service cache daemon (nscd).
7235@end example
7236
7237The @command{start}, @command{stop}, and @command{restart} sub-commands
7238have the effect you would expect. For instance, the commands below stop
7239the nscd service and restart the Xorg display server:
7240
7241@example
dd17bc38 7242# herd stop nscd
d8b94dbd 7243Service nscd has been stopped.
dd17bc38 7244# herd restart xorg-server
d8b94dbd
LC
7245Service xorg-server has been stopped.
7246Service xorg-server has been started.
7247@end example
401c53c4 7248
cf4a9129 7249The following sections document the available services, starting with
d8b94dbd
LC
7250the core services, that may be used in an @code{operating-system}
7251declaration.
401c53c4 7252
cf4a9129
LC
7253@menu
7254* Base Services:: Essential system services.
c311089b 7255* Scheduled Job Execution:: The mcron service.
cf4a9129
LC
7256* Networking Services:: Network setup, SSH daemon, etc.
7257* X Window:: Graphical display.
fe1a39d3 7258* Desktop Services:: D-Bus and desktop services.
105369a4 7259* Database Services:: SQL databases.
d8c18af8 7260* Mail Services:: IMAP, POP3, SMTP, and all that.
58724c48 7261* Web Services:: Web servers.
aa4ed923 7262* Various Services:: Other services.
cf4a9129 7263@end menu
401c53c4 7264
cf4a9129
LC
7265@node Base Services
7266@subsubsection Base Services
a1ba8475 7267
cf4a9129
LC
7268The @code{(gnu services base)} module provides definitions for the basic
7269services that one expects from the system. The services exported by
7270this module are listed below.
401c53c4 7271
cf4a9129 7272@defvr {Scheme Variable} %base-services
31771497
LC
7273This variable contains a list of basic services (@pxref{Service Types
7274and Services}, for more information on service objects) one would
cf4a9129 7275expect from the system: a login service (mingetty) on each tty, syslogd,
1068f26b 7276the libc name service cache daemon (nscd), the udev device manager, and
cf4a9129 7277more.
401c53c4 7278
cf4a9129
LC
7279This is the default value of the @code{services} field of
7280@code{operating-system} declarations. Usually, when customizing a
7281system, you will want to append services to @var{%base-services}, like
7282this:
401c53c4 7283
cf4a9129 7284@example
fa1e31b8 7285(cons* (avahi-service) (lsh-service) %base-services)
cf4a9129
LC
7286@end example
7287@end defvr
401c53c4 7288
be1c2c54 7289@deffn {Scheme Procedure} host-name-service @var{name}
cf4a9129
LC
7290Return a service that sets the host name to @var{name}.
7291@end deffn
401c53c4 7292
66e4f01c
LC
7293@deffn {Scheme Procedure} mingetty-service @var{config}
7294Return a service to run mingetty according to @var{config}, a
7295@code{<mingetty-configuration>} object, which specifies the tty to run, among
7296other things.
cf4a9129 7297@end deffn
401c53c4 7298
66e4f01c
LC
7299@deftp {Data Type} mingetty-configuration
7300This is the data type representing the configuration of Mingetty, which
7301implements console log-in.
7302
7303@table @asis
7304
7305@item @code{tty}
7306The name of the console this Mingetty runs on---e.g., @code{"tty1"}.
7307
7308@item @code{motd}
7309A file-like object containing the ``message of the day''.
7310
7311@item @code{auto-login} (default: @code{#f})
7312When true, this field must be a string denoting the user name under
f9b9a033 7313which the system automatically logs in. When it is @code{#f}, a
66e4f01c
LC
7314user name and password must be entered to log in.
7315
7316@item @code{login-program} (default: @code{#f})
7317This must be either @code{#f}, in which case the default log-in program
7318is used (@command{login} from the Shadow tool suite), or a gexp denoting
7319the name of the log-in program.
7320
7321@item @code{login-pause?} (default: @code{#f})
7322When set to @code{#t} in conjunction with @var{auto-login}, the user
7323will have to press a key before the log-in shell is launched.
7324
7325@item @code{mingetty} (default: @var{mingetty})
7326The Mingetty package to use.
7327
7328@end table
7329@end deftp
7330
6454b333
LC
7331@cindex name service cache daemon
7332@cindex nscd
be1c2c54 7333@deffn {Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @
4aee6e60 7334 [#:name-services '()]
1068f26b 7335Return a service that runs the libc name service cache daemon (nscd) with the
b893f1ae
LC
7336given @var{config}---an @code{<nscd-configuration>} object. @xref{Name
7337Service Switch}, for an example.
cf4a9129 7338@end deffn
401c53c4 7339
6454b333
LC
7340@defvr {Scheme Variable} %nscd-default-configuration
7341This is the default @code{<nscd-configuration>} value (see below) used
1068f26b 7342by @code{nscd-service}. It uses the caches defined by
6454b333
LC
7343@var{%nscd-default-caches}; see below.
7344@end defvr
7345
7346@deftp {Data Type} nscd-configuration
1068f26b 7347This is the data type representing the name service cache daemon (nscd)
6454b333
LC
7348configuration.
7349
7350@table @asis
7351
b893f1ae
LC
7352@item @code{name-services} (default: @code{'()})
7353List of packages denoting @dfn{name services} that must be visible to
7354the nscd---e.g., @code{(list @var{nss-mdns})}.
7355
7356@item @code{glibc} (default: @var{glibc})
7357Package object denoting the GNU C Library providing the @command{nscd}
7358command.
7359
6454b333 7360@item @code{log-file} (default: @code{"/var/log/nscd.log"})
1068f26b 7361Name of the nscd log file. This is where debugging output goes when
6454b333
LC
7362@code{debug-level} is strictly positive.
7363
7364@item @code{debug-level} (default: @code{0})
1068f26b 7365Integer denoting the debugging levels. Higher numbers mean that more
6454b333
LC
7366debugging output is logged.
7367
7368@item @code{caches} (default: @var{%nscd-default-caches})
7369List of @code{<nscd-cache>} objects denoting things to be cached; see
7370below.
7371
7372@end table
7373@end deftp
7374
7375@deftp {Data Type} nscd-cache
7376Data type representing a cache database of nscd and its parameters.
7377
7378@table @asis
7379
7380@item @code{database}
7381This is a symbol representing the name of the database to be cached.
7382Valid values are @code{passwd}, @code{group}, @code{hosts}, and
7383@code{services}, which designate the corresponding NSS database
7384(@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual}).
7385
7386@item @code{positive-time-to-live}
7387@itemx @code{negative-time-to-live} (default: @code{20})
7388A number representing the number of seconds during which a positive or
7389negative lookup result remains in cache.
7390
7391@item @code{check-files?} (default: @code{#t})
7392Whether to check for updates of the files corresponding to
7393@var{database}.
7394
7395For instance, when @var{database} is @code{hosts}, setting this flag
7396instructs nscd to check for updates in @file{/etc/hosts} and to take
7397them into account.
7398
7399@item @code{persistent?} (default: @code{#t})
7400Whether the cache should be stored persistently on disk.
7401
7402@item @code{shared?} (default: @code{#t})
7403Whether the cache should be shared among users.
7404
7405@item @code{max-database-size} (default: 32@tie{}MiB)
7406Maximum size in bytes of the database cache.
7407
7408@c XXX: 'suggested-size' and 'auto-propagate?' seem to be expert
7409@c settings, so leave them out.
7410
7411@end table
7412@end deftp
7413
7414@defvr {Scheme Variable} %nscd-default-caches
7415List of @code{<nscd-cache>} objects used by default by
1068f26b 7416@code{nscd-configuration} (see above).
6454b333
LC
7417
7418It enables persistent and aggressive caching of service and host name
7419lookups. The latter provides better host name lookup performance,
7420resilience in the face of unreliable name servers, and also better
7421privacy---often the result of host name lookups is in local cache, so
7422external name servers do not even need to be queried.
7423@end defvr
7424
7425
44abcb28
LC
7426@deffn {Scheme Procedure} syslog-service @
7427 [#:config-file @var{%default-syslog.conf}]
1068f26b 7428Return a service that runs @command{syslogd}. If the configuration file
44abcb28 7429name @var{config-file} is not specified, use some reasonable default
cf4a9129 7430settings.
44abcb28
LC
7431
7432@xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more
7433information on the configuration file syntax.
cf4a9129 7434@end deffn
401c53c4 7435
0adfe95a
LC
7436@anchor{guix-configuration-type}
7437@deftp {Data Type} guix-configuration
7438This data type represents the configuration of the Guix build daemon.
7439@xref{Invoking guix-daemon}, for more information.
7440
7441@table @asis
7442@item @code{guix} (default: @var{guix})
7443The Guix package to use.
401c53c4 7444
0adfe95a
LC
7445@item @code{build-group} (default: @code{"guixbuild"})
7446Name of the group for build user accounts.
401c53c4 7447
0adfe95a
LC
7448@item @code{build-accounts} (default: @code{10})
7449Number of build user accounts to create.
401c53c4 7450
0adfe95a
LC
7451@item @code{authorize-key?} (default: @code{#t})
7452Whether to authorize the substitute key for @code{hydra.gnu.org}
7453(@pxref{Substitutes}).
7454
7455@item @code{use-substitutes?} (default: @code{#t})
7456Whether to use substitutes.
7457
b0b9f6e0
LC
7458@item @code{substitute-urls} (default: @var{%default-substitute-urls})
7459The list of URLs where to look for substitutes by default.
7460
0adfe95a
LC
7461@item @code{extra-options} (default: @code{'()})
7462List of extra command-line options for @command{guix-daemon}.
7463
7464@item @code{lsof} (default: @var{lsof})
7465@itemx @code{lsh} (default: @var{lsh})
7466The lsof and lsh packages to use.
7467
7468@end table
7469@end deftp
7470
7471@deffn {Scheme Procedure} guix-service @var{config}
7472Return a service that runs the Guix build daemon according to
7473@var{config}.
cf4a9129 7474@end deffn
a1ba8475 7475
be1c2c54 7476@deffn {Scheme Procedure} udev-service [#:udev udev]
cf4a9129
LC
7477Run @var{udev}, which populates the @file{/dev} directory dynamically.
7478@end deffn
401c53c4 7479
a535e122
LF
7480@deffn {Scheme Procedure} urandom-seed-service @var{#f}
7481Save some entropy in @var{%random-seed-file} to seed @file{/dev/urandom}
7482when rebooting.
7483@end deffn
7484
7485@defvr {Scheme Variable} %random-seed-file
7486This is the name of the file where some random bytes are saved by
7487@var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting.
7488It defaults to @file{/var/lib/random-seed}.
7489@end defvr
7490
b3d05f48 7491@deffn {Scheme Procedure} console-keymap-service @var{files} ...
dedb8d5e 7492@cindex keyboard layout
b3d05f48
AK
7493Return a service to load console keymaps from @var{files} using
7494@command{loadkeys} command. Most likely, you want to load some default
7495keymap, which can be done like this:
7496
7497@example
7498(console-keymap-service "dvorak")
7499@end example
7500
7501Or, for example, for a Swedish keyboard, you may need to combine
7502the following keymaps:
7503@example
7504(console-keymap-service "se-lat6" "se-fi-lat6")
7505@end example
7506
7507Also you can specify a full file name (or file names) of your keymap(s).
7508See @code{man loadkeys} for details.
7509
5eca9459
AK
7510@end deffn
7511
1aaf116d 7512@deffn {Scheme Procedure} gpm-service [#:gpm @var{gpm}] @
8664cc88
LC
7513 [#:options]
7514Run @var{gpm}, the general-purpose mouse daemon, with the given
7515command-line @var{options}. GPM allows users to use the mouse in the console,
7516notably to select, copy, and paste text. The default value of @var{options}
7517uses the @code{ps2} protocol, which works for both USB and PS/2 mice.
7518
7519This service is not part of @var{%base-services}.
7520@end deffn
7521
1c52181f
LC
7522@anchor{guix-publish-service}
7523@deffn {Scheme Procedure} guix-publish-service [#:guix @var{guix}] @
7524 [#:port 80] [#:host "localhost"]
7525Return a service that runs @command{guix publish} listening on @var{host}
7526and @var{port} (@pxref{Invoking guix publish}).
7527
7528This assumes that @file{/etc/guix} already contains a signing key pair as
7529created by @command{guix archive --generate-key} (@pxref{Invoking guix
7530archive}). If that is not the case, the service will fail to start.
7531@end deffn
7532
b58cbf9a
DC
7533@anchor{rngd-service}
7534@deffn {Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @
7535 [#:device "/dev/hwrng"]
7536Return a service that runs the @command{rngd} program from @var{rng-tools}
7537to add @var{device} to the kernel's entropy pool. The service will fail if
7538@var{device} does not exist.
7539@end deffn
a69576ea 7540
c311089b
LC
7541@node Scheduled Job Execution
7542@subsubsection Scheduled Job Execution
7543
7544@cindex cron
7545@cindex scheduling jobs
7546The @code{(gnu services mcron)} module provides an interface to
7547GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,,
7548mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional
7549Unix @command{cron} daemon; the main difference is that it is
7550implemented in Guile Scheme, which provides a lot of flexibility when
7551specifying the scheduling of jobs and their actions.
7552
8ac6282c 7553The example below defines an operating system that runs the
c311089b 7554@command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files})
8ac6282c
LC
7555and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as
7556well as the @command{mkid} command on behalf of an unprivileged user
7557(@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses
7558gexps to introduce job definitions that are passed to mcron
7559(@pxref{G-Expressions}).
c311089b
LC
7560
7561@lisp
7562(use-modules (guix) (gnu) (gnu services mcron))
8ac6282c 7563(use-package-modules base idutils)
c311089b
LC
7564
7565(define updatedb-job
8ac6282c
LC
7566 ;; Run 'updatedb' at 3AM every day. Here we write the
7567 ;; job's action as a Scheme procedure.
c311089b 7568 #~(job '(next-hour '(3))
8ac6282c
LC
7569 (lambda ()
7570 (execl (string-append #$findutils "/bin/updatedb")
7571 "updatedb"
7572 "--prunepaths=/tmp /var/tmp /gnu/store"))))
c311089b
LC
7573
7574(define garbage-collector-job
7575 ;; Collect garbage 5 minutes after midnight every day.
8ac6282c 7576 ;; The job's action is a shell command.
c311089b
LC
7577 #~(job "5 0 * * *" ;Vixie cron syntax
7578 "guix gc -F 1G"))
7579
8ac6282c
LC
7580(define idutils-jobs
7581 ;; Update the index database as user "charlie" at 12:15PM
7582 ;; and 19:15PM. This runs from the user's home directory.
7583 #~(job '(next-minute-from (next-hour '(12 19)) '(15))
7584 (string-append #$idutils "/bin/mkid src")
7585 #:user "charlie"))
7586
c311089b
LC
7587(operating-system
7588 ;; @dots{}
7589 (services (cons (mcron-service (list garbage-collector-job
8ac6282c
LC
7590 updatedb-job
7591 idutils-job))
c311089b
LC
7592 %base-services)))
7593@end lisp
7594
7595@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron},
7596for more information on mcron job specifications. Below is the
7597reference of the mcron service.
7598
7599@deffn {Scheme Procedure} mcron-service @var{jobs} [#:mcron @var{mcron2}]
7600Return an mcron service running @var{mcron} that schedules @var{jobs}, a
7601list of gexps denoting mcron job specifications.
7602
7603This is a shorthand for:
7604@example
7605 (service mcron-service-type
7606 (mcron-configuration (mcron mcron) (jobs jobs)))
7607@end example
7608@end deffn
7609
7610@defvr {Scheme Variable} mcron-service-type
7611This is the type of the @code{mcron} service, whose value is an
7612@code{mcron-configuration} object.
7613
7614This service type can be the target of a service extension that provides
7615it additional job specifications (@pxref{Service Composition}). In
7616other words, it is possible to define services that provide addition
7617mcron jobs to run.
7618@end defvr
7619
7620@deftp {Data Type} mcron-configuration
7621Data type representing the configuration of mcron.
7622
7623@table @asis
7624@item @code{mcron} (default: @var{mcron2})
7625The mcron package to use.
7626
7627@item @code{jobs}
7628This is a list of gexps (@pxref{G-Expressions}), where each gexp
7629corresponds to an mcron job specification (@pxref{Syntax, mcron job
7630specifications,, mcron, GNU@tie{}mcron}).
7631@end table
7632@end deftp
7633
7634
cf4a9129
LC
7635@node Networking Services
7636@subsubsection Networking Services
401c53c4 7637
fa1e31b8 7638The @code{(gnu services networking)} module provides services to configure
cf4a9129 7639the network interface.
a1ba8475 7640
a023cca8 7641@cindex DHCP, networking service
be1c2c54 7642@deffn {Scheme Procedure} dhcp-client-service [#:dhcp @var{isc-dhcp}]
a023cca8
LC
7643Return a service that runs @var{dhcp}, a Dynamic Host Configuration
7644Protocol (DHCP) client, on all the non-loopback network interfaces.
7645@end deffn
7646
be1c2c54 7647@deffn {Scheme Procedure} static-networking-service @var{interface} @var{ip} @
b6683f15 7648 [#:gateway #f] [#:name-servers @code{'()}]
cf4a9129
LC
7649Return a service that starts @var{interface} with address @var{ip}. If
7650@var{gateway} is true, it must be a string specifying the default network
7651gateway.
7652@end deffn
8b315a6d 7653
b7d0c494 7654@cindex wicd
87f40011 7655@cindex network management
be1c2c54 7656@deffn {Scheme Procedure} wicd-service [#:wicd @var{wicd}]
87f40011
LC
7657Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network
7658management daemon that aims to simplify wired and wireless networking.
7659
7660This service adds the @var{wicd} package to the global profile, providing
7661several commands to interact with the daemon and configure networking:
7662@command{wicd-client}, a graphical user interface, and the @command{wicd-cli}
7663and @command{wicd-curses} user interfaces.
b7d0c494
MW
7664@end deffn
7665
c0a9589d
SB
7666@cindex NetworkManager
7667@deffn {Scheme Procedure} network-manager-service @
7668 [#:network-manager @var{network-manager}]
7669Return a service that runs NetworkManager, a network connection manager
1068f26b 7670attempting to keep network connectivity active when available.
c0a9589d
SB
7671@end deffn
7672
76192896
EF
7673@cindex Connman
7674@deffn {Scheme Procedure} connman-service @
7675 [#:connman @var{connman}]
7676Return a service that runs @url{https://01.org/connman,Connman}, a network
7677connection manager.
7678
7679This service adds the @var{connman} package to the global profile, providing
7680several the @command{connmanctl} command to interact with the daemon and
7681configure networking."
7682@end deffn
7683
be1c2c54 7684@deffn {Scheme Procedure} ntp-service [#:ntp @var{ntp}] @
63854bcb
LC
7685 [#:name-service @var{%ntp-servers}]
7686Return a service that runs the daemon from @var{ntp}, the
7687@uref{http://www.ntp.org, Network Time Protocol package}. The daemon will
7688keep the system clock synchronized with that of @var{servers}.
7689@end deffn
7690
7691@defvr {Scheme Variable} %ntp-servers
7692List of host names used as the default NTP servers.
7693@end defvr
7694
375c6108
LC
7695@deffn {Scheme Procedure} tor-service [@var{config-file}] [#:tor @var{tor}]
7696Return a service to run the @uref{https://torproject.org, Tor} anonymous
7697networking daemon.
8b315a6d 7698
375c6108 7699The daemon runs as the @code{tor} unprivileged user. It is passed
6331bde7
LC
7700@var{config-file}, a file-like object, with an additional @code{User tor} line
7701and lines for hidden services added via @code{tor-hidden-service}. Run
7702@command{man tor} for information about the configuration file.
7703@end deffn
7704
24a8ef3b 7705@cindex hidden service
6331bde7
LC
7706@deffn {Scheme Procedure} tor-hidden-service @var{name} @var{mapping}
7707Define a new Tor @dfn{hidden service} called @var{name} and implementing
7708@var{mapping}. @var{mapping} is a list of port/host tuples, such as:
7709
7710@example
24a8ef3b
LC
7711 '((22 "127.0.0.1:22")
7712 (80 "127.0.0.1:8080"))
6331bde7
LC
7713@end example
7714
7715In this example, port 22 of the hidden service is mapped to local port 22, and
7716port 80 is mapped to local port 8080.
7717
6629099a
LC
7718This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where
7719the @file{hostname} file contains the @code{.onion} host name for the hidden
6331bde7
LC
7720service.
7721
7722See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor
7723project's documentation} for more information.
cf4a9129 7724@end deffn
8b315a6d 7725
be1c2c54 7726@deffn {Scheme Procedure} bitlbee-service [#:bitlbee bitlbee] @
4627a464
LC
7727 [#:interface "127.0.0.1"] [#:port 6667] @
7728 [#:extra-settings ""]
7729Return a service that runs @url{http://bitlbee.org,BitlBee}, a daemon that
7730acts as a gateway between IRC and chat networks.
7731
7732The daemon will listen to the interface corresponding to the IP address
7733specified in @var{interface}, on @var{port}. @code{127.0.0.1} means that only
7734local clients can connect, whereas @code{0.0.0.0} means that connections can
7735come from any networking interface.
7736
7737In addition, @var{extra-settings} specifies a string to append to the
7738configuration file.
7739@end deffn
7740
f4391bec 7741Furthermore, @code{(gnu services ssh)} provides the following service.
8b315a6d 7742
be1c2c54 7743@deffn {Scheme Procedure} lsh-service [#:host-key "/etc/lsh/host-key"] @
5833bf33 7744 [#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @
cf4a9129
LC
7745 [#:allow-empty-passwords? #f] [#:root-login? #f] @
7746 [#:syslog-output? #t] [#:x11-forwarding? #t] @
7747 [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @
21cc905a 7748 [#:public-key-authentication? #t] [#:initialize? #t]
cf4a9129
LC
7749Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}.
7750@var{host-key} must designate a file containing the host key, and readable
7751only by root.
72e25e35 7752
5833bf33
DP
7753When @var{daemonic?} is true, @command{lshd} will detach from the
7754controlling terminal and log its output to syslogd, unless one sets
7755@var{syslog-output?} to false. Obviously, it also makes lsh-service
7756depend on existence of syslogd service. When @var{pid-file?} is true,
7757@command{lshd} writes its PID to the file called @var{pid-file}.
7758
cf4a9129
LC
7759When @var{initialize?} is true, automatically create the seed and host key
7760upon service activation if they do not exist yet. This may take long and
7761require interaction.
8b315a6d 7762
20dd519c
LC
7763When @var{initialize?} is false, it is up to the user to initialize the
7764randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create
7765a key pair with the private key stored in file @var{host-key} (@pxref{lshd
7766basics,,, lsh, LSH Manual}).
7767
cf4a9129
LC
7768When @var{interfaces} is empty, lshd listens for connections on all the
7769network interfaces; otherwise, @var{interfaces} must be a list of host names
7770or addresses.
9bf3c1a7 7771
20dd519c
LC
7772@var{allow-empty-passwords?} specifies whether to accept log-ins with empty
7773passwords, and @var{root-login?} specifies whether to accept log-ins as
cf4a9129 7774root.
4af2447e 7775
cf4a9129
LC
7776The other options should be self-descriptive.
7777@end deffn
4af2447e 7778
fa0c1d61
LC
7779@defvr {Scheme Variable} %facebook-host-aliases
7780This variable contains a string for use in @file{/etc/hosts}
7781(@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each
7782line contains a entry that maps a known server name of the Facebook
7783on-line service---e.g., @code{www.facebook.com}---to the local
7784host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}.
7785
7786This variable is typically used in the @code{hosts-file} field of an
7313a52e
LC
7787@code{operating-system} declaration (@pxref{operating-system Reference,
7788@file{/etc/hosts}}):
fa0c1d61
LC
7789
7790@example
7791(use-modules (gnu) (guix))
7792
7793(operating-system
7794 (host-name "mymachine")
7795 ;; ...
7796 (hosts-file
7797 ;; Create a /etc/hosts file with aliases for "localhost"
7798 ;; and "mymachine", as well as for Facebook servers.
24e02c28
LC
7799 (plain-file "hosts"
7800 (string-append (local-host-aliases host-name)
7801 %facebook-host-aliases))))
fa0c1d61
LC
7802@end example
7803
7804This mechanism can prevent programs running locally, such as Web
7805browsers, from accessing Facebook.
7806@end defvr
7807
965a7332
LC
7808The @code{(gnu services avahi)} provides the following definition.
7809
be1c2c54 7810@deffn {Scheme Procedure} avahi-service [#:avahi @var{avahi}] @
965a7332
LC
7811 [#:host-name #f] [#:publish? #t] [#:ipv4? #t] @
7812 [#:ipv6? #t] [#:wide-area? #f] @
c8695f32 7813 [#:domains-to-browse '()] [#:debug? #f]
965a7332
LC
7814Return a service that runs @command{avahi-daemon}, a system-wide
7815mDNS/DNS-SD responder that allows for service discovery and
cc9c1f39
LC
7816"zero-configuration" host name lookups (see @uref{http://avahi.org/}), and
7817extends the name service cache daemon (nscd) so that it can resolve
7818@code{.local} host names using
1065bed9
LC
7819@uref{http://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. Additionally,
7820add the @var{avahi} package to the system profile so that commands such as
7821@command{avahi-browse} are directly usable.
965a7332
LC
7822
7823If @var{host-name} is different from @code{#f}, use that as the host name to
7824publish for this machine; otherwise, use the machine's actual host name.
7825
7826When @var{publish?} is true, publishing of host names and services is allowed;
7827in particular, avahi-daemon will publish the machine's host name and IP
7828address via mDNS on the local network.
7829
7830When @var{wide-area?} is true, DNS-SD over unicast DNS is enabled.
7831
7832Boolean values @var{ipv4?} and @var{ipv6?} determine whether to use IPv4/IPv6
7833sockets.
7834@end deffn
7835
7836
cf4a9129
LC
7837@node X Window
7838@subsubsection X Window
68ad877c 7839
cf4a9129
LC
7840Support for the X Window graphical display system---specifically
7841Xorg---is provided by the @code{(gnu services xorg)} module. Note that
7842there is no @code{xorg-service} procedure. Instead, the X server is
7843started by the @dfn{login manager}, currently SLiM.
4af2447e 7844
be1c2c54 7845@deffn {Scheme Procedure} slim-service [#:allow-empty-passwords? #f] @
0ecc3bf3
LC
7846 [#:auto-login? #f] [#:default-user ""] [#:startx] @
7847 [#:theme @var{%default-slim-theme}] @
4bd43bbe 7848 [#:theme-name @var{%default-slim-theme-name}]
cf4a9129
LC
7849Return a service that spawns the SLiM graphical login manager, which in
7850turn starts the X display server with @var{startx}, a command as returned by
7851@code{xorg-start-command}.
4af2447e 7852
04e4e6ab
LC
7853@cindex X session
7854
7855SLiM automatically looks for session types described by the @file{.desktop}
7856files in @file{/run/current-system/profile/share/xsessions} and allows users
7857to choose a session from the log-in screen using @kbd{F1}. Packages such as
7858@var{xfce}, @var{sawfish}, and @var{ratpoison} provide @file{.desktop} files;
7859adding them to the system-wide set of packages automatically makes them
7860available at the log-in screen.
7861
7862In addition, @file{~/.xsession} files are honored. When available,
7863@file{~/.xsession} must be an executable that starts a window manager
7864and/or other X clients.
7865
cf4a9129
LC
7866When @var{allow-empty-passwords?} is true, allow logins with an empty
7867password. When @var{auto-login?} is true, log in automatically as
7868@var{default-user}.
0ecc3bf3 7869
1068f26b 7870If @var{theme} is @code{#f}, use the default log-in theme; otherwise
0ecc3bf3
LC
7871@var{theme} must be a gexp denoting the name of a directory containing the
7872theme to use. In that case, @var{theme-name} specifies the name of the
7873theme.
cf4a9129 7874@end deffn
4af2447e 7875
0ecc3bf3
LC
7876@defvr {Scheme Variable} %default-theme
7877@defvrx {Scheme Variable} %default-theme-name
7878The G-Expression denoting the default SLiM theme and its name.
7879@end defvr
7880
be1c2c54 7881@deffn {Scheme Procedure} xorg-start-command [#:guile] @
d1cdd7ba 7882 [#:configuration-file #f] [#:xorg-server @var{xorg-server}]
f703413e 7883Return a derivation that builds a @var{guile} script to start the X server
d1cdd7ba
LC
7884from @var{xorg-server}. @var{configuration-file} is the server configuration
7885file or a derivation that builds it; when omitted, the result of
7886@code{xorg-configuration-file} is used.
7887
7888Usually the X server is started by a login manager.
7889@end deffn
7890
be1c2c54 7891@deffn {Scheme Procedure} xorg-configuration-file @
12422c9d 7892 [#:drivers '()] [#:resolutions '()] [#:extra-config '()]
d1cdd7ba
LC
7893Return a configuration file for the Xorg server containing search paths for
7894all the common drivers.
f703413e
LC
7895
7896@var{drivers} must be either the empty list, in which case Xorg chooses a
7897graphics driver automatically, or a list of driver names that will be tried in
d1cdd7ba 7898this order---e.g., @code{(\"modesetting\" \"vesa\")}.
d2e59637
LC
7899
7900Likewise, when @var{resolutions} is the empty list, Xorg chooses an
7901appropriate screen resolution; otherwise, it must be a list of
7902resolutions---e.g., @code{((1024 768) (640 480))}.
12422c9d
LC
7903
7904Last, @var{extra-config} is a list of strings or objects appended to the
7905@code{text-file*} argument list. It is used to pass extra text to be added
7906verbatim to the configuration file.
f703413e 7907@end deffn
4af2447e 7908
6726282b
LC
7909@deffn {Scheme Procedure} screen-locker-service @var{package} [@var{name}]
7910Add @var{package}, a package for a screen-locker or screen-saver whose
7911command is @var{program}, to the set of setuid programs and add a PAM entry
7912for it. For example:
7913
7914@lisp
7915(screen-locker-service xlockmore "xlock")
7916@end lisp
7917
7918makes the good ol' XlockMore usable.
7919@end deffn
7920
7921
fe1a39d3
LC
7922@node Desktop Services
7923@subsubsection Desktop Services
aa4ed923 7924
fe1a39d3
LC
7925The @code{(gnu services desktop)} module provides services that are
7926usually useful in the context of a ``desktop'' setup---that is, on a
7927machine running a graphical display server, possibly with graphical user
7a2413e4
AW
7928interfaces, etc. It also defines services that provide specific desktop
7929environments like GNOME and XFCE.
aa4ed923 7930
4467be21
LC
7931To simplify things, the module defines a variable containing the set of
7932services that users typically expect on a machine with a graphical
7933environment and networking:
7934
7935@defvr {Scheme Variable} %desktop-services
7936This is a list of services that builds upon @var{%base-services} and
1068f26b 7937adds or adjusts services for a typical ``desktop'' setup.
4467be21
LC
7938
7939In particular, it adds a graphical login manager (@pxref{X Window,
6726282b
LC
7940@code{slim-service}}), screen lockers,
7941a network management tool (@pxref{Networking
4467be21 7942Services, @code{wicd-service}}), energy and color management services,
4650a77e 7943the @code{elogind} login and seat manager, the Polkit privilege service,
cee32ee4
AW
7944the GeoClue location service, an NTP client (@pxref{Networking
7945Services}), the Avahi daemon, and has the name service switch service
7946configured to be able to use @code{nss-mdns} (@pxref{Name Service
7947Switch, mDNS}).
4467be21
LC
7948@end defvr
7949
7950The @var{%desktop-services} variable can be used as the @code{services}
7951field of an @code{operating-system} declaration (@pxref{operating-system
7952Reference, @code{services}}).
7953
7a2413e4
AW
7954Additionally, the @code{gnome-desktop-service} and
7955@code{xfce-desktop-service} procedures can add GNOME and/or XFCE to a
7956system. To ``add GNOME'' means that system-level services like the
7957backlight adjustment helpers and the power management utilities are
7958added to the system, extending @code{polkit} and @code{dbus}
7959appropriately, allowing GNOME to operate with elevated privileges on a
7960limited number of special-purpose system interfaces. Additionally,
7961adding a service made by @code{gnome-desktop-service} adds the GNOME
7962metapackage to the system profile. Likewise, adding the XFCE service
7963not only adds the @code{xfce} metapackage to the system profile, but it
7964also gives the Thunar file manager the ability to open a ``root-mode''
7965file management window, if the user authenticates using the
7966administrator's password via the standard polkit graphical interface.
7967
7968@deffn {Scheme Procedure} gnome-desktop-service
7969Return a service that adds the @code{gnome} package to the system
7970profile, and extends polkit with the actions from
7971@code{gnome-settings-daemon}.
7972@end deffn
7973
7974@deffn {Scheme Procedure} xfce-desktop-service
7975Return a service that adds the @code{xfce} package to the system profile,
7976and extends polkit with the abilit for @code{thunar} to manipulate the
7977file system as root from within a user session, after the user has
7978authenticated with the administrator's password.
7979@end deffn
7980
7981Because the GNOME and XFCE desktop services pull in so many packages,
7982the default @code{%desktop-services} variable doesn't include either of
7983them by default. To add GNOME or XFCE, just @code{cons} them onto
7984@code{%desktop-services} in the @code{services} field of your
7985@code{operating-system}:
7986
7987@example
7988(use-modules (gnu))
7989(use-service-modules desktop)
7990(operating-system
7991 ...
7992 ;; cons* adds items to the list given as its last argument.
7993 (services (cons* (gnome-desktop-service)
7994 (xfce-desktop-service)
7995 %desktop-services))
7996 ...)
7997@end example
7998
7999These desktop environments will then be available as options in the
8000graphical login window.
8001
8002The actual service definitions included in @code{%desktop-services} and
8003provided by @code{(gnu services dbus)} and @code{(gnu services desktop)}
8004are described below.
4467be21 8005
0adfe95a 8006@deffn {Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]
fe1a39d3
LC
8007Return a service that runs the ``system bus'', using @var{dbus}, with
8008support for @var{services}.
aa4ed923 8009
fe1a39d3
LC
8010@uref{http://dbus.freedesktop.org/, D-Bus} is an inter-process communication
8011facility. Its system bus is used to allow system services to communicate
1068f26b 8012and to be notified of system-wide events.
aa4ed923 8013
fe1a39d3
LC
8014@var{services} must be a list of packages that provide an
8015@file{etc/dbus-1/system.d} directory containing additional D-Bus configuration
8016and policy files. For example, to allow avahi-daemon to use the system bus,
8017@var{services} must be equal to @code{(list avahi)}.
aa4ed923
AK
8018@end deffn
8019
0adfe95a 8020@deffn {Scheme Procedure} elogind-service [#:config @var{config}]
4650a77e
AW
8021Return a service that runs the @code{elogind} login and
8022seat management daemon. @uref{https://github.com/andywingo/elogind,
8023Elogind} exposes a D-Bus interface that can be used to know which users
8024are logged in, know what kind of sessions they have open, suspend the
8025system, inhibit system suspend, reboot the system, and other tasks.
8026
8027Elogind handles most system-level power events for a computer, for
8028example suspending the system when a lid is closed, or shutting it down
8029when the power button is pressed.
8030
8031The @var{config} keyword argument specifies the configuration for
1068f26b 8032elogind, and should be the result of an @code{(elogind-configuration
4650a77e
AW
8033(@var{parameter} @var{value})...)} invocation. Available parameters and
8034their default values are:
8035
8036@table @code
8037@item kill-user-processes?
8038@code{#f}
8039@item kill-only-users
8040@code{()}
8041@item kill-exclude-users
8042@code{("root")}
8043@item inhibit-delay-max-seconds
8044@code{5}
8045@item handle-power-key
8046@code{poweroff}
8047@item handle-suspend-key
8048@code{suspend}
8049@item handle-hibernate-key
8050@code{hibernate}
8051@item handle-lid-switch
8052@code{suspend}
8053@item handle-lid-switch-docked
8054@code{ignore}
8055@item power-key-ignore-inhibited?
8056@code{#f}
8057@item suspend-key-ignore-inhibited?
8058@code{#f}
8059@item hibernate-key-ignore-inhibited?
8060@code{#f}
8061@item lid-switch-ignore-inhibited?
8062@code{#t}
8063@item holdoff-timeout-seconds
8064@code{30}
8065@item idle-action
8066@code{ignore}
8067@item idle-action-seconds
8068@code{(* 30 60)}
8069@item runtime-directory-size-percent
8070@code{10}
8071@item runtime-directory-size
8072@code{#f}
8073@item remove-ipc?
8074@code{#t}
8075@item suspend-state
8076@code{("mem" "standby" "freeze")}
8077@item suspend-mode
8078@code{()}
8079@item hibernate-state
8080@code{("disk")}
8081@item hibernate-mode
8082@code{("platform" "shutdown")}
8083@item hybrid-sleep-state
8084@code{("disk")}
8085@item hybrid-sleep-mode
8086@code{("suspend" "platform" "shutdown")}
8087@end table
8088@end deffn
8089
be1c2c54 8090@deffn {Scheme Procedure} polkit-service @
4650a77e 8091 [#:polkit @var{polkit}]
222e3319
LC
8092Return a service that runs the
8093@uref{http://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege
8094management service}, which allows system administrators to grant access to
8095privileged operations in a structured way. By querying the Polkit service, a
8096privileged system component can know when it should grant additional
8097capabilities to ordinary users. For example, an ordinary user can be granted
8098the capability to suspend the system if the user is logged in locally.
4650a77e
AW
8099@end deffn
8100
be1c2c54 8101@deffn {Scheme Procedure} upower-service [#:upower @var{upower}] @
be234128
AW
8102 [#:watts-up-pro? #f] @
8103 [#:poll-batteries? #t] @
8104 [#:ignore-lid? #f] @
8105 [#:use-percentage-for-policy? #f] @
8106 [#:percentage-low 10] @
8107 [#:percentage-critical 3] @
8108 [#:percentage-action 2] @
8109 [#:time-low 1200] @
8110 [#:time-critical 300] @
8111 [#:time-action 120] @
8112 [#:critical-power-action 'hybrid-sleep]
8113Return a service that runs @uref{http://upower.freedesktop.org/,
8114@command{upowerd}}, a system-wide monitor for power consumption and battery
8115levels, with the given configuration settings. It implements the
8116@code{org.freedesktop.UPower} D-Bus interface, and is notably used by
8117GNOME.
8118@end deffn
8119
2b9e0a94
LC
8120@deffn {Scheme Procedure} udisks-service [#:udisks @var{udisks}]
8121Return a service for @uref{http://udisks.freedesktop.org/docs/latest/,
8122UDisks}, a @dfn{disk management} daemon that provides user interfaces with
8123notifications and ways to mount/unmount disks. Programs that talk to UDisks
8124include the @command{udisksctl} command, part of UDisks, and GNOME Disks.
8125@end deffn
8126
be1c2c54 8127@deffn {Scheme Procedure} colord-service [#:colord @var{colord}]
7ce597ff
AW
8128Return a service that runs @command{colord}, a system service with a D-Bus
8129interface to manage the color profiles of input and output devices such as
8130screens and scanners. It is notably used by the GNOME Color Manager graphical
8131tool. See @uref{http://www.freedesktop.org/software/colord/, the colord web
8132site} for more information.
8133@end deffn
8134
cee32ee4 8135@deffn {Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]
1068f26b 8136Return a configuration allowing an application to access GeoClue
cee32ee4
AW
8137location data. @var{name} is the Desktop ID of the application, without
8138the @code{.desktop} part. If @var{allowed?} is true, the application
8139will have access to location information by default. The boolean
1068f26b 8140@var{system?} value indicates whether an application is a system component
cee32ee4
AW
8141or not. Finally @var{users} is a list of UIDs of all users for which
8142this application is allowed location info access. An empty users list
8143means that all users are allowed.
8144@end deffn
8145
8146@defvr {Scheme Variable} %standard-geoclue-applications
8147The standard list of well-known GeoClue application configurations,
1068f26b
AE
8148granting authority to the GNOME date-and-time utility to ask for the
8149current location in order to set the time zone, and allowing the
8150IceCat and Epiphany web browsers to request location information.
8151IceCat and Epiphany both query the user before allowing a web page to
cee32ee4
AW
8152know the user's location.
8153@end defvr
8154
be1c2c54 8155@deffn {Scheme Procedure} geoclue-service [#:colord @var{colord}] @
cee32ee4
AW
8156 [#:whitelist '()] @
8157 [#:wifi-geolocation-url "https://location.services.mozilla.com/v1/geolocate?key=geoclue"] @
8158 [#:submit-data? #f]
8159 [#:wifi-submission-url "https://location.services.mozilla.com/v1/submit?key=geoclue"] @
8160 [#:submission-nick "geoclue"] @
8161 [#:applications %standard-geoclue-applications]
8162Return a service that runs the GeoClue location service. This service
8163provides a D-Bus interface to allow applications to request access to a
8164user's physical location, and optionally to add information to online
8165location databases. See
8166@uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue
8167web site} for more information.
8168@end deffn
8169
922e21f4
SB
8170@deffn {Scheme Procedure} bluetooth-service [#:bluez @var{bluez}]
8171Return a service that runs the @command{bluetoothd} daemon, which manages
8172all the Bluetooth devices and provides a number of D-Bus interfaces.
8173
8174Users need to be in the @code{lp} group to access the D-Bus service.
8175@end deffn
8176
105369a4
DT
8177@node Database Services
8178@subsubsection Database Services
8179
6575183b 8180The @code{(gnu services databases)} module provides the following services.
105369a4 8181
be1c2c54 8182@deffn {Scheme Procedure} postgresql-service [#:postgresql postgresql] @
105369a4
DT
8183 [#:config-file] [#:data-directory ``/var/lib/postgresql/data'']
8184Return a service that runs @var{postgresql}, the PostgreSQL database
8185server.
8186
8187The PostgreSQL daemon loads its runtime configuration from
8188@var{config-file} and stores the database cluster in
8189@var{data-directory}.
8190@end deffn
fe1a39d3 8191
6575183b
SB
8192@deffn {Scheme Procedure} mysql-service [#:config (mysql-configuration)]
8193Return a service that runs @command{mysqld}, the MySQL or MariaDB
8194database server.
8195
8196The optional @var{config} argument specifies the configuration for
8197@command{mysqld}, which should be a @code{<mysql-configuraiton>} object.
8198@end deffn
8199
8200@deftp {Data Type} mysql-configuration
8201Data type representing the configuration of @var{mysql-service}.
8202
8203@table @asis
8204@item @code{mysql} (default: @var{mariadb})
8205Package object of the MySQL database server, can be either @var{mariadb}
8206or @var{mysql}.
8207
8208For MySQL, a temorary root password will be displayed at activation time.
8209For MariaDB, the root password is empty.
8210@end table
8211@end deftp
8212
d8c18af8
AW
8213@node Mail Services
8214@subsubsection Mail Services
8215
8216The @code{(gnu services mail)} module provides Guix service definitions
8217for mail services. Currently the only implemented service is Dovecot,
8218an IMAP, POP3, and LMTP server.
8219
8220Guix does not yet have a mail transfer agent (MTA), although for some
8221lightweight purposes the @code{esmtp} relay-only MTA may suffice. Help
8222is needed to properly integrate a full MTA, such as Postfix. Patches
8223welcome!
8224
8225To add an IMAP/POP3 server to a GuixSD system, add a
8226@code{dovecot-service} to the operating system definition:
8227
8228@deffn {Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]
8229Return a service that runs the Dovecot IMAP/POP3/LMTP mail server.
8230@end deffn
8231
1068f26b 8232By default, Dovecot does not need much configuration; the default
d8c18af8
AW
8233configuration object created by @code{(dovecot-configuration)} will
8234suffice if your mail is delivered to @code{~/Maildir}. A self-signed
8235certificate will be generated for TLS-protected connections, though
8236Dovecot will also listen on cleartext ports by default. There are a
1068f26b 8237number of options, though, which mail administrators might need to change,
d8c18af8
AW
8238and as is the case with other services, Guix allows the system
8239administrator to specify these parameters via a uniform Scheme interface.
8240
8241For example, to specify that mail is located at @code{maildir~/.mail},
8242one would instantiate the Dovecot service like this:
8243
8244@example
8245(dovecot-service #:config
8246 (dovecot-configuration
8247 (mail-location "maildir:~/.mail")))
8248@end example
8249
8250The available configuration parameters follow. Each parameter
8251definition is preceded by its type; for example, @samp{string-list foo}
8252indicates that the @code{foo} parameter should be specified as a list of
8253strings. There is also a way to specify the configuration as a string,
8254if you have an old @code{dovecot.conf} file that you want to port over
8255from some other system; see the end for more details.
8256
8257@c The following documentation was initially generated by
8258@c (generate-documentation) in (gnu services mail). Manually maintained
8259@c documentation is better, so we shouldn't hesitate to edit below as
8260@c needed. However if the change you want to make to this documentation
8261@c can be done in an automated way, it's probably easier to change
8262@c (generate-documentation) than to make it below and have to deal with
8263@c the churn as dovecot updates.
8264
8265Available @code{dovecot-configuration} fields are:
8266
8267@deftypevr {@code{dovecot-configuration} parameter} package dovecot
8268The dovecot package.
8269@end deftypevr
8270
8271@deftypevr {@code{dovecot-configuration} parameter} comma-separated-string-list listen
1068f26b
AE
8272A list of IPs or hosts where to listen for connections. @samp{*}
8273listens on all IPv4 interfaces, @samp{::} listens on all IPv6
d8c18af8
AW
8274interfaces. If you want to specify non-default ports or anything more
8275complex, customize the address and port fields of the
8276@samp{inet-listener} of the specific services you are interested in.
8277@end deftypevr
8278
8279@deftypevr {@code{dovecot-configuration} parameter} protocol-configuration-list protocols
8280List of protocols we want to serve. Available protocols include
8281@samp{imap}, @samp{pop3}, and @samp{lmtp}.
8282
8283Available @code{protocol-configuration} fields are:
8284
8285@deftypevr {@code{protocol-configuration} parameter} string name
8286The name of the protocol.
8287@end deftypevr
8288
8289@deftypevr {@code{protocol-configuration} parameter} string auth-socket-path
1068f26b 8290UNIX socket path to the master authentication server to find users.
d8c18af8 8291This is used by imap (for shared users) and lda.
1068f26b 8292It defaults to @samp{"/var/run/dovecot/auth-userdb"}.
d8c18af8
AW
8293@end deftypevr
8294
8295@deftypevr {@code{protocol-configuration} parameter} space-separated-string-list mail-plugins
8296Space separated list of plugins to load.
8297@end deftypevr
8298
8299@deftypevr {@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections
8300Maximum number of IMAP connections allowed for a user from each IP
8301address. NOTE: The username is compared case-sensitively.
8302Defaults to @samp{10}.
8303@end deftypevr
8304
8305@end deftypevr
8306
8307@deftypevr {@code{dovecot-configuration} parameter} service-configuration-list services
8308List of services to enable. Available services include @samp{imap},
8309@samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and
8310@samp{lmtp}.
8311
8312Available @code{service-configuration} fields are:
8313
8314@deftypevr {@code{service-configuration} parameter} string kind
8315The service kind. Valid values include @code{director},
8316@code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap},
8317@code{pop3}, @code{auth}, @code{auth-worker}, @code{dict},
8318@code{tcpwrap}, @code{quota-warning}, or anything else.
8319@end deftypevr
8320
8321@deftypevr {@code{service-configuration} parameter} listener-configuration-list listeners
1068f26b 8322Listeners for the service. A listener is either a
d8c18af8
AW
8323@code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or
8324an @code{inet-listener-configuration}.
8325Defaults to @samp{()}.
8326
8327Available @code{unix-listener-configuration} fields are:
8328
8329@deftypevr {@code{unix-listener-configuration} parameter} file-name path
8330The file name on which to listen.
8331@end deftypevr
8332
8333@deftypevr {@code{unix-listener-configuration} parameter} string mode
8334The access mode for the socket.
8335Defaults to @samp{"0600"}.
8336@end deftypevr
8337
8338@deftypevr {@code{unix-listener-configuration} parameter} string user
f9b9a033 8339The user to own the socket.
d8c18af8
AW
8340Defaults to @samp{""}.
8341@end deftypevr
8342
8343@deftypevr {@code{unix-listener-configuration} parameter} string group
8344The group to own the socket.
8345Defaults to @samp{""}.
8346@end deftypevr
8347
8348
8349Available @code{fifo-listener-configuration} fields are:
8350
8351@deftypevr {@code{fifo-listener-configuration} parameter} file-name path
8352The file name on which to listen.
8353@end deftypevr
8354
8355@deftypevr {@code{fifo-listener-configuration} parameter} string mode
8356The access mode for the socket.
8357Defaults to @samp{"0600"}.
8358@end deftypevr
8359
8360@deftypevr {@code{fifo-listener-configuration} parameter} string user
f9b9a033 8361The user to own the socket.
d8c18af8
AW
8362Defaults to @samp{""}.
8363@end deftypevr
8364
8365@deftypevr {@code{fifo-listener-configuration} parameter} string group
8366The group to own the socket.
8367Defaults to @samp{""}.
8368@end deftypevr
8369
8370
8371Available @code{inet-listener-configuration} fields are:
8372
8373@deftypevr {@code{inet-listener-configuration} parameter} string protocol
8374The protocol to listen for.
8375@end deftypevr
8376
8377@deftypevr {@code{inet-listener-configuration} parameter} string address
8378The address on which to listen, or empty for all addresses.
8379Defaults to @samp{""}.
8380@end deftypevr
8381
8382@deftypevr {@code{inet-listener-configuration} parameter} non-negative-integer port
8383The port on which to listen.
8384@end deftypevr
8385
8386@deftypevr {@code{inet-listener-configuration} parameter} boolean ssl?
8387Whether to use SSL for this service; @samp{yes}, @samp{no}, or
8388@samp{required}.
8389Defaults to @samp{#t}.
8390@end deftypevr
8391
8392@end deftypevr
8393
8394@deftypevr {@code{service-configuration} parameter} non-negative-integer service-count
8395Number of connections to handle before starting a new process.
8396Typically the only useful values are 0 (unlimited) or 1. 1 is more
8397secure, but 0 is faster. <doc/wiki/LoginProcess.txt>.
8398Defaults to @samp{1}.
8399@end deftypevr
8400
8401@deftypevr {@code{service-configuration} parameter} non-negative-integer process-min-avail
8402Number of processes to always keep waiting for more connections.
8403Defaults to @samp{0}.
8404@end deftypevr
8405
8406@deftypevr {@code{service-configuration} parameter} non-negative-integer vsz-limit
8407If you set @samp{service-count 0}, you probably need to grow
8408this.
8409Defaults to @samp{256000000}.
8410@end deftypevr
8411
8412@end deftypevr
8413
8414@deftypevr {@code{dovecot-configuration} parameter} dict-configuration dict
8415Dict configuration, as created by the @code{dict-configuration}
8416constructor.
8417
8418Available @code{dict-configuration} fields are:
8419
8420@deftypevr {@code{dict-configuration} parameter} free-form-fields entries
8421A list of key-value pairs that this dict should hold.
8422Defaults to @samp{()}.
8423@end deftypevr
8424
8425@end deftypevr
8426
8427@deftypevr {@code{dovecot-configuration} parameter} passdb-configuration-list passdbs
1068f26b 8428A list of passdb configurations, each one created by the
d8c18af8
AW
8429@code{passdb-configuration} constructor.
8430
8431Available @code{passdb-configuration} fields are:
8432
8433@deftypevr {@code{passdb-configuration} parameter} string driver
8434The driver that the passdb should use. Valid values include
8435@samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and
8436@samp{static}.
8437Defaults to @samp{"pam"}.
8438@end deftypevr
8439
8440@deftypevr {@code{passdb-configuration} parameter} free-form-args args
8441A list of key-value args to the passdb driver.
8442Defaults to @samp{()}.
8443@end deftypevr
8444
8445@end deftypevr
8446
8447@deftypevr {@code{dovecot-configuration} parameter} userdb-configuration-list userdbs
8448List of userdb configurations, each one created by the
8449@code{userdb-configuration} constructor.
8450
8451Available @code{userdb-configuration} fields are:
8452
8453@deftypevr {@code{userdb-configuration} parameter} string driver
8454The driver that the userdb should use. Valid values include
8455@samp{passwd} and @samp{static}.
8456Defaults to @samp{"passwd"}.
8457@end deftypevr
8458
8459@deftypevr {@code{userdb-configuration} parameter} free-form-args args
8460A list of key-value args to the userdb driver.
8461Defaults to @samp{()}.
8462@end deftypevr
8463
8464@deftypevr {@code{userdb-configuration} parameter} free-form-args override-fields
8465Override fields from passwd.
8466Defaults to @samp{()}.
8467@end deftypevr
8468
8469@end deftypevr
8470
8471@deftypevr {@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration
8472Plug-in configuration, created by the @code{plugin-configuration}
8473constructor.
8474@end deftypevr
8475
8476@deftypevr {@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces
8477List of namespaces. Each item in the list is created by the
8478@code{namespace-configuration} constructor.
8479
8480Available @code{namespace-configuration} fields are:
8481
8482@deftypevr {@code{namespace-configuration} parameter} string name
8483Name for this namespace.
8484@end deftypevr
8485
8486@deftypevr {@code{namespace-configuration} parameter} string type
8487Namespace type: @samp{private}, @samp{shared} or @samp{public}.
8488Defaults to @samp{"private"}.
8489@end deftypevr
8490
8491@deftypevr {@code{namespace-configuration} parameter} string separator
8492Hierarchy separator to use. You should use the same separator for
8493all namespaces or some clients get confused. @samp{/} is usually a good
8494one. The default however depends on the underlying mail storage
8495format.
8496Defaults to @samp{""}.
8497@end deftypevr
8498
8499@deftypevr {@code{namespace-configuration} parameter} string prefix
8500Prefix required to access this namespace. This needs to be
8501different for all namespaces. For example @samp{Public/}.
8502Defaults to @samp{""}.
8503@end deftypevr
8504
8505@deftypevr {@code{namespace-configuration} parameter} string location
1068f26b 8506Physical location of the mailbox. This is in the same format as
d8c18af8
AW
8507mail_location, which is also the default for it.
8508Defaults to @samp{""}.
8509@end deftypevr
8510
8511@deftypevr {@code{namespace-configuration} parameter} boolean inbox?
8512There can be only one INBOX, and this setting defines which
8513namespace has it.
8514Defaults to @samp{#f}.
8515@end deftypevr
8516
8517@deftypevr {@code{namespace-configuration} parameter} boolean hidden?
8518If namespace is hidden, it's not advertised to clients via NAMESPACE
8519extension. You'll most likely also want to set @samp{list? #f}. This is mostly
8520useful when converting from another server with different namespaces
8521which you want to deprecate but still keep working. For example you can
8522create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/}
8523and @samp{mail/}.
8524Defaults to @samp{#f}.
8525@end deftypevr
8526
8527@deftypevr {@code{namespace-configuration} parameter} boolean list?
1068f26b
AE
8528Show the mailboxes under this namespace with the LIST command. This
8529makes the namespace visible for clients that do not support the NAMESPACE
d8c18af8
AW
8530extension. The special @code{children} value lists child mailboxes, but
8531hides the namespace prefix.
8532Defaults to @samp{#t}.
8533@end deftypevr
8534
8535@deftypevr {@code{namespace-configuration} parameter} boolean subscriptions?
8536Namespace handles its own subscriptions. If set to @code{#f}, the
8537parent namespace handles them. The empty prefix should always have this
1068f26b 8538as @code{#t}).
d8c18af8
AW
8539Defaults to @samp{#t}.
8540@end deftypevr
8541
8542@deftypevr {@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes
8543List of predefined mailboxes in this namespace.
8544Defaults to @samp{()}.
8545
8546Available @code{mailbox-configuration} fields are:
8547
8548@deftypevr {@code{mailbox-configuration} parameter} string name
8549Name for this mailbox.
8550@end deftypevr
8551
8552@deftypevr {@code{mailbox-configuration} parameter} string auto
8553@samp{create} will automatically create this mailbox.
8554@samp{subscribe} will both create and subscribe to the mailbox.
8555Defaults to @samp{"no"}.
8556@end deftypevr
8557
8558@deftypevr {@code{mailbox-configuration} parameter} space-separated-string-list special-use
8559List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154.
8560Valid values are @code{\All}, @code{\Archive}, @code{\Drafts},
8561@code{\Flagged}, @code{\Junk}, @code{\Sent}, and @code{\Trash}.
8562Defaults to @samp{()}.
8563@end deftypevr
8564
8565@end deftypevr
8566
8567@end deftypevr
8568
8569@deftypevr {@code{dovecot-configuration} parameter} file-name base-dir
8570Base directory where to store runtime data.
8571Defaults to @samp{"/var/run/dovecot/"}.
8572@end deftypevr
8573
8574@deftypevr {@code{dovecot-configuration} parameter} string login-greeting
8575Greeting message for clients.
8576Defaults to @samp{"Dovecot ready."}.
8577@end deftypevr
8578
8579@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks
8580List of trusted network ranges. Connections from these IPs are
8581allowed to override their IP addresses and ports (for logging and for
8582authentication checks). @samp{disable-plaintext-auth} is also ignored
1068f26b 8583for these networks. Typically you would specify your IMAP proxy servers
d8c18af8
AW
8584here.
8585Defaults to @samp{()}.
8586@end deftypevr
8587
8588@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets
8589List of login access check sockets (e.g. tcpwrap).
8590Defaults to @samp{()}.
8591@end deftypevr
8592
8593@deftypevr {@code{dovecot-configuration} parameter} boolean verbose-proctitle?
8594Show more verbose process titles (in ps). Currently shows user name
1068f26b
AE
8595and IP address. Useful for seeing who is actually using the IMAP
8596processes (e.g. shared mailboxes or if the same uid is used for multiple
d8c18af8
AW
8597accounts).
8598Defaults to @samp{#f}.
8599@end deftypevr
8600
8601@deftypevr {@code{dovecot-configuration} parameter} boolean shutdown-clients?
8602Should all processes be killed when Dovecot master process shuts down.
8603Setting this to @code{#f} means that Dovecot can be upgraded without
8604forcing existing client connections to close (although that could also
1068f26b 8605be a problem if the upgrade is e.g. due to a security fix).
d8c18af8
AW
8606Defaults to @samp{#t}.
8607@end deftypevr
8608
8609@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count
8610If non-zero, run mail commands via this many connections to doveadm
8611server, instead of running them directly in the same process.
8612Defaults to @samp{0}.
8613@end deftypevr
8614
8615@deftypevr {@code{dovecot-configuration} parameter} string doveadm-socket-path
8616UNIX socket or host:port used for connecting to doveadm server.
8617Defaults to @samp{"doveadm-server"}.
8618@end deftypevr
8619
8620@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list import-environment
8621List of environment variables that are preserved on Dovecot startup
8622and passed down to all of its child processes. You can also give
8623key=value pairs to always set specific settings.
8624@end deftypevr
8625
8626@deftypevr {@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?
8627Disable LOGIN command and all other plaintext authentications unless
8628SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP
8629matches the local IP (i.e. you're connecting from the same computer),
8630the connection is considered secure and plaintext authentication is
8631allowed. See also ssl=required setting.
8632Defaults to @samp{#t}.
8633@end deftypevr
8634
8635@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size
8636Authentication cache size (e.g. @samp{#e10e6}). 0 means it's disabled.
8637Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set
8638for caching to be used.
8639Defaults to @samp{0}.
8640@end deftypevr
8641
8642@deftypevr {@code{dovecot-configuration} parameter} string auth-cache-ttl
8643Time to live for cached data. After TTL expires the cached record
8644is no longer used, *except* if the main database lookup returns internal
8645failure. We also try to handle password changes automatically: If
8646user's previous authentication was successful, but this one wasn't, the
8647cache isn't used. For now this works only with plaintext
8648authentication.
8649Defaults to @samp{"1 hour"}.
8650@end deftypevr
8651
8652@deftypevr {@code{dovecot-configuration} parameter} string auth-cache-negative-ttl
8653TTL for negative hits (user not found, password mismatch).
86540 disables caching them completely.
8655Defaults to @samp{"1 hour"}.
8656@end deftypevr
8657
8658@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-realms
8659List of realms for SASL authentication mechanisms that need them.
8660You can leave it empty if you don't want to support multiple realms.
8661Many clients simply use the first one listed here, so keep the default
8662realm first.
8663Defaults to @samp{()}.
8664@end deftypevr
8665
8666@deftypevr {@code{dovecot-configuration} parameter} string auth-default-realm
8667Default realm/domain to use if none was specified. This is used for
8668both SASL realms and appending @@domain to username in plaintext
8669logins.
8670Defaults to @samp{""}.
8671@end deftypevr
8672
8673@deftypevr {@code{dovecot-configuration} parameter} string auth-username-chars
8674List of allowed characters in username. If the user-given username
8675contains a character not listed in here, the login automatically fails.
8676This is just an extra check to make sure user can't exploit any
8677potential quote escaping vulnerabilities with SQL/LDAP databases. If
8678you want to allow all characters, set this value to empty.
8679Defaults to @samp{"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@"}.
8680@end deftypevr
8681
8682@deftypevr {@code{dovecot-configuration} parameter} string auth-username-translation
8683Username character translations before it's looked up from
8684databases. The value contains series of from -> to characters. For
8685example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are
8686translated to @samp{@@}.
8687Defaults to @samp{""}.
8688@end deftypevr
8689
8690@deftypevr {@code{dovecot-configuration} parameter} string auth-username-format
8691Username formatting before it's looked up from databases. You can
8692use the standard variables here, e.g. %Lu would lowercase the username,
8693%n would drop away the domain if it was given, or @samp{%n-AT-%d} would
8694change the @samp{@@} into @samp{-AT-}. This translation is done after
8695@samp{auth-username-translation} changes.
8696Defaults to @samp{"%Lu"}.
8697@end deftypevr
8698
8699@deftypevr {@code{dovecot-configuration} parameter} string auth-master-user-separator
8700If you want to allow master users to log in by specifying the master
8701username within the normal username string (i.e. not using SASL
8702mechanism's support for it), you can specify the separator character
8703here. The format is then <username><separator><master username>.
8704UW-IMAP uses @samp{*} as the separator, so that could be a good
8705choice.
8706Defaults to @samp{""}.
8707@end deftypevr
8708
8709@deftypevr {@code{dovecot-configuration} parameter} string auth-anonymous-username
8710Username to use for users logging in with ANONYMOUS SASL
8711mechanism.
8712Defaults to @samp{"anonymous"}.
8713@end deftypevr
8714
8715@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count
8716Maximum number of dovecot-auth worker processes. They're used to
8717execute blocking passdb and userdb queries (e.g. MySQL and PAM).
8718They're automatically created and destroyed as needed.
8719Defaults to @samp{30}.
8720@end deftypevr
8721
8722@deftypevr {@code{dovecot-configuration} parameter} string auth-gssapi-hostname
8723Host name to use in GSSAPI principal names. The default is to use
8724the name returned by gethostname(). Use @samp{$ALL} (with quotes) to
8725allow all keytab entries.
8726Defaults to @samp{""}.
8727@end deftypevr
8728
8729@deftypevr {@code{dovecot-configuration} parameter} string auth-krb5-keytab
8730Kerberos keytab to use for the GSSAPI mechanism. Will use the
8731system default (usually /etc/krb5.keytab) if not specified. You may
8732need to change the auth service to run as root to be able to read this
8733file.
8734Defaults to @samp{""}.
8735@end deftypevr
8736
8737@deftypevr {@code{dovecot-configuration} parameter} boolean auth-use-winbind?
8738Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon
8739and @samp{ntlm-auth} helper.
8740<doc/wiki/Authentication/Mechanisms/Winbind.txt>.
8741Defaults to @samp{#f}.
8742@end deftypevr
8743
8744@deftypevr {@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path
8745Path for Samba's @samp{ntlm-auth} helper binary.
8746Defaults to @samp{"/usr/bin/ntlm_auth"}.
8747@end deftypevr
8748
8749@deftypevr {@code{dovecot-configuration} parameter} string auth-failure-delay
8750Time to delay before replying to failed authentications.
8751Defaults to @samp{"2 secs"}.
8752@end deftypevr
8753
8754@deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?
8755Require a valid SSL client certificate or the authentication
8756fails.
8757Defaults to @samp{#f}.
8758@end deftypevr
8759
8760@deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?
8761Take the username from client's SSL certificate, using
8762@code{X509_NAME_get_text_by_NID()} which returns the subject's DN's
8763CommonName.
8764Defaults to @samp{#f}.
8765@end deftypevr
8766
8767@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms
8768List of wanted authentication mechanisms. Supported mechanisms are:
8769@samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5},
8770@samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi},
8771@samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also
8772@samp{disable-plaintext-auth} setting.
8773@end deftypevr
8774
8775@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-servers
8776List of IPs or hostnames to all director servers, including ourself.
8777Ports can be specified as ip:port. The default port is the same as what
8778director service's @samp{inet-listener} is using.
8779Defaults to @samp{()}.
8780@end deftypevr
8781
8782@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers
8783List of IPs or hostnames to all backend mail servers. Ranges are
8784allowed too, like 10.0.0.10-10.0.0.30.
8785Defaults to @samp{()}.
8786@end deftypevr
8787
8788@deftypevr {@code{dovecot-configuration} parameter} string director-user-expire
8789How long to redirect users to a specific server after it no longer
8790has any connections.
8791Defaults to @samp{"15 min"}.
8792@end deftypevr
8793
8794@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer director-doveadm-port
8795TCP/IP port that accepts doveadm connections (instead of director
8796connections) If you enable this, you'll also need to add
8797@samp{inet-listener} for the port.
8798Defaults to @samp{0}.
8799@end deftypevr
8800
8801@deftypevr {@code{dovecot-configuration} parameter} string director-username-hash
8802How the username is translated before being hashed. Useful values
8803include %Ln if user can log in with or without @@domain, %Ld if mailboxes
8804are shared within domain.
8805Defaults to @samp{"%Lu"}.
8806@end deftypevr
8807
8808@deftypevr {@code{dovecot-configuration} parameter} string log-path
8809Log file to use for error messages. @samp{syslog} logs to syslog,
8810@samp{/dev/stderr} logs to stderr.
8811Defaults to @samp{"syslog"}.
8812@end deftypevr
8813
8814@deftypevr {@code{dovecot-configuration} parameter} string info-log-path
8815Log file to use for informational messages. Defaults to
8816@samp{log-path}.
8817Defaults to @samp{""}.
8818@end deftypevr
8819
8820@deftypevr {@code{dovecot-configuration} parameter} string debug-log-path
8821Log file to use for debug messages. Defaults to
8822@samp{info-log-path}.
8823Defaults to @samp{""}.
8824@end deftypevr
8825
8826@deftypevr {@code{dovecot-configuration} parameter} string syslog-facility
8827Syslog facility to use if you're logging to syslog. Usually if you
8828don't want to use @samp{mail}, you'll use local0..local7. Also other
8829standard facilities are supported.
8830Defaults to @samp{"mail"}.
8831@end deftypevr
8832
8833@deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose?
8834Log unsuccessful authentication attempts and the reasons why they
8835failed.
8836Defaults to @samp{#f}.
8837@end deftypevr
8838
8839@deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose-passwords?
8840In case of password mismatches, log the attempted password. Valid
8841values are no, plain and sha1. sha1 can be useful for detecting brute
8842force password attempts vs. user simply trying the same password over
8843and over again. You can also truncate the value to n chars by appending
8844":n" (e.g. sha1:6).
8845Defaults to @samp{#f}.
8846@end deftypevr
8847
8848@deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug?
8849Even more verbose logging for debugging purposes. Shows for example
8850SQL queries.
8851Defaults to @samp{#f}.
8852@end deftypevr
8853
8854@deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug-passwords?
8855In case of password mismatches, log the passwords and used scheme so
8856the problem can be debugged. Enabling this also enables
8857@samp{auth-debug}.
8858Defaults to @samp{#f}.
8859@end deftypevr
8860
8861@deftypevr {@code{dovecot-configuration} parameter} boolean mail-debug?
8862Enable mail process debugging. This can help you figure out why
8863Dovecot isn't finding your mails.
8864Defaults to @samp{#f}.
8865@end deftypevr
8866
8867@deftypevr {@code{dovecot-configuration} parameter} boolean verbose-ssl?
8868Show protocol level SSL errors.
8869Defaults to @samp{#f}.
8870@end deftypevr
8871
8872@deftypevr {@code{dovecot-configuration} parameter} string log-timestamp
8873Prefix for each line written to log file. % codes are in
8874strftime(3) format.
8875Defaults to @samp{"\"%b %d %H:%M:%S \""}.
8876@end deftypevr
8877
8878@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements
8879List of elements we want to log. The elements which have a
8880non-empty variable value are joined together to form a comma-separated
8881string.
8882@end deftypevr
8883
8884@deftypevr {@code{dovecot-configuration} parameter} string login-log-format
8885Login log format. %s contains @samp{login-log-format-elements}
8886string, %$ contains the data we want to log.
8887Defaults to @samp{"%$: %s"}.
8888@end deftypevr
8889
8890@deftypevr {@code{dovecot-configuration} parameter} string mail-log-prefix
8891Log prefix for mail processes. See doc/wiki/Variables.txt for list
8892of possible variables you can use.
8893Defaults to @samp{"\"%s(%u): \""}.
8894@end deftypevr
8895
8896@deftypevr {@code{dovecot-configuration} parameter} string deliver-log-format
8897Format to use for logging mail deliveries. You can use variables:
8898@table @code
8899@item %$
8900Delivery status message (e.g. @samp{saved to INBOX})
8901@item %m
8902Message-ID
8903@item %s
8904Subject
8905@item %f
8906From address
8907@item %p
8908Physical size
8909@item %w
8910Virtual size.
8911@end table
8912Defaults to @samp{"msgid=%m: %$"}.
8913@end deftypevr
8914
8915@deftypevr {@code{dovecot-configuration} parameter} string mail-location
8916Location for users' mailboxes. The default is empty, which means
8917that Dovecot tries to find the mailboxes automatically. This won't work
8918if the user doesn't yet have any mail, so you should explicitly tell
8919Dovecot the full location.
8920
8921If you're using mbox, giving a path to the INBOX
8922file (e.g. /var/mail/%u) isn't enough. You'll also need to tell Dovecot
8923where the other mailboxes are kept. This is called the "root mail
8924directory", and it must be the first path given in the
8925@samp{mail-location} setting.
8926
8927There are a few special variables you can use, eg.:
8928
8929@table @samp
8930@item %u
8931username
8932@item %n
8933user part in user@@domain, same as %u if there's no domain
8934@item %d
8935domain part in user@@domain, empty if there's no domain
8936@item %h
8937home director
8938@end table
8939
8940See doc/wiki/Variables.txt for full list. Some examples:
8941@table @samp
8942@item maildir:~/Maildir
8943@item mbox:~/mail:INBOX=/var/mail/%u
8944@item mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%
8945@end table
8946Defaults to @samp{""}.
8947@end deftypevr
8948
8949@deftypevr {@code{dovecot-configuration} parameter} string mail-uid
8950System user and group used to access mails. If you use multiple,
8951userdb can override these by returning uid or gid fields. You can use
8952either numbers or names. <doc/wiki/UserIds.txt>.
8953Defaults to @samp{""}.
8954@end deftypevr
8955
8956@deftypevr {@code{dovecot-configuration} parameter} string mail-gid
8957
8958Defaults to @samp{""}.
8959@end deftypevr
8960
8961@deftypevr {@code{dovecot-configuration} parameter} string mail-privileged-group
8962Group to enable temporarily for privileged operations. Currently
8963this is used only with INBOX when either its initial creation or
8964dotlocking fails. Typically this is set to "mail" to give access to
8965/var/mail.
8966Defaults to @samp{""}.
8967@end deftypevr
8968
8969@deftypevr {@code{dovecot-configuration} parameter} string mail-access-groups
8970Grant access to these supplementary groups for mail processes.
8971Typically these are used to set up access to shared mailboxes. Note
8972that it may be dangerous to set these if users can create
8973symlinks (e.g. if "mail" group is set here, ln -s /var/mail ~/mail/var
8974could allow a user to delete others' mailboxes, or ln -s
8975/secret/shared/box ~/mail/mybox would allow reading it).
8976Defaults to @samp{""}.
8977@end deftypevr
8978
8979@deftypevr {@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?
8980Allow full filesystem access to clients. There's no access checks
8981other than what the operating system does for the active UID/GID. It
8982works with both maildir and mboxes, allowing you to prefix mailboxes
8983names with e.g. /path/ or ~user/.
8984Defaults to @samp{#f}.
8985@end deftypevr
8986
8987@deftypevr {@code{dovecot-configuration} parameter} boolean mmap-disable?
8988Don't use mmap() at all. This is required if you store indexes to
8989shared filesystems (NFS or clustered filesystem).
8990Defaults to @samp{#f}.
8991@end deftypevr
8992
8993@deftypevr {@code{dovecot-configuration} parameter} boolean dotlock-use-excl?
8994Rely on @samp{O_EXCL} to work when creating dotlock files. NFS
8995supports @samp{O_EXCL} since version 3, so this should be safe to use
8996nowadays by default.
8997Defaults to @samp{#t}.
8998@end deftypevr
8999
9000@deftypevr {@code{dovecot-configuration} parameter} string mail-fsync
9001When to use fsync() or fdatasync() calls:
9002@table @code
9003@item optimized
9004Whenever necessary to avoid losing important data
9005@item always
9006Useful with e.g. NFS when write()s are delayed
9007@item never
9008Never use it (best performance, but crashes can lose data).
9009@end table
9010Defaults to @samp{"optimized"}.
9011@end deftypevr
9012
9013@deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-storage?
9014Mail storage exists in NFS. Set this to yes to make Dovecot flush
9015NFS caches whenever needed. If you're using only a single mail server
9016this isn't needed.
9017Defaults to @samp{#f}.
9018@end deftypevr
9019
9020@deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-index?
9021Mail index files also exist in NFS. Setting this to yes requires
9022@samp{mmap-disable? #t} and @samp{fsync-disable? #f}.
9023Defaults to @samp{#f}.
9024@end deftypevr
9025
9026@deftypevr {@code{dovecot-configuration} parameter} string lock-method
9027Locking method for index files. Alternatives are fcntl, flock and
9028dotlock. Dotlocking uses some tricks which may create more disk I/O
9029than other locking methods. NFS users: flock doesn't work, remember to
9030change @samp{mmap-disable}.
9031Defaults to @samp{"fcntl"}.
9032@end deftypevr
9033
9034@deftypevr {@code{dovecot-configuration} parameter} file-name mail-temp-dir
9035Directory in which LDA/LMTP temporarily stores incoming mails >128
9036kB.
9037Defaults to @samp{"/tmp"}.
9038@end deftypevr
9039
9040@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid
9041Valid UID range for users. This is mostly to make sure that users can't
9042log in as daemons or other system users. Note that denying root logins is
9043hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid}
9044is set to 0.
9045Defaults to @samp{500}.
9046@end deftypevr
9047
9048@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid
9049
9050Defaults to @samp{0}.
9051@end deftypevr
9052
9053@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid
9054Valid GID range for users. Users having non-valid GID as primary group ID
9055aren't allowed to log in. If user belongs to supplementary groups with
9056non-valid GIDs, those groups are not set.
9057Defaults to @samp{1}.
9058@end deftypevr
9059
9060@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid
9061
9062Defaults to @samp{0}.
9063@end deftypevr
9064
9065@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length
9066Maximum allowed length for mail keyword name. It's only forced when
9067trying to create new keywords.
9068Defaults to @samp{50}.
9069@end deftypevr
9070
9071@deftypevr {@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs
9072List of directories under which chrooting is allowed for mail
9073processes (i.e. /var/mail will allow chrooting to /var/mail/foo/bar
9074too). This setting doesn't affect @samp{login-chroot}
9075@samp{mail-chroot} or auth chroot settings. If this setting is empty,
9076"/./" in home dirs are ignored. WARNING: Never add directories here
9077which local users can modify, that may lead to root exploit. Usually
9078this should be done only if you don't allow shell access for users.
9079<doc/wiki/Chrooting.txt>.
9080Defaults to @samp{()}.
9081@end deftypevr
9082
9083@deftypevr {@code{dovecot-configuration} parameter} string mail-chroot
9084Default chroot directory for mail processes. This can be overridden
9085for specific users in user database by giving /./ in user's home
9086directory (e.g. /home/./user chroots into /home). Note that usually
9087there is no real need to do chrooting, Dovecot doesn't allow users to
9088access files outside their mail directory anyway. If your home
9089directories are prefixed with the chroot directory, append "/." to
9090@samp{mail-chroot}. <doc/wiki/Chrooting.txt>.
9091Defaults to @samp{""}.
9092@end deftypevr
9093
9094@deftypevr {@code{dovecot-configuration} parameter} file-name auth-socket-path
9095UNIX socket path to master authentication server to find users.
9096This is used by imap (for shared users) and lda.
9097Defaults to @samp{"/var/run/dovecot/auth-userdb"}.
9098@end deftypevr
9099
9100@deftypevr {@code{dovecot-configuration} parameter} file-name mail-plugin-dir
9101Directory where to look up mail plugins.
9102Defaults to @samp{"/usr/lib/dovecot"}.
9103@end deftypevr
9104
9105@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins
9106List of plugins to load for all services. Plugins specific to IMAP,
9107LDA, etc. are added to this list in their own .conf files.
9108Defaults to @samp{()}.
9109@end deftypevr
9110
9111@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count
9112The minimum number of mails in a mailbox before updates are done to
9113cache file. This allows optimizing Dovecot's behavior to do less disk
9114writes at the cost of more disk reads.
9115Defaults to @samp{0}.
9116@end deftypevr
9117
9118@deftypevr {@code{dovecot-configuration} parameter} string mailbox-idle-check-interval
9119When IDLE command is running, mailbox is checked once in a while to
9120see if there are any new mails or other changes. This setting defines
9121the minimum time to wait between those checks. Dovecot can also use
9122dnotify, inotify and kqueue to find out immediately when changes
9123occur.
9124Defaults to @samp{"30 secs"}.
9125@end deftypevr
9126
9127@deftypevr {@code{dovecot-configuration} parameter} boolean mail-save-crlf?
9128Save mails with CR+LF instead of plain LF. This makes sending those
9129mails take less CPU, especially with sendfile() syscall with Linux and
9130FreeBSD. But it also creates a bit more disk I/O which may just make it
9131slower. Also note that if other software reads the mboxes/maildirs,
9132they may handle the extra CRs wrong and cause problems.
9133Defaults to @samp{#f}.
9134@end deftypevr
9135
9136@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?
9137By default LIST command returns all entries in maildir beginning
9138with a dot. Enabling this option makes Dovecot return only entries
9139which are directories. This is done by stat()ing each entry, so it
9140causes more disk I/O.
9141 (For systems setting struct @samp{dirent->d_type} this check is free
9142and it's done always regardless of this setting).
9143Defaults to @samp{#f}.
9144@end deftypevr
9145
9146@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?
9147When copying a message, do it with hard links whenever possible.
9148This makes the performance much better, and it's unlikely to have any
9149side effects.
9150Defaults to @samp{#t}.
9151@end deftypevr
9152
9153@deftypevr {@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?
9154Assume Dovecot is the only MUA accessing Maildir: Scan cur/
9155directory only when its mtime changes unexpectedly or when we can't find
9156the mail otherwise.
9157Defaults to @samp{#f}.
9158@end deftypevr
9159
9160@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks
9161Which locking methods to use for locking mbox. There are four
9162available:
9163
9164@table @code
9165@item dotlock
9166Create <mailbox>.lock file. This is the oldest and most NFS-safe
9167solution. If you want to use /var/mail/ like directory, the users will
9168need write access to that directory.
9169@item dotlock-try
9170Same as dotlock, but if it fails because of permissions or because there
9171isn't enough disk space, just skip it.
9172@item fcntl
9173Use this if possible. Works with NFS too if lockd is used.
9174@item flock
a01ad638 9175May not exist in all systems. Doesn't work with NFS.
d8c18af8
AW
9176@item lockf
9177May not exist in all systems. Doesn't work with NFS.
9178@end table
9179
9180You can use multiple locking methods; if you do the order they're declared
9181in is important to avoid deadlocks if other MTAs/MUAs are using multiple
9182locking methods as well. Some operating systems don't allow using some of
9183them simultaneously.
9184@end deftypevr
9185
9186@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks
9187
9188@end deftypevr
9189
9190@deftypevr {@code{dovecot-configuration} parameter} string mbox-lock-timeout
9191Maximum time to wait for lock (all of them) before aborting.
9192Defaults to @samp{"5 mins"}.
9193@end deftypevr
9194
9195@deftypevr {@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout
9196If dotlock exists but the mailbox isn't modified in any way,
9197override the lock file after this much time.
9198Defaults to @samp{"2 mins"}.
9199@end deftypevr
9200
9201@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?
9202When mbox changes unexpectedly we have to fully read it to find out
9203what changed. If the mbox is large this can take a long time. Since
9204the change is usually just a newly appended mail, it'd be faster to
9205simply read the new mails. If this setting is enabled, Dovecot does
9206this but still safely fallbacks to re-reading the whole mbox file
9207whenever something in mbox isn't how it's expected to be. The only real
9208downside to this setting is that if some other MUA changes message
9209flags, Dovecot doesn't notice it immediately. Note that a full sync is
9210done with SELECT, EXAMINE, EXPUNGE and CHECK commands.
9211Defaults to @samp{#t}.
9212@end deftypevr
9213
9214@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?
9215Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT,
9216EXAMINE, EXPUNGE or CHECK commands. If this is set,
9217@samp{mbox-dirty-syncs} is ignored.
9218Defaults to @samp{#f}.
9219@end deftypevr
9220
9221@deftypevr {@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?
9222Delay writing mbox headers until doing a full write sync (EXPUNGE
9223and CHECK commands and when closing the mailbox). This is especially
9224useful for POP3 where clients often delete all mails. The downside is
9225that our changes aren't immediately visible to other MUAs.
9226Defaults to @samp{#t}.
9227@end deftypevr
9228
9229@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size
9230If mbox size is smaller than this (e.g. 100k), don't write index
9231files. If an index file already exists it's still read, just not
9232updated.
9233Defaults to @samp{0}.
9234@end deftypevr
9235
9236@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size
9237Maximum dbox file size until it's rotated.
9238Defaults to @samp{2000000}.
9239@end deftypevr
9240
9241@deftypevr {@code{dovecot-configuration} parameter} string mdbox-rotate-interval
9242Maximum dbox file age until it's rotated. Typically in days. Day
9243begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check
9244disabled.
9245Defaults to @samp{"1d"}.
9246@end deftypevr
9247
9248@deftypevr {@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?
9249When creating new mdbox files, immediately preallocate their size to
9250@samp{mdbox-rotate-size}. This setting currently works only in Linux
9251with some filesystems (ext4, xfs).
9252Defaults to @samp{#f}.
9253@end deftypevr
9254
9255@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-dir
9256sdbox and mdbox support saving mail attachments to external files,
9257which also allows single instance storage for them. Other backends
9258don't support this for now.
9259
9260WARNING: This feature hasn't been tested much yet. Use at your own risk.
9261
9262Directory root where to store mail attachments. Disabled, if empty.
9263Defaults to @samp{""}.
9264@end deftypevr
9265
9266@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size
9267Attachments smaller than this aren't saved externally. It's also
9268possible to write a plugin to disable saving specific attachments
9269externally.
9270Defaults to @samp{128000}.
9271@end deftypevr
9272
9273@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-fs
9274Filesystem backend to use for saving attachments:
9275@table @code
9276@item posix
9277No SiS done by Dovecot (but this might help FS's own deduplication)
9278@item sis posix
9279SiS with immediate byte-by-byte comparison during saving
9280@item sis-queue posix
9281SiS with delayed comparison and deduplication.
9282@end table
9283Defaults to @samp{"sis posix"}.
9284@end deftypevr
9285
9286@deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-hash
9287Hash format to use in attachment filenames. You can add any text and
9288variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}},
9289@code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be
9290truncated, e.g. @code{%@{sha256:80@}} returns only first 80 bits.
9291Defaults to @samp{"%@{sha1@}"}.
9292@end deftypevr
9293
9294@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-process-limit
9295
9296Defaults to @samp{100}.
9297@end deftypevr
9298
9299@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-client-limit
9300
9301Defaults to @samp{1000}.
9302@end deftypevr
9303
9304@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit
9305Default VSZ (virtual memory size) limit for service processes.
9306This is mainly intended to catch and kill processes that leak memory
9307before they eat up everything.
9308Defaults to @samp{256000000}.
9309@end deftypevr
9310
9311@deftypevr {@code{dovecot-configuration} parameter} string default-login-user
9312Login user is internally used by login processes. This is the most
9313untrusted user in Dovecot system. It shouldn't have access to anything
9314at all.
9315Defaults to @samp{"dovenull"}.
9316@end deftypevr
9317
9318@deftypevr {@code{dovecot-configuration} parameter} string default-internal-user
9319Internal user is used by unprivileged processes. It should be
9320separate from login user, so that login processes can't disturb other
9321processes.
9322Defaults to @samp{"dovecot"}.
9323@end deftypevr
9324
9325@deftypevr {@code{dovecot-configuration} parameter} string ssl?
9326SSL/TLS support: yes, no, required. <doc/wiki/SSL.txt>.
9327Defaults to @samp{"required"}.
9328@end deftypevr
9329
9330@deftypevr {@code{dovecot-configuration} parameter} string ssl-cert
9331PEM encoded X.509 SSL/TLS certificate (public key).
9332Defaults to @samp{"</etc/dovecot/default.pem"}.
9333@end deftypevr
9334
9335@deftypevr {@code{dovecot-configuration} parameter} string ssl-key
9336PEM encoded SSL/TLS private key. The key is opened before
9337dropping root privileges, so keep the key file unreadable by anyone but
9338root.
9339Defaults to @samp{"</etc/dovecot/private/default.pem"}.
9340@end deftypevr
9341
9342@deftypevr {@code{dovecot-configuration} parameter} string ssl-key-password
9343If key file is password protected, give the password here.
9344Alternatively give it when starting dovecot with -p parameter. Since
9345this file is often world-readable, you may want to place this setting
9346instead to a different.
9347Defaults to @samp{""}.
9348@end deftypevr
9349
9350@deftypevr {@code{dovecot-configuration} parameter} string ssl-ca
9351PEM encoded trusted certificate authority. Set this only if you
9352intend to use @samp{ssl-verify-client-cert? #t}. The file should
9353contain the CA certificate(s) followed by the matching
9354CRL(s). (e.g. @samp{ssl-ca </etc/ssl/certs/ca.pem}).
9355Defaults to @samp{""}.
9356@end deftypevr
9357
9358@deftypevr {@code{dovecot-configuration} parameter} boolean ssl-require-crl?
9359Require that CRL check succeeds for client certificates.
9360Defaults to @samp{#t}.
9361@end deftypevr
9362
9363@deftypevr {@code{dovecot-configuration} parameter} boolean ssl-verify-client-cert?
9364Request client to send a certificate. If you also want to require
9365it, set @samp{auth-ssl-require-client-cert? #t} in auth section.
9366Defaults to @samp{#f}.
9367@end deftypevr
9368
9369@deftypevr {@code{dovecot-configuration} parameter} string ssl-cert-username-field
9370Which field from certificate to use for username. commonName and
9371x500UniqueIdentifier are the usual choices. You'll also need to set
9372@samp{auth-ssl-username-from-cert? #t}.
9373Defaults to @samp{"commonName"}.
9374@end deftypevr
9375
9376@deftypevr {@code{dovecot-configuration} parameter} hours ssl-parameters-regenerate
9377How often to regenerate the SSL parameters file. Generation is
9378quite CPU intensive operation. The value is in hours, 0 disables
9379regeneration entirely.
9380Defaults to @samp{168}.
9381@end deftypevr
9382
9383@deftypevr {@code{dovecot-configuration} parameter} string ssl-protocols
9384SSL protocols to use.
9385Defaults to @samp{"!SSLv2"}.
9386@end deftypevr
9387
9388@deftypevr {@code{dovecot-configuration} parameter} string ssl-cipher-list
9389SSL ciphers to use.
9390Defaults to @samp{"ALL:!LOW:!SSLv2:!EXP:!aNULL"}.
9391@end deftypevr
9392
9393@deftypevr {@code{dovecot-configuration} parameter} string ssl-crypto-device
9394SSL crypto device to use, for valid values run "openssl engine".
9395Defaults to @samp{""}.
9396@end deftypevr
9397
9398@deftypevr {@code{dovecot-configuration} parameter} string postmaster-address
9399Address to use when sending rejection mails.
9400Default is postmaster@@<your domain>. %d expands to recipient domain.
9401Defaults to @samp{""}.
9402@end deftypevr
9403
9404@deftypevr {@code{dovecot-configuration} parameter} string hostname
9405Hostname to use in various parts of sent mails (e.g. in Message-Id)
9406and in LMTP replies. Default is the system's real hostname@@domain.
9407Defaults to @samp{""}.
9408@end deftypevr
9409
9410@deftypevr {@code{dovecot-configuration} parameter} boolean quota-full-tempfail?
9411If user is over quota, return with temporary failure instead of
9412bouncing the mail.
9413Defaults to @samp{#f}.
9414@end deftypevr
9415
9416@deftypevr {@code{dovecot-configuration} parameter} file-name sendmail-path
9417Binary to use for sending mails.
9418Defaults to @samp{"/usr/sbin/sendmail"}.
9419@end deftypevr
9420
9421@deftypevr {@code{dovecot-configuration} parameter} string submission-host
9422If non-empty, send mails via this SMTP host[:port] instead of
9423sendmail.
9424Defaults to @samp{""}.
9425@end deftypevr
9426
9427@deftypevr {@code{dovecot-configuration} parameter} string rejection-subject
9428Subject: header to use for rejection mails. You can use the same
9429variables as for @samp{rejection-reason} below.
9430Defaults to @samp{"Rejected: %s"}.
9431@end deftypevr
9432
9433@deftypevr {@code{dovecot-configuration} parameter} string rejection-reason
9434Human readable error message for rejection mails. You can use
9435variables:
9436
9437@table @code
9438@item %n
9439CRLF
9440@item %r
9441reason
9442@item %s
9443original subject
9444@item %t
9445recipient
9446@end table
9447Defaults to @samp{"Your message to <%t> was automatically rejected:%n%r"}.
9448@end deftypevr
9449
9450@deftypevr {@code{dovecot-configuration} parameter} string recipient-delimiter
9451Delimiter character between local-part and detail in email
9452address.
9453Defaults to @samp{"+"}.
9454@end deftypevr
9455
9456@deftypevr {@code{dovecot-configuration} parameter} string lda-original-recipient-header
9457Header where the original recipient address (SMTP's RCPT TO:
9458address) is taken from if not available elsewhere. With dovecot-lda -a
9459parameter overrides this. A commonly used header for this is
9460X-Original-To.
9461Defaults to @samp{""}.
9462@end deftypevr
9463
9464@deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?
9465Should saving a mail to a nonexistent mailbox automatically create
9466it?.
9467Defaults to @samp{#f}.
9468@end deftypevr
9469
9470@deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?
9471Should automatically created mailboxes be also automatically
9472subscribed?.
9473Defaults to @samp{#f}.
9474@end deftypevr
9475
9476@deftypevr {@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length
9477Maximum IMAP command line length. Some clients generate very long
9478command lines with huge mailboxes, so you may need to raise this if you
9479get "Too long argument" or "IMAP command line too large" errors
9480often.
9481Defaults to @samp{64000}.
9482@end deftypevr
9483
9484@deftypevr {@code{dovecot-configuration} parameter} string imap-logout-format
9485IMAP logout format string:
9486@table @code
9487@item %i
9488total number of bytes read from client
9489@item %o
9490total number of bytes sent to client.
9491@end table
9492Defaults to @samp{"in=%i out=%o"}.
9493@end deftypevr
9494
9495@deftypevr {@code{dovecot-configuration} parameter} string imap-capability
9496Override the IMAP CAPABILITY response. If the value begins with '+',
9497add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
9498Defaults to @samp{""}.
9499@end deftypevr
9500
9501@deftypevr {@code{dovecot-configuration} parameter} string imap-idle-notify-interval
9502How long to wait between "OK Still here" notifications when client
9503is IDLEing.
9504Defaults to @samp{"2 mins"}.
9505@end deftypevr
9506
9507@deftypevr {@code{dovecot-configuration} parameter} string imap-id-send
9508ID field names and values to send to clients. Using * as the value
9509makes Dovecot use the default value. The following fields have default
9510values currently: name, version, os, os-version, support-url,
9511support-email.
9512Defaults to @samp{""}.
9513@end deftypevr
9514
9515@deftypevr {@code{dovecot-configuration} parameter} string imap-id-log
9516ID fields sent by client to log. * means everything.
9517Defaults to @samp{""}.
9518@end deftypevr
9519
9520@deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds
9521Workarounds for various client bugs:
9522
9523@table @code
9524@item delay-newmail
9525Send EXISTS/RECENT new mail notifications only when replying to NOOP and
9526CHECK commands. Some clients ignore them otherwise, for example OSX
9527Mail (<v2.1). Outlook Express breaks more badly though, without this it
9528may show user "Message no longer in server" errors. Note that OE6
9529still breaks even with this workaround if synchronization is set to
9530"Headers Only".
9531
9532@item tb-extra-mailbox-sep
9533Thunderbird gets somehow confused with LAYOUT=fs (mbox and dbox) and
9534adds extra @samp{/} suffixes to mailbox names. This option causes Dovecot to
9535ignore the extra @samp{/} instead of treating it as invalid mailbox name.
9536
9537@item tb-lsub-flags
9538Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
9539This makes Thunderbird realize they aren't selectable and show them
9540greyed out, instead of only later giving "not selectable" popup error.
9541@end table
9542Defaults to @samp{()}.
9543@end deftypevr
9544
9545@deftypevr {@code{dovecot-configuration} parameter} string imap-urlauth-host
9546Host allowed in URLAUTH URLs sent by client. "*" allows all.
9547Defaults to @samp{""}.
9548@end deftypevr
9549
9550
9551Whew! Lots of configuration options. The nice thing about it though is
9552that GuixSD has a complete interface to Dovecot's configuration
9553language. This allows not only a nice way to declare configurations,
9554but also offers reflective capabilities as well: users can write code to
9555inspect and transform configurations from within Scheme.
9556
9557However, it could be that you just want to get a @code{dovecot.conf} up
9558and running. In that case, you can pass an
9559@code{opaque-dovecot-configuration} as the @code{#:config} paramter to
9560@code{dovecot-service}. As its name indicates, an opaque configuration
9561does not have easy reflective capabilities.
9562
9563Available @code{opaque-dovecot-configuration} fields are:
9564
9565@deftypevr {@code{opaque-dovecot-configuration} parameter} package dovecot
9566The dovecot package.
9567@end deftypevr
9568
9569@deftypevr {@code{opaque-dovecot-configuration} parameter} string string
9570The contents of the @code{dovecot.conf}, as a string.
9571@end deftypevr
9572
9573For example, if your @code{dovecot.conf} is just the empty string, you
9574could instantiate a dovecot service like this:
9575
9576@example
9577(dovecot-service #:config
9578 (opaque-dovecot-configuration
9579 (string "")))
9580@end example
9581
58724c48
DT
9582@node Web Services
9583@subsubsection Web Services
9584
9585The @code{(gnu services web)} module provides the following service:
9586
be1c2c54 9587@deffn {Scheme Procedure} nginx-service [#:nginx nginx] @
58724c48
DT
9588 [#:log-directory ``/var/log/nginx''] @
9589 [#:run-directory ``/var/run/nginx''] @
9590 [#:config-file]
9591
9592Return a service that runs @var{nginx}, the nginx web server.
9593
9594The nginx daemon loads its runtime configuration from @var{config-file}.
9595Log files are written to @var{log-directory} and temporary runtime data
9596files are written to @var{run-directory}. For proper operation, these
9597arguments should match what is in @var{config-file} to ensure that the
9598directories are created when the service is activated.
9599
9600@end deffn
9601
fe1a39d3
LC
9602@node Various Services
9603@subsubsection Various Services
9604
9605The @code{(gnu services lirc)} module provides the following service.
9606
be1c2c54 9607@deffn {Scheme Procedure} lirc-service [#:lirc lirc] @
fe1a39d3
LC
9608 [#:device #f] [#:driver #f] [#:config-file #f] @
9609 [#:extra-options '()]
9610Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that
9611decodes infrared signals from remote controls.
9612
9613Optionally, @var{device}, @var{driver} and @var{config-file}
9614(configuration file name) may be specified. See @command{lircd} manual
9615for details.
9616
9617Finally, @var{extra-options} is a list of additional command-line options
9618passed to @command{lircd}.
9619@end deffn
9620
c3d38b2b
SB
9621@subsubsection Dictionary Services
9622The @code{(gnu services dict)} module provides the following service:
9623
9624@deffn {Scheme Procedure} dicod-service [#:config (dicod-configuration)]
9625Return a service that runs the @command{dicod} daemon, an implementation
9626of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual}).
9627
9628The optional @var{config} argument specifies the configuration for
9629@command{dicod}, which should be a @code{<dicod-configuration>} object, by
9630default it serves the GNU Collaborative International Dictonary of English.
9631
9632You can add @command{open localhost} to your @file{~/.dico} file to make
9633@code{localhost} the default server for @command{dico} client
9634(@pxref{Initialization File,,, dico, GNU Dico Manual}).
9635@end deffn
9636
9637@deftp {Data Type} dicod-configuration
9638Data type representing the configuration of dicod.
9639
9640@table @asis
9641@item @code{dico} (default: @var{dico})
9642Package object of the GNU Dico dictionary server.
9643
a1b48465
LC
9644@item @code{interfaces} (default: @var{'("localhost")})
9645This is the list of IP addresses and ports and possibly socket file
9646names to listen to (@pxref{Server Settings, @code{listen} directive,,
9647dico, GNU Dico Manual}).
9648
c3d38b2b
SB
9649@item @code{databases} (default: @var{(list %dicod-database:gcide)})
9650List of @code{<dicod-database>} objects denoting dictionaries to be served.
9651@end table
9652@end deftp
9653
9654@deftp {Data Type} dicod-database
9655Data type representing a dictionary database.
9656
9657@table @asis
9658@item @code{name}
9659Name of the database, will be used in DICT commands.
9660
9661@item @code{module}
9662Name of the dicod module used by this database
9663(@pxref{Modules,,, dico, GNU Dico Manual}).
9664
9665@item @code{options}
9666List of strings or gexps representing the arguments for the module handler
9667(@pxref{Handlers,,, dico, GNU Dico Manual}).
9668@end table
9669@end deftp
9670
9671@defvr {Scheme Variable} %dicod-database:gcide
9672A @code{<dicod-database>} object serving the GNU Collaborative International
9673Dictonary of English using the @code{gcide} package.
9674@end defvr
fe1a39d3 9675
0ae8c15a
LC
9676@node Setuid Programs
9677@subsection Setuid Programs
9678
9679@cindex setuid programs
9680Some programs need to run with ``root'' privileges, even when they are
9681launched by unprivileged users. A notorious example is the
4d40227c
LC
9682@command{passwd} program, which users can run to change their
9683password, and which needs to access the @file{/etc/passwd} and
0ae8c15a
LC
9684@file{/etc/shadow} files---something normally restricted to root, for
9685obvious security reasons. To address that, these executables are
9686@dfn{setuid-root}, meaning that they always run with root privileges
9687(@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual},
f7e4ae7f 9688for more info about the setuid mechanism.)
0ae8c15a
LC
9689
9690The store itself @emph{cannot} contain setuid programs: that would be a
9691security issue since any user on the system can write derivations that
9692populate the store (@pxref{The Store}). Thus, a different mechanism is
9693used: instead of changing the setuid bit directly on files that are in
9694the store, we let the system administrator @emph{declare} which programs
9695should be setuid root.
9696
9697The @code{setuid-programs} field of an @code{operating-system}
9698declaration contains a list of G-expressions denoting the names of
9699programs to be setuid-root (@pxref{Using the Configuration System}).
9700For instance, the @command{passwd} program, which is part of the Shadow
9701package, can be designated by this G-expression (@pxref{G-Expressions}):
9702
9703@example
9704#~(string-append #$shadow "/bin/passwd")
9705@end example
9706
9707A default set of setuid programs is defined by the
9708@code{%setuid-programs} variable of the @code{(gnu system)} module.
9709
9710@defvr {Scheme Variable} %setuid-programs
9711A list of G-expressions denoting common programs that are setuid-root.
9712
9713The list includes commands such as @command{passwd}, @command{ping},
9714@command{su}, and @command{sudo}.
9715@end defvr
9716
9717Under the hood, the actual setuid programs are created in the
9718@file{/run/setuid-programs} directory at system activation time. The
9719files in this directory refer to the ``real'' binaries, which are in the
9720store.
9721
efb5e833
LC
9722@node X.509 Certificates
9723@subsection X.509 Certificates
9724
9725@cindex HTTPS, certificates
9726@cindex X.509 certificates
9727@cindex TLS
9728Web servers available over HTTPS (that is, HTTP over the transport-layer
9729security mechanism, TLS) send client programs an @dfn{X.509 certificate}
9730that the client can then use to @emph{authenticate} the server. To do
9731that, clients verify that the server's certificate is signed by a
9732so-called @dfn{certificate authority} (CA). But to verify the CA's
9733signature, clients must have first acquired the CA's certificate.
9734
9735Web browsers such as GNU@tie{}IceCat include their own set of CA
9736certificates, such that they are able to verify CA signatures
9737out-of-the-box.
9738
9739However, most other programs that can talk HTTPS---@command{wget},
9740@command{git}, @command{w3m}, etc.---need to be told where CA
9741certificates can be found.
9742
9743@cindex @code{nss-certs}
9744In GuixSD, this is done by adding a package that provides certificates
9745to the @code{packages} field of the @code{operating-system} declaration
9746(@pxref{operating-system Reference}). GuixSD includes one such package,
9747@code{nss-certs}, which is a set of CA certificates provided as part of
9748Mozilla's Network Security Services.
9749
9750Note that it is @emph{not} part of @var{%base-packages}, so you need to
9751explicitly add it. The @file{/etc/ssl/certs} directory, which is where
9752most applications and libraries look for certificates by default, points
9753to the certificates installed globally.
9754
b3129f2b
LC
9755Unprivileged users, including users of Guix on a foreign distro,
9756can also install their own certificate package in
efb5e833
LC
9757their profile. A number of environment variables need to be defined so
9758that applications and libraries know where to find them. Namely, the
9759OpenSSL library honors the @code{SSL_CERT_DIR} and @code{SSL_CERT_FILE}
9760variables. Some applications add their own environment variables; for
9761instance, the Git version control system honors the certificate bundle
b3129f2b
LC
9762pointed to by the @code{GIT_SSL_CAINFO} environment variable. Thus, you
9763would typically run something like:
efb5e833 9764
b3129f2b
LC
9765@example
9766$ guix package -i nss-certs
9767$ export SSL_CERT_DIR="$HOME/.guix-profile/etc/ssl/certs"
9768$ export SSL_CERT_FILE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt"
9769$ export GIT_SSL_CAINFO="$SSL_CERT_FILE"
9770@end example
efb5e833 9771
996ed739
LC
9772@node Name Service Switch
9773@subsection Name Service Switch
9774
9775@cindex name service switch
9776@cindex NSS
9777The @code{(gnu system nss)} module provides bindings to the
1068f26b 9778configuration file of the libc @dfn{name service switch} or @dfn{NSS}
996ed739
LC
9779(@pxref{NSS Configuration File,,, libc, The GNU C Library Reference
9780Manual}). In a nutshell, the NSS is a mechanism that allows libc to be
9781extended with new ``name'' lookup methods for system databases, which
9782includes host names, service names, user accounts, and more (@pxref{Name
9783Service Switch, System Databases and Name Service Switch,, libc, The GNU
9784C Library Reference Manual}).
9785
9786The NSS configuration specifies, for each system database, which lookup
9787method is to be used, and how the various methods are chained
9788together---for instance, under which circumstances NSS should try the
9789next method in the list. The NSS configuration is given in the
9790@code{name-service-switch} field of @code{operating-system} declarations
9791(@pxref{operating-system Reference, @code{name-service-switch}}).
9792
4c9050c6
LC
9793@cindex nss-mdns
9794@cindex .local, host name lookup
996ed739 9795As an example, the declaration below configures the NSS to use the
4c9050c6
LC
9796@uref{http://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns}
9797back-end}, which supports host name lookups over multicast DNS (mDNS)
9798for host names ending in @code{.local}:
996ed739
LC
9799
9800@example
9801(name-service-switch
9802 (hosts (list %files ;first, check /etc/hosts
9803
9804 ;; If the above did not succeed, try
9805 ;; with 'mdns_minimal'.
9806 (name-service
9807 (name "mdns_minimal")
9808
9809 ;; 'mdns_minimal' is authoritative for
9810 ;; '.local'. When it returns "not found",
9811 ;; no need to try the next methods.
9812 (reaction (lookup-specification
9813 (not-found => return))))
9814
9815 ;; Then fall back to DNS.
9816 (name-service
9817 (name "dns"))
9818
9819 ;; Finally, try with the "full" 'mdns'.
9820 (name-service
9821 (name "mdns")))))
9822@end example
9823
1068f26b
AE
9824Do not worry: the @code{%mdns-host-lookup-nss} variable (see below)
9825contains this configuration, so you will not have to type it if all you
15137a29
LC
9826want is to have @code{.local} host lookup working.
9827
4c9050c6
LC
9828Note that, in this case, in addition to setting the
9829@code{name-service-switch} of the @code{operating-system} declaration,
cc9c1f39
LC
9830you also need to use @code{avahi-service} (@pxref{Networking Services,
9831@code{avahi-service}}), or @var{%desktop-services}, which includes it
9832(@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible
9833to the name service cache daemon (@pxref{Base Services,
9834@code{nscd-service}}).
15137a29
LC
9835
9836For convenience, the following variables provide typical NSS
9837configurations.
9838
9839@defvr {Scheme Variable} %default-nss
9840This is the default name service switch configuration, a
9841@code{name-service-switch} object.
9842@end defvr
9843
9844@defvr {Scheme Variable} %mdns-host-lookup-nss
9845This is the name service switch configuration with support for host name
9846lookup over multicast DNS (mDNS) for host names ending in @code{.local}.
9847@end defvr
4c9050c6 9848
996ed739 9849The reference for name service switch configuration is given below. It
1068f26b 9850is a direct mapping of the configuration file format of the C library , so
996ed739
LC
9851please refer to the C library manual for more information (@pxref{NSS
9852Configuration File,,, libc, The GNU C Library Reference Manual}).
1068f26b 9853Compared to the configuration file format of libc NSS, it has the advantage
996ed739 9854not only of adding this warm parenthetic feel that we like, but also
1068f26b 9855static checks: you will know about syntax errors and typos as soon as you
996ed739
LC
9856run @command{guix system}.
9857
996ed739
LC
9858@deftp {Data Type} name-service-switch
9859
9860This is the data type representation the configuration of libc's name
9861service switch (NSS). Each field below represents one of the supported
9862system databases.
9863
9864@table @code
9865@item aliases
9866@itemx ethers
9867@itemx group
9868@itemx gshadow
9869@itemx hosts
9870@itemx initgroups
9871@itemx netgroup
9872@itemx networks
9873@itemx password
9874@itemx public-key
9875@itemx rpc
9876@itemx services
9877@itemx shadow
9878The system databases handled by the NSS. Each of these fields must be a
1068f26b 9879list of @code{<name-service>} objects (see below).
996ed739
LC
9880@end table
9881@end deftp
9882
9883@deftp {Data Type} name-service
9884
9885This is the data type representing an actual name service and the
9886associated lookup action.
9887
9888@table @code
9889@item name
9890A string denoting the name service (@pxref{Services in the NSS
9891configuration,,, libc, The GNU C Library Reference Manual}).
9892
4aee6e60
LC
9893Note that name services listed here must be visible to nscd. This is
9894achieved by passing the @code{#:name-services} argument to
9895@code{nscd-service} the list of packages providing the needed name
9896services (@pxref{Base Services, @code{nscd-service}}).
9897
996ed739
LC
9898@item reaction
9899An action specified using the @code{lookup-specification} macro
9900(@pxref{Actions in the NSS configuration,,, libc, The GNU C Library
9901Reference Manual}). For example:
9902
9903@example
9904(lookup-specification (unavailable => continue)
9905 (success => return))
9906@end example
9907@end table
9908@end deftp
0ae8c15a 9909
fd1b1fa2
LC
9910@node Initial RAM Disk
9911@subsection Initial RAM Disk
9912
9913@cindex initial RAM disk (initrd)
9914@cindex initrd (initial RAM disk)
9915For bootstrapping purposes, the Linux-Libre kernel is passed an
9916@dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary
1068f26b 9917root file system as well as an initialization script. The latter is
fd1b1fa2
LC
9918responsible for mounting the real root file system, and for loading any
9919kernel modules that may be needed to achieve that.
9920
9921The @code{initrd} field of an @code{operating-system} declaration allows
9922you to specify which initrd you would like to use. The @code{(gnu
9923system linux-initrd)} module provides two ways to build an initrd: the
9924high-level @code{base-initrd} procedure, and the low-level
9925@code{expression->initrd} procedure.
9926
9927The @code{base-initrd} procedure is intended to cover most common uses.
9928For example, if you want to add a bunch of kernel modules to be loaded
9929at boot time, you can define the @code{initrd} field of the operating
9930system declaration like this:
9931
9932@example
52ac153e 9933(initrd (lambda (file-systems . rest)
027981d6
LC
9934 ;; Create a standard initrd that has modules "foo.ko"
9935 ;; and "bar.ko", as well as their dependencies, in
9936 ;; addition to the modules available by default.
52ac153e 9937 (apply base-initrd file-systems
027981d6 9938 #:extra-modules '("foo" "bar")
52ac153e 9939 rest)))
fd1b1fa2
LC
9940@end example
9941
52ac153e 9942The @code{base-initrd} procedure also handles common use cases that
1068f26b
AE
9943involves using the system as a QEMU guest, or as a ``live'' system with
9944volatile root file system.
fd1b1fa2 9945
e90cf6c1
LC
9946The initial RAM disk produced by @code{base-initrd} honors several
9947options passed on the Linux kernel command line (that is, arguments
1068f26b
AE
9948passed @i{via} the @code{linux} command of GRUB, or the
9949@code{-append} option) of QEMU, notably:
e90cf6c1
LC
9950
9951@table @code
9952@item --load=@var{boot}
9953Tell the initial RAM disk to load @var{boot}, a file containing a Scheme
9954program, once it has mounted the root file system.
9955
9956GuixSD uses this option to yield control to a boot program that runs the
dd17bc38 9957service activation programs and then spawns the GNU@tie{}Shepherd, the
e90cf6c1
LC
9958initialization system.
9959
9960@item --root=@var{root}
1068f26b 9961Mount @var{root} as the root file system. @var{root} can be a
e90cf6c1
LC
9962device name like @code{/dev/sda1}, a partition label, or a partition
9963UUID.
9964
9965@item --system=@var{system}
9966Have @file{/run/booted-system} and @file{/run/current-system} point to
9967@var{system}.
9968
9969@item modprobe.blacklist=@var{modules}@dots{}
9970@cindex module, black-listing
9971@cindex black list, of kernel modules
9972Instruct the initial RAM disk as well as the @command{modprobe} command
9973(from the kmod package) to refuse to load @var{modules}. @var{modules}
9974must be a comma-separated list of module names---e.g.,
9975@code{usbkbd,9pnet}.
9976
9977@item --repl
9978Start a read-eval-print loop (REPL) from the initial RAM disk before it
9979tries to load kernel modules and to mount the root file system. Our
9980marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will
9981love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference
9982Manual}, for more information on Guile's REPL.
9983
9984@end table
9985
9986Now that you know all the features that initial RAM disks produced by
9987@code{base-initrd} provide, here is how to use it and customize it
9988further.
9989
fd1b1fa2 9990@deffn {Monadic Procedure} base-initrd @var{file-systems} @
9059b97d 9991 [#:qemu-networking? #f] [#:virtio? #t] [#:volatile-root? #f] @
52ac153e 9992 [#:extra-modules '()] [#:mapped-devices '()]
fd1b1fa2 9993Return a monadic derivation that builds a generic initrd. @var{file-systems} is
1068f26b 9994a list of file systems to be mounted by the initrd, possibly in addition to
fd1b1fa2 9995the root file system specified on the kernel command line via @code{--root}.
52ac153e
LC
9996@var{mapped-devices} is a list of device mappings to realize before
9997@var{file-systems} are mounted (@pxref{Mapped Devices}).
fd1b1fa2
LC
9998
9999When @var{qemu-networking?} is true, set up networking with the standard QEMU
1068f26b
AE
10000parameters. When @var{virtio?} is true, load additional modules so that the
10001initrd can be used as a QEMU guest with para-virtualized I/O drivers.
fd1b1fa2
LC
10002
10003When @var{volatile-root?} is true, the root file system is writable but any changes
10004to it are lost.
10005
10006The initrd is automatically populated with all the kernel modules necessary
10007for @var{file-systems} and for the given options. However, additional kernel
10008modules can be listed in @var{extra-modules}. They will be added to the initrd, and
10009loaded at boot time in the order in which they appear.
10010@end deffn
10011
10012Needless to say, the initrds we produce and use embed a
10013statically-linked Guile, and the initialization program is a Guile
10014program. That gives a lot of flexibility. The
10015@code{expression->initrd} procedure builds such an initrd, given the
10016program to run in that initrd.
10017
10018@deffn {Monadic Procedure} expression->initrd @var{exp} @
10019 [#:guile %guile-static-stripped] [#:name "guile-initrd"] @
42d10464 10020 [#:modules '()]
fd1b1fa2
LC
10021Return a derivation that builds a Linux initrd (a gzipped cpio archive)
10022containing @var{guile} and that evaluates @var{exp}, a G-expression,
df650fa8
LC
10023upon booting. All the derivations referenced by @var{exp} are
10024automatically copied to the initrd.
fd1b1fa2 10025
42d10464
LC
10026@var{modules} is a list of Guile module names to be embedded in the
10027initrd.
fd1b1fa2
LC
10028@end deffn
10029
88faf933
LC
10030@node GRUB Configuration
10031@subsection GRUB Configuration
10032
10033@cindex GRUB
10034@cindex boot loader
10035
10036The operating system uses GNU@tie{}GRUB as its boot loader
10037(@pxref{Overview, overview of GRUB,, grub, GNU GRUB Manual}). It is
1068f26b
AE
10038configured using a @code{grub-configuration} declaration. This data type
10039is exported by the @code{(gnu system grub)} module and described below.
88faf933
LC
10040
10041@deftp {Data Type} grub-configuration
10042The type of a GRUB configuration declaration.
10043
10044@table @asis
10045
10046@item @code{device}
10047This is a string denoting the boot device. It must be a device name
10048understood by the @command{grub-install} command, such as
10049@code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub,
10050GNU GRUB Manual}).
10051
10052@item @code{menu-entries} (default: @code{()})
10053A possibly empty list of @code{menu-entry} objects (see below), denoting
10054entries to appear in the GRUB boot menu, in addition to the current
10055system entry and the entry pointing to previous system generations.
10056
10057@item @code{default-entry} (default: @code{0})
1068f26b
AE
10058The index of the default boot menu entry. Index 0 is for the entry of the
10059current system.
88faf933
LC
10060
10061@item @code{timeout} (default: @code{5})
10062The number of seconds to wait for keyboard input before booting. Set to
100630 to boot immediately, and to -1 to wait indefinitely.
10064
10065@item @code{theme} (default: @var{%default-theme})
10066The @code{grub-theme} object describing the theme to use.
10067@end table
10068
10069@end deftp
10070
10071Should you want to list additional boot menu entries @i{via} the
10072@code{menu-entries} field above, you will need to create them with the
10073@code{menu-entry} form:
10074
10075@deftp {Data Type} menu-entry
10076The type of an entry in the GRUB boot menu.
10077
10078@table @asis
10079
10080@item @code{label}
35ed9306 10081The label to show in the menu---e.g., @code{"GNU"}.
88faf933
LC
10082
10083@item @code{linux}
10084The Linux kernel to boot.
10085
10086@item @code{linux-arguments} (default: @code{()})
10087The list of extra Linux kernel command-line arguments---e.g.,
10088@code{("console=ttyS0")}.
10089
10090@item @code{initrd}
10091A G-Expression or string denoting the file name of the initial RAM disk
10092to use (@pxref{G-Expressions}).
10093
10094@end table
10095@end deftp
10096
10097@c FIXME: Write documentation once it's stable.
10098Themes are created using the @code{grub-theme} form, which is not
10099documented yet.
10100
10101@defvr {Scheme Variable} %default-theme
10102This is the default GRUB theme used by the operating system, with a
10103fancy background image displaying the GNU and Guix logos.
10104@end defvr
10105
10106
cf4a9129
LC
10107@node Invoking guix system
10108@subsection Invoking @code{guix system}
0918e64a 10109
1068f26b 10110Once you have written an operating system declaration as seen in the
cf4a9129
LC
10111previous section, it can be @dfn{instantiated} using the @command{guix
10112system} command. The synopsis is:
4af2447e 10113
cf4a9129
LC
10114@example
10115guix system @var{options}@dots{} @var{action} @var{file}
10116@end example
4af2447e 10117
cf4a9129
LC
10118@var{file} must be the name of a file containing an
10119@code{operating-system} declaration. @var{action} specifies how the
a40424bd 10120operating system is instantiated. Currently the following values are
cf4a9129 10121supported:
4af2447e 10122
cf4a9129
LC
10123@table @code
10124@item reconfigure
10125Build the operating system described in @var{file}, activate it, and
10126switch to it@footnote{This action is usable only on systems already
65797bff 10127running GuixSD.}.
4af2447e 10128
cf4a9129
LC
10129This effects all the configuration specified in @var{file}: user
10130accounts, system services, global package list, setuid programs, etc.
240b57f0
LC
10131The command starts system services specified in @var{file} that are not
10132currently running; if a service is currently running, it does not
1068f26b 10133attempt to upgrade it since this would not be possible without stopping it
240b57f0 10134first.
4af2447e 10135
cf4a9129
LC
10136It also adds a GRUB menu entry for the new OS configuration, and moves
10137entries for older configurations to a submenu---unless
10138@option{--no-grub} is passed.
4af2447e 10139
240b57f0 10140@quotation Note
bf2479c7
LC
10141@c The paragraph below refers to the problem discussed at
10142@c <http://lists.gnu.org/archive/html/guix-devel/2014-08/msg00057.html>.
10143It is highly recommended to run @command{guix pull} once before you run
10144@command{guix system reconfigure} for the first time (@pxref{Invoking
10145guix pull}). Failing to do that you would see an older version of Guix
10146once @command{reconfigure} has completed.
240b57f0 10147@end quotation
bf2479c7 10148
cf4a9129 10149@item build
1068f26b 10150Build the derivation of the operating system, which includes all the
cf4a9129
LC
10151configuration files and programs needed to boot and run the system.
10152This action does not actually install anything.
113daf62 10153
cf4a9129
LC
10154@item init
10155Populate the given directory with all the files necessary to run the
10156operating system specified in @var{file}. This is useful for first-time
4705641f 10157installations of GuixSD. For instance:
113daf62
LC
10158
10159@example
cf4a9129 10160guix system init my-os-config.scm /mnt
113daf62
LC
10161@end example
10162
cf4a9129
LC
10163copies to @file{/mnt} all the store items required by the configuration
10164specified in @file{my-os-config.scm}. This includes configuration
10165files, packages, and so on. It also creates other essential files
10166needed for the system to operate correctly---e.g., the @file{/etc},
10167@file{/var}, and @file{/run} directories, and the @file{/bin/sh} file.
113daf62 10168
cf4a9129
LC
10169This command also installs GRUB on the device specified in
10170@file{my-os-config}, unless the @option{--no-grub} option was passed.
113daf62 10171
cf4a9129
LC
10172@item vm
10173@cindex virtual machine
0276f697 10174@cindex VM
f535dcbe 10175@anchor{guix system vm}
1068f26b 10176Build a virtual machine that contains the operating system declared in
cf4a9129 10177@var{file}, and return a script to run that virtual machine (VM).
1068f26b 10178Arguments given to the script are passed to QEMU.
113daf62 10179
cf4a9129 10180The VM shares its store with the host system.
113daf62 10181
0276f697
LC
10182Additional file systems can be shared between the host and the VM using
10183the @code{--share} and @code{--expose} command-line options: the former
10184specifies a directory to be shared with write access, while the latter
10185provides read-only access to the shared directory.
10186
10187The example below creates a VM in which the user's home directory is
10188accessible read-only, and where the @file{/exchange} directory is a
1068f26b 10189read-write mapping of @file{$HOME/tmp} on the host:
0276f697
LC
10190
10191@example
10192guix system vm my-config.scm \
10193 --expose=$HOME --share=$HOME/tmp=/exchange
10194@end example
10195
6aa260af
LC
10196On GNU/Linux, the default is to boot directly to the kernel; this has
10197the advantage of requiring only a very tiny root disk image since the
1068f26b 10198store of the host can then be mounted.
6aa260af
LC
10199
10200The @code{--full-boot} option forces a complete boot sequence, starting
10201with the bootloader. This requires more disk space since a root image
10202containing at least the kernel, initrd, and bootloader data files must
10203be created. The @code{--image-size} option can be used to specify the
1068f26b 10204size of the image.
ab11f0be 10205
cf4a9129
LC
10206@item vm-image
10207@itemx disk-image
10208Return a virtual machine or disk image of the operating system declared
10209in @var{file} that stands alone. Use the @option{--image-size} option
10210to specify the size of the image.
113daf62 10211
cf4a9129 10212When using @code{vm-image}, the returned image is in qcow2 format, which
97d76250
LF
10213the QEMU emulator can efficiently use. @xref{Running GuixSD in a VM},
10214for more information on how to run the image in a virtual machine.
113daf62 10215
cf4a9129
LC
10216When using @code{disk-image}, a raw disk image is produced; it can be
10217copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is
1068f26b 10218the device corresponding to a USB stick, one can copy the image to it
cf4a9129 10219using the following command:
113daf62 10220
cf4a9129
LC
10221@example
10222# dd if=$(guix system disk-image my-os.scm) of=/dev/sdc
10223@end example
113daf62 10224
1c8a81b1
DT
10225@item container
10226Return a script to run the operating system declared in @var{file}
10227within a container. Containers are a set of lightweight isolation
10228mechanisms provided by the kernel Linux-libre. Containers are
10229substantially less resource-demanding than full virtual machines since
10230the kernel, shared objects, and other resources can be shared with the
10231host system; this also means they provide thinner isolation.
10232
10233Currently, the script must be run as root in order to support more than
10234a single user and group. The container shares its store with the host
10235system.
10236
10237As with the @code{vm} action (@pxref{guix system vm}), additional file
10238systems to be shared between the host and container can be specified
10239using the @option{--share} and @option{--expose} options:
10240
10241@example
10242guix system container my-config.scm \
10243 --expose=$HOME --share=$HOME/tmp=/exchange
10244@end example
10245
0f252e26 10246@quotation Note
cfd35b4e 10247This option requires Linux-libre 3.19 or newer.
0f252e26
DT
10248@end quotation
10249
cf4a9129 10250@end table
113daf62 10251
ccd7158d
LC
10252@var{options} can contain any of the common build options (@pxref{Common
10253Build Options}). In addition, @var{options} can contain one of the
10254following:
113daf62 10255
cf4a9129
LC
10256@table @option
10257@item --system=@var{system}
10258@itemx -s @var{system}
1068f26b 10259Attempt to build for @var{system} instead of the host system type.
cf4a9129 10260This works as per @command{guix build} (@pxref{Invoking guix build}).
113daf62 10261
f3f427c2
LC
10262@item --derivation
10263@itemx -d
10264Return the derivation file name of the given operating system without
10265building anything.
10266
cf4a9129
LC
10267@item --image-size=@var{size}
10268For the @code{vm-image} and @code{disk-image} actions, create an image
10269of the given @var{size}. @var{size} may be a number of bytes, or it may
4a44d7bb
LC
10270include a unit as a suffix (@pxref{Block size, size specifications,,
10271coreutils, GNU Coreutils}).
db030303
LC
10272
10273@item --on-error=@var{strategy}
10274Apply @var{strategy} when an error occurs when reading @var{file}.
10275@var{strategy} may be one of the following:
10276
10277@table @code
10278@item nothing-special
10279Report the error concisely and exit. This is the default strategy.
10280
10281@item backtrace
10282Likewise, but also display a backtrace.
10283
10284@item debug
10285Report the error and enter Guile's debugger. From there, you can run
10286commands such as @code{,bt} to get a backtrace, @code{,locals} to
1068f26b
AE
10287display local variable values, and more generally inspect the state of the
10288program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for
db030303
LC
10289a list of available debugging commands.
10290@end table
113daf62 10291@end table
113daf62 10292
eca69fc0
LC
10293@quotation Note
10294All the actions above, except @code{build} and @code{init},
10295can use KVM support in the Linux-libre kernel. Specifically, if the
10296machine has hardware virtualization support, the corresponding
cf4a9129 10297KVM kernel module should be loaded, and the @file{/dev/kvm} device node
1068f26b 10298must exist and be readable and writable by the user and by the
eca69fc0
LC
10299build users of the daemon (@pxref{Build Environment Setup}).
10300@end quotation
8451a568 10301
65797bff
LC
10302Once you have built, configured, re-configured, and re-re-configured
10303your GuixSD installation, you may find it useful to list the operating
10304system generations available on disk---and that you can choose from the
10305GRUB boot menu:
10306
10307@table @code
10308
10309@item list-generations
10310List a summary of each generation of the operating system available on
10311disk, in a human-readable way. This is similar to the
10312@option{--list-generations} option of @command{guix package}
10313(@pxref{Invoking guix package}).
10314
10315Optionally, one can specify a pattern, with the same syntax that is used
10316in @command{guix package --list-generations}, to restrict the list of
10317generations displayed. For instance, the following command displays
1068f26b 10318generations that are up to 10 days old:
65797bff
LC
10319
10320@example
10321$ guix system list-generations 10d
10322@end example
10323
10324@end table
10325
d6c3267a
LC
10326The @command{guix system} command has even more to offer! The following
10327sub-commands allow you to visualize how your system services relate to
10328each other:
10329
10330@anchor{system-extension-graph}
10331@table @code
10332
10333@item extension-graph
10334Emit in Dot/Graphviz format to standard output the @dfn{service
10335extension graph} of the operating system defined in @var{file}
10336(@pxref{Service Composition}, for more information on service
10337extensions.)
10338
10339The command:
10340
10341@example
10342$ guix system extension-graph @var{file} | dot -Tpdf > services.pdf
10343@end example
10344
10345produces a PDF file showing the extension relations among services.
10346
710fa231
AK
10347@anchor{system-shepherd-graph}
10348@item shepherd-graph
6f305ea5 10349Emit in Dot/Graphviz format to standard output the @dfn{dependency
dd17bc38
AK
10350graph} of shepherd services of the operating system defined in
10351@var{file}. @xref{Shepherd Services}, for more information and for an
10352example graph.
6f305ea5 10353
d6c3267a
LC
10354@end table
10355
97d76250 10356@node Running GuixSD in a VM
70ac09a5 10357@subsection Running GuixSD in a Virtual Machine
97d76250
LF
10358
10359One way to run GuixSD in a virtual machine (VM) is to build a GuixSD
10360virtual machine image using @command{guix system vm-image}
10361(@pxref{Invoking guix system}). The returned image is in qcow2 format,
10362which the @uref{http://qemu.org/, QEMU emulator} can efficiently use.
10363
10364To run the image in QEMU, copy it out of the store (@pxref{The Store})
10365and give yourself permission to write to the copy. When invoking QEMU,
10366you must choose a system emulator that is suitable for your hardware
10367platform. Here is a minimal QEMU invocation that will boot the result
10368of @command{guix system vm-image} on x86_64 hardware:
10369
10370@example
10371$ qemu-system-x86_64 \
10372 -net user -net nic,model=virtio \
10373 -enable-kvm -m 256 /tmp/qemu-image
10374@end example
10375
10376Here is what each of these options means:
10377
10378@table @code
10379@item qemu-system-x86_64
10380This specifies the hardware platform to emulate. This should match the
10381host.
10382
10383@item -net user
10384Enable the unprivileged user-mode network stack. The guest OS can
10385access the host but not vice versa. This is the simplest way to get the
1068f26b 10386guest OS online. If you do not choose a network stack, the boot will
97d76250
LF
10387fail.
10388
10389@item -net nic,model=virtio
1068f26b 10390You must create a network interface of a given model. If you do not
97d76250
LF
10391create a NIC, the boot will fail. Assuming your hardware platform is
10392x86_64, you can get a list of available NIC models by running
10393@command{qemu-system-x86_64 -net nic,model=help}.
10394
10395@item -enable-kvm
10396If your system has hardware virtualization extensions, enabling the
1068f26b 10397virtual machine support (KVM) of the Linux kernel will make things run
97d76250
LF
10398faster.
10399
10400@item -m 256
10401RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB,
10402which may be insufficent for some operations.
10403
10404@item /tmp/qemu-image
10405The file name of the qcow2 image.
10406@end table
d6c3267a 10407
cf4a9129
LC
10408@node Defining Services
10409@subsection Defining Services
8451a568 10410
eb524192 10411The previous sections show the available services and how one can combine
0adfe95a
LC
10412them in an @code{operating-system} declaration. But how do we define
10413them in the first place? And what is a service anyway?
8451a568 10414
0adfe95a
LC
10415@menu
10416* Service Composition:: The model for composing services.
10417* Service Types and Services:: Types and services.
10418* Service Reference:: API reference.
dd17bc38 10419* Shepherd Services:: A particular type of service.
0adfe95a
LC
10420@end menu
10421
10422@node Service Composition
10423@subsubsection Service Composition
10424
10425@cindex services
10426@cindex daemons
10427Here we define a @dfn{service} as, broadly, something that extends the
1068f26b 10428functionality of the operating system. Often a service is a process---a
0adfe95a
LC
10429@dfn{daemon}---started when the system boots: a secure shell server, a
10430Web server, the Guix build daemon, etc. Sometimes a service is a daemon
10431whose execution can be triggered by another daemon---e.g., an FTP server
10432started by @command{inetd} or a D-Bus service activated by
10433@command{dbus-daemon}. Occasionally, a service does not map to a
10434daemon. For instance, the ``account'' service collects user accounts
10435and makes sure they exist when the system runs; the ``udev'' service
10436collects device management rules and makes them available to the eudev
1068f26b
AE
10437daemon; the @file{/etc} service populates the @file{/etc} directory
10438of the system.
0adfe95a 10439
d6c3267a 10440@cindex service extensions
0adfe95a 10441GuixSD services are connected by @dfn{extensions}. For instance, the
1068f26b 10442secure shell service @emph{extends} the Shepherd---the GuixSD
dd17bc38
AK
10443initialization system, running as PID@tie{}1---by giving it the command
10444lines to start and stop the secure shell daemon (@pxref{Networking
10445Services, @code{lsh-service}}); the UPower service extends the D-Bus
10446service by passing it its @file{.service} specification, and extends the
10447udev service by passing it device management rules (@pxref{Desktop
10448Services, @code{upower-service}}); the Guix daemon service extends the
10449Shepherd by passing it the command lines to start and stop the daemon,
10450and extends the account service by passing it a list of required build
10451user accounts (@pxref{Base Services}).
0adfe95a
LC
10452
10453All in all, services and their ``extends'' relations form a directed
10454acyclic graph (DAG). If we represent services as boxes and extensions
10455as arrows, a typical system might provide something like this:
10456
10457@image{images/service-graph,,5in,Typical service extension graph.}
10458
d62e201c
LC
10459@cindex system service
10460At the bottom, we see the @dfn{system service}, which produces the
10461directory containing everything to run and boot the system, as returned
10462by the @command{guix system build} command. @xref{Service Reference},
10463to learn about the other service types shown here.
d6c3267a
LC
10464@xref{system-extension-graph, the @command{guix system extension-graph}
10465command}, for information on how to generate this representation for a
10466particular operating system definition.
0adfe95a
LC
10467
10468@cindex service types
10469Technically, developers can define @dfn{service types} to express these
10470relations. There can be any number of services of a given type on the
10471system---for instance, a system running two instances of the GNU secure
10472shell server (lsh) has two instances of @var{lsh-service-type}, with
10473different parameters.
10474
10475The following section describes the programming interface for service
10476types and services.
10477
10478@node Service Types and Services
10479@subsubsection Service Types and Services
10480
10481A @dfn{service type} is a node in the DAG described above. Let us start
10482with a simple example, the service type for the Guix build daemon
10483(@pxref{Invoking guix-daemon}):
10484
10485@example
10486(define guix-service-type
10487 (service-type
10488 (name 'guix)
10489 (extensions
d4053c71 10490 (list (service-extension shepherd-root-service-type guix-shepherd-service)
0adfe95a
LC
10491 (service-extension account-service-type guix-accounts)
10492 (service-extension activation-service-type guix-activation)))))
10493@end example
8451a568 10494
cf4a9129 10495@noindent
1068f26b 10496It defines two things:
0adfe95a
LC
10497
10498@enumerate
10499@item
10500A name, whose sole purpose is to make inspection and debugging easier.
10501
10502@item
10503A list of @dfn{service extensions}, where each extension designates the
1068f26b
AE
10504target service type and a procedure that, given the parameters of the
10505service, returns a list of objects to extend the service of that type.
0adfe95a
LC
10506
10507Every service type has at least one service extension. The only
10508exception is the @dfn{boot service type}, which is the ultimate service.
10509@end enumerate
10510
10511In this example, @var{guix-service-type} extends three services:
10512
10513@table @var
d4053c71
AK
10514@item shepherd-root-service-type
10515The @var{guix-shepherd-service} procedure defines how the Shepherd
10516service is extended. Namely, it returns a @code{<shepherd-service>}
10517object that defines how @command{guix-daemon} is started and stopped
10518(@pxref{Shepherd Services}).
0adfe95a
LC
10519
10520@item account-service-type
10521This extension for this service is computed by @var{guix-accounts},
10522which returns a list of @code{user-group} and @code{user-account}
10523objects representing the build user accounts (@pxref{Invoking
10524guix-daemon}).
10525
10526@item activation-service-type
10527Here @var{guix-activation} is a procedure that returns a gexp, which is
10528a code snippet to run at ``activation time''---e.g., when the service is
10529booted.
10530@end table
10531
10532A service of this type is instantiated like this:
10533
10534@example
10535(service guix-service-type
10536 (guix-configuration
10537 (build-accounts 5)
10538 (use-substitutes? #f)))
10539@end example
10540
10541The second argument to the @code{service} form is a value representing
10542the parameters of this specific service instance.
10543@xref{guix-configuration-type, @code{guix-configuration}}, for
10544information about the @code{guix-configuration} data type.
10545
10546@var{guix-service-type} is quite simple because it extends other
10547services but is not extensible itself.
10548
10549@c @subsubsubsection Extensible Service Types
10550
10551The service type for an @emph{extensible} service looks like this:
10552
10553@example
10554(define udev-service-type
10555 (service-type (name 'udev)
10556 (extensions
d4053c71
AK
10557 (list (service-extension shepherd-root-service-type
10558 udev-shepherd-service)))
0adfe95a
LC
10559
10560 (compose concatenate) ;concatenate the list of rules
10561 (extend (lambda (config rules)
10562 (match config
10563 (($ <udev-configuration> udev initial-rules)
10564 (udev-configuration
10565 (udev udev) ;the udev package to use
10566 (rules (append initial-rules rules)))))))))
10567@end example
10568
10569This is the service type for the
10570@uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device
10571management daemon}. Compared to the previous example, in addition to an
d4053c71 10572extension of @var{shepherd-root-service-type}, we see two new fields:
0adfe95a
LC
10573
10574@table @code
10575@item compose
10576This is the procedure to @dfn{compose} the list of extensions to
10577services of this type.
10578
10579Services can extend the udev service by passing it lists of rules; we
10580compose those extensions simply by concatenating them.
10581
10582@item extend
1068f26b 10583This procedure defines how the value of the service is @dfn{extended} with
0adfe95a
LC
10584the composition of the extensions.
10585
10586Udev extensions are composed into a list of rules, but the udev service
10587value is itself a @code{<udev-configuration>} record. So here, we
a40424bd 10588extend that record by appending the list of rules it contains to the
0adfe95a
LC
10589list of contributed rules.
10590@end table
10591
10592There can be only one instance of an extensible service type such as
10593@var{udev-service-type}. If there were more, the
10594@code{service-extension} specifications would be ambiguous.
10595
10596Still here? The next section provides a reference of the programming
10597interface for services.
10598
10599@node Service Reference
10600@subsubsection Service Reference
10601
10602We have seen an overview of service types (@pxref{Service Types and
10603Services}). This section provides a reference on how to manipulate
10604services and service types. This interface is provided by the
10605@code{(gnu services)} module.
10606
10607@deffn {Scheme Procedure} service @var{type} @var{value}
10608Return a new service of @var{type}, a @code{<service-type>} object (see
10609below.) @var{value} can be any object; it represents the parameters of
10610this particular service instance.
10611@end deffn
10612
10613@deffn {Scheme Procedure} service? @var{obj}
10614Return true if @var{obj} is a service.
10615@end deffn
8451a568 10616
0adfe95a
LC
10617@deffn {Scheme Procedure} service-kind @var{service}
10618Return the type of @var{service}---i.e., a @code{<service-type>} object.
10619@end deffn
10620
10621@deffn {Scheme Procedure} service-parameters @var{service}
10622Return the value associated with @var{service}. It represents its
10623parameters.
10624@end deffn
10625
10626Here is an example of how a service is created and manipulated:
10627
10628@example
10629(define s
10630 (service nginx-service-type
10631 (nginx-configuration
10632 (nginx nginx)
10633 (log-directory log-directory)
10634 (run-directory run-directory)
10635 (file config-file))))
10636
10637(service? s)
10638@result{} #t
10639
10640(eq? (service-kind s) nginx-service-type)
10641@result{} #t
10642@end example
10643
cd6f6c22
LC
10644The @code{modify-services} form provides a handy way to change the
10645parameters of some of the services of a list such as
4d343a14
CM
10646@var{%base-services} (@pxref{Base Services, @code{%base-services}}). It
10647evalutes to a list of services. Of course, you could always use
10648standard list combinators such as @code{map} and @code{fold} to do that
10649(@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual});
10650@code{modify-services} simply provides a more concise form for this
10651common pattern.
cd6f6c22
LC
10652
10653@deffn {Scheme Syntax} modify-services @var{services} @
10654 (@var{type} @var{variable} => @var{body}) @dots{}
10655
10656Modify the services listed in @var{services} according to the given
10657clauses. Each clause has the form:
10658
10659@example
10660(@var{type} @var{variable} => @var{body})
10661@end example
10662
4d343a14
CM
10663where @var{type} is a service type---e.g.,
10664@code{guix-service-type}---and @var{variable} is an identifier that is
10665bound within the @var{body} to the service parameters---e.g., a
10666@code{guix-configuration} instance---of the original service of that
10667@var{type}.
cd6f6c22 10668
4d343a14
CM
10669The @var{body} should evaluate to the new service parameters, which will
10670be used to configure the new service. This new service will replace the
10671original in the resulting list. Because a service's service parameters
10672are created using @code{define-record-type*}, you can write a succint
10673@var{body} that evaluates to the new service parameters by using the
10674@code{inherit} feature that @code{define-record-type*} provides.
10675
b53daad0 10676@xref{Using the Configuration System}, for example usage.
cd6f6c22 10677
cd6f6c22
LC
10678@end deffn
10679
10680Next comes the programming interface for service types. This is
10681something you want to know when writing new service definitions, but not
10682necessarily when simply looking for ways to customize your
10683@code{operating-system} declaration.
10684
0adfe95a
LC
10685@deftp {Data Type} service-type
10686@cindex service type
10687This is the representation of a @dfn{service type} (@pxref{Service Types
10688and Services}).
10689
10690@table @asis
10691@item @code{name}
10692This is a symbol, used only to simplify inspection and debugging.
10693
10694@item @code{extensions}
1068f26b 10695A non-empty list of @code{<service-extension>} objects (see below).
0adfe95a
LC
10696
10697@item @code{compose} (default: @code{#f})
10698If this is @code{#f}, then the service type denotes services that cannot
10699be extended---i.e., services that do not receive ``values'' from other
10700services.
10701
10702Otherwise, it must be a one-argument procedure. The procedure is called
10703by @code{fold-services} and is passed a list of values collected from
10704extensions. It must return a value that is a valid parameter value for
10705the service instance.
10706
10707@item @code{extend} (default: @code{#f})
10708If this is @code{#f}, services of this type cannot be extended.
10709
10710Otherwise, it must be a two-argument procedure: @code{fold-services}
1068f26b 10711calls it, passing it the initial value of the service as the first argument
0adfe95a
LC
10712and the result of applying @code{compose} to the extension values as the
10713second argument.
10714@end table
10715
10716@xref{Service Types and Services}, for examples.
10717@end deftp
10718
10719@deffn {Scheme Procedure} service-extension @var{target-type} @
10720 @var{compute}
10721Return a new extension for services of type @var{target-type}.
10722@var{compute} must be a one-argument procedure: @code{fold-services}
10723calls it, passing it the value associated with the service that provides
10724the extension; it must return a valid value for the target service.
10725@end deffn
10726
10727@deffn {Scheme Procedure} service-extension? @var{obj}
10728Return true if @var{obj} is a service extension.
10729@end deffn
10730
10731At the core of the service abstraction lies the @code{fold-services}
10732procedure, which is responsible for ``compiling'' a list of services
d62e201c
LC
10733down to a single directory that contains everything needed to boot and
10734run the system---the directory shown by the @command{guix system build}
10735command (@pxref{Invoking guix system}). In essence, it propagates
10736service extensions down the service graph, updating each node parameters
10737on the way, until it reaches the root node.
0adfe95a
LC
10738
10739@deffn {Scheme Procedure} fold-services @var{services} @
d62e201c 10740 [#:target-type @var{system-service-type}]
0adfe95a
LC
10741Fold @var{services} by propagating their extensions down to the root of
10742type @var{target-type}; return the root service adjusted accordingly.
10743@end deffn
10744
10745Lastly, the @code{(gnu services)} module also defines several essential
10746service types, some of which are listed below.
10747
d62e201c
LC
10748@defvr {Scheme Variable} system-service-type
10749This is the root of the service graph. It produces the system directory
10750as returned by the @command{guix system build} command.
10751@end defvr
10752
0adfe95a 10753@defvr {Scheme Variable} boot-service-type
d62e201c
LC
10754The type of the ``boot service'', which produces the @dfn{boot script}.
10755The boot script is what the initial RAM disk runs when booting.
0adfe95a
LC
10756@end defvr
10757
10758@defvr {Scheme Variable} etc-service-type
10759The type of the @file{/etc} service. This service can be extended by
10760passing it name/file tuples such as:
10761
10762@example
10763(list `("issue" ,(plain-file "issue" "Welcome!\n")))
10764@end example
10765
10766In this example, the effect would be to add an @file{/etc/issue} file
10767pointing to the given file.
10768@end defvr
10769
10770@defvr {Scheme Variable} setuid-program-service-type
10771Type for the ``setuid-program service''. This service collects lists of
10772executable file names, passed as gexps, and adds them to the set of
10773setuid-root programs on the system (@pxref{Setuid Programs}).
10774@end defvr
10775
af4c3fd5
LC
10776@defvr {Scheme Variable} profile-service-type
10777Type of the service that populates the @dfn{system profile}---i.e., the
10778programs under @file{/run/current-system/profile}. Other services can
10779extend it by passing it lists of packages to add to the system profile.
10780@end defvr
10781
0adfe95a 10782
dd17bc38
AK
10783@node Shepherd Services
10784@subsubsection Shepherd Services
0adfe95a
LC
10785
10786@cindex PID 1
10787@cindex init system
a40424bd
CM
10788The @code{(gnu services shepherd)} module provides a way to define
10789services managed by the GNU@tie{}Shepherd, which is the GuixSD
10790initialization system---the first process that is started when the
1068f26b
AE
10791system boots, also known as PID@tie{}1
10792(@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}).
6f305ea5 10793
dd17bc38
AK
10794Services in the Shepherd can depend on each other. For instance, the
10795SSH daemon may need to be started after the syslog daemon has been
10796started, which in turn can only happen once all the file systems have
10797been mounted. The simple operating system defined earlier (@pxref{Using
10798the Configuration System}) results in a service graph like this:
6f305ea5 10799
710fa231 10800@image{images/shepherd-graph,,5in,Typical shepherd service graph.}
6f305ea5
LC
10801
10802You can actually generate such a graph for any operating system
710fa231
AK
10803definition using the @command{guix system shepherd-graph} command
10804(@pxref{system-shepherd-graph, @command{guix system shepherd-graph}}).
6f305ea5 10805
d4053c71
AK
10806The @var{%shepherd-root-service} is a service object representing
10807PID@tie{}1, of type @var{shepherd-root-service-type}; it can be extended
10808by passing it lists of @code{<shepherd-service>} objects.
0adfe95a 10809
d4053c71 10810@deftp {Data Type} shepherd-service
dd17bc38 10811The data type representing a service managed by the Shepherd.
0adfe95a
LC
10812
10813@table @asis
10814@item @code{provision}
10815This is a list of symbols denoting what the service provides.
10816
dd17bc38
AK
10817These are the names that may be passed to @command{herd start},
10818@command{herd status}, and similar commands (@pxref{Invoking herd,,,
10819shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the
10820@code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details.
0adfe95a
LC
10821
10822@item @code{requirements} (default: @code{'()})
dd17bc38 10823List of symbols denoting the Shepherd services this one depends on.
0adfe95a
LC
10824
10825@item @code{respawn?} (default: @code{#t})
10826Whether to restart the service when it stops, for instance when the
10827underlying process dies.
10828
10829@item @code{start}
10830@itemx @code{stop} (default: @code{#~(const #f)})
dd17bc38
AK
10831The @code{start} and @code{stop} fields refer to the Shepherd's
10832facilities to start and stop processes (@pxref{Service De- and
10833Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as
10834G-expressions that get expanded in the Shepherd configuration file
10835(@pxref{G-Expressions}).
0adfe95a
LC
10836
10837@item @code{documentation}
10838A documentation string, as shown when running:
10839
10840@example
dd17bc38 10841herd doc @var{service-name}
0adfe95a
LC
10842@end example
10843
10844where @var{service-name} is one of the symbols in @var{provision}
dd17bc38 10845(@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}).
fae685b9
LC
10846
10847@item @code{modules} (default: @var{%default-modules})
10848This is the list of modules that must be in scope when @code{start} and
10849@code{stop} are evaluated.
10850
10851@item @code{imported-modules} (default: @var{%default-imported-modules})
10852This is the list of modules to import in the execution environment of
dd17bc38 10853the Shepherd.
fae685b9 10854
0adfe95a
LC
10855@end table
10856@end deftp
10857
d4053c71 10858@defvr {Scheme Variable} shepherd-root-service-type
dd17bc38 10859The service type for the Shepherd ``root service''---i.e., PID@tie{}1.
0adfe95a
LC
10860
10861This is the service type that extensions target when they want to create
dd17bc38 10862shepherd services (@pxref{Service Types and Services}, for an example).
d4053c71 10863Each extension must pass a list of @code{<shepherd-service>}.
0adfe95a
LC
10864@end defvr
10865
d4053c71 10866@defvr {Scheme Variable} %shepherd-root-service
0adfe95a
LC
10867This service represents PID@tie{}1.
10868@end defvr
8451a568 10869
8451a568 10870
cf4a9129
LC
10871@node Installing Debugging Files
10872@section Installing Debugging Files
8451a568 10873
cf4a9129
LC
10874@cindex debugging files
10875Program binaries, as produced by the GCC compilers for instance, are
10876typically written in the ELF format, with a section containing
10877@dfn{debugging information}. Debugging information is what allows the
10878debugger, GDB, to map binary code to source code; it is required to
10879debug a compiled program in good conditions.
8451a568 10880
cf4a9129
LC
10881The problem with debugging information is that is takes up a fair amount
10882of disk space. For example, debugging information for the GNU C Library
10883weighs in at more than 60 MiB. Thus, as a user, keeping all the
10884debugging info of all the installed programs is usually not an option.
10885Yet, space savings should not come at the cost of an impediment to
10886debugging---especially in the GNU system, which should make it easier
10887for users to exert their computing freedom (@pxref{GNU Distribution}).
8451a568 10888
cf4a9129
LC
10889Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a
10890mechanism that allows users to get the best of both worlds: debugging
10891information can be stripped from the binaries and stored in separate
10892files. GDB is then able to load debugging information from those files,
10893when they are available (@pxref{Separate Debug Files,,, gdb, Debugging
10894with GDB}).
8451a568 10895
cf4a9129
LC
10896The GNU distribution takes advantage of this by storing debugging
10897information in the @code{lib/debug} sub-directory of a separate package
10898output unimaginatively called @code{debug} (@pxref{Packages with
10899Multiple Outputs}). Users can choose to install the @code{debug} output
10900of a package when they need it. For instance, the following command
10901installs the debugging information for the GNU C Library and for GNU
10902Guile:
8451a568
LC
10903
10904@example
cf4a9129 10905guix package -i glibc:debug guile:debug
8451a568
LC
10906@end example
10907
cf4a9129
LC
10908GDB must then be told to look for debug files in the user's profile, by
10909setting the @code{debug-file-directory} variable (consider setting it
10910from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with
10911GDB}):
8451a568 10912
cf4a9129
LC
10913@example
10914(gdb) set debug-file-directory ~/.guix-profile/lib/debug
10915@end example
8451a568 10916
cf4a9129
LC
10917From there on, GDB will pick up debugging information from the
10918@code{.debug} files under @file{~/.guix-profile/lib/debug}.
8451a568 10919
cf4a9129
LC
10920In addition, you will most likely want GDB to be able to show the source
10921code being debugged. To do that, you will have to unpack the source
10922code of the package of interest (obtained with @code{guix build
10923--source}, @pxref{Invoking guix build}), and to point GDB to that source
10924directory using the @code{directory} command (@pxref{Source Path,
10925@code{directory},, gdb, Debugging with GDB}).
8451a568 10926
cf4a9129
LC
10927@c XXX: keep me up-to-date
10928The @code{debug} output mechanism in Guix is implemented by the
10929@code{gnu-build-system} (@pxref{Build Systems}). Currently, it is
1068f26b
AE
10930opt-in---debugging information is available only for the packages
10931with definitions explicitly declaring a @code{debug} output. This may be
10932changed to opt-out in the future if our build farm servers can handle
cf4a9129
LC
10933the load. To check whether a package has a @code{debug} output, use
10934@command{guix package --list-available} (@pxref{Invoking guix package}).
8451a568 10935
8451a568 10936
05962f29
LC
10937@node Security Updates
10938@section Security Updates
10939
09866b39
LC
10940@cindex security updates
10941@cindex security vulnerabilities
10942Occasionally, important security vulnerabilities are discovered in software
10943packages and must be patched. Guix developers try hard to keep track of
10944known vulnerabilities and to apply fixes as soon as possible in the
10945@code{master} branch of Guix (we do not yet provide a ``stable'' branch
10946containing only security updates.) The @command{guix lint} tool helps
10947developers find out about vulnerable versions of software packages in the
10948distribution:
10949
10950@smallexample
10951$ guix lint -c cve
10952gnu/packages/base.scm:652:2: glibc-2.21: probably vulnerable to CVE-2015-1781, CVE-2015-7547
10953gnu/packages/gcc.scm:334:2: gcc-4.9.3: probably vulnerable to CVE-2015-5276
10954gnu/packages/image.scm:312:2: openjpeg-2.1.0: probably vulnerable to CVE-2016-1923, CVE-2016-1924
10955@dots{}
10956@end smallexample
10957
10958@xref{Invoking guix lint}, for more information.
10959
843858b8 10960@quotation Note
09866b39
LC
10961As of version @value{VERSION}, the feature described below is considered
10962``beta''.
843858b8 10963@end quotation
05962f29 10964
09866b39 10965Guix follows a functional
05962f29
LC
10966package management discipline (@pxref{Introduction}), which implies
10967that, when a package is changed, @emph{every package that depends on it}
10968must be rebuilt. This can significantly slow down the deployment of
10969fixes in core packages such as libc or Bash, since basically the whole
10970distribution would need to be rebuilt. Using pre-built binaries helps
10971(@pxref{Substitutes}), but deployment may still take more time than
10972desired.
10973
10974@cindex grafts
1068f26b 10975To address this, Guix implements @dfn{grafts}, a mechanism that allows
05962f29
LC
10976for fast deployment of critical updates without the costs associated
10977with a whole-distribution rebuild. The idea is to rebuild only the
10978package that needs to be patched, and then to ``graft'' it onto packages
10979explicitly installed by the user and that were previously referring to
10980the original package. The cost of grafting is typically very low, and
10981order of magnitudes lower than a full rebuild of the dependency chain.
10982
10983@cindex replacements of packages, for grafts
10984For instance, suppose a security update needs to be applied to Bash.
10985Guix developers will provide a package definition for the ``fixed''
10986Bash, say @var{bash-fixed}, in the usual way (@pxref{Defining
10987Packages}). Then, the original package definition is augmented with a
10988@code{replacement} field pointing to the package containing the bug fix:
10989
10990@example
10991(define bash
10992 (package
10993 (name "bash")
10994 ;; @dots{}
10995 (replacement bash-fixed)))
10996@end example
10997
c22a1324
LC
10998From there on, any package depending directly or indirectly on Bash---as
10999reported by @command{guix gc --requisites} (@pxref{Invoking guix
11000gc})---that is installed is automatically ``rewritten'' to refer to
05962f29 11001@var{bash-fixed} instead of @var{bash}. This grafting process takes
1068f26b 11002time proportional to the size of the package, usually less than a
c22a1324
LC
11003minute for an ``average'' package on a recent machine. Grafting is
11004recursive: when an indirect dependency requires grafting, then grafting
11005``propagates'' up to the package that the user is installing.
05962f29
LC
11006
11007Currently, the graft and the package it replaces (@var{bash-fixed} and
11008@var{bash} in the example above) must have the exact same @code{name}
11009and @code{version} fields. This restriction mostly comes from the fact
11010that grafting works by patching files, including binary files, directly.
11011Other restrictions may apply: for instance, when adding a graft to a
11012package providing a shared library, the original shared library and its
11013replacement must have the same @code{SONAME} and be binary-compatible.
11014
59a4dd50
LC
11015The @option{--no-grafts} command-line option allows you to forcefully
11016avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}).
11017Thus, the command:
11018
11019@example
11020guix build bash --no-grafts
11021@end example
11022
11023@noindent
11024returns the store file name of the original Bash, whereas:
11025
11026@example
11027guix build bash
11028@end example
11029
11030@noindent
11031returns the store file name of the ``fixed'', replacement Bash. This
11032allows you to distinguish between the two variants of Bash.
11033
11034To verify which Bash your whole profile refers to, you can run
11035(@pxref{Invoking guix gc}):
11036
11037@example
11038guix gc -R `readlink -f ~/.guix-profile` | grep bash
11039@end example
11040
11041@noindent
11042@dots{} and compare the store file names that you get with those above.
11043Likewise for a complete GuixSD system generation:
11044
11045@example
11046guix gc -R `guix system build my-config.scm` | grep bash
11047@end example
11048
11049Lastly, to check which Bash running processes are using, you can use the
11050@command{lsof} command:
11051
11052@example
11053lsof | grep /gnu/store/.*bash
11054@end example
11055
05962f29 11056
cf4a9129
LC
11057@node Package Modules
11058@section Package Modules
8451a568 11059
cf4a9129
LC
11060From a programming viewpoint, the package definitions of the
11061GNU distribution are provided by Guile modules in the @code{(gnu packages
11062@dots{})} name space@footnote{Note that packages under the @code{(gnu
11063packages @dots{})} module name space are not necessarily ``GNU
11064packages''. This module naming scheme follows the usual Guile module
11065naming convention: @code{gnu} means that these modules are distributed
11066as part of the GNU system, and @code{packages} identifies modules that
11067define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile
11068Reference Manual}). For instance, the @code{(gnu packages emacs)}
11069module exports a variable named @code{emacs}, which is bound to a
11070@code{<package>} object (@pxref{Defining Packages}).
113daf62 11071
300868ba 11072The @code{(gnu packages @dots{})} module name space is
cf4a9129
LC
11073automatically scanned for packages by the command-line tools. For
11074instance, when running @code{guix package -i emacs}, all the @code{(gnu
11075packages @dots{})} modules are scanned until one that exports a package
11076object whose name is @code{emacs} is found. This package search
11077facility is implemented in the @code{(gnu packages)} module.
113daf62 11078
300868ba 11079@cindex customization, of packages
8689901f 11080@cindex package module search path
cf4a9129 11081Users can store package definitions in modules with different
60142854 11082names---e.g., @code{(my-packages emacs)}@footnote{Note that the file
c95ded7e
LC
11083name and module name must match. For instance, the @code{(my-packages
11084emacs)} module must be stored in a @file{my-packages/emacs.scm} file
11085relative to the load path specified with @option{--load-path} or
11086@code{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,,
11087guile, GNU Guile Reference Manual}, for details.}. These package definitions
1068f26b
AE
11088will not be visible by default. Users can invoke commands such as
11089@command{guix package} and @command{guix build} with the
c95ded7e
LC
11090@code{-e} option so that they know where to find the package. Better
11091yet, they can use the
300868ba 11092@code{-L} option of these commands to make those modules visible
8689901f
LC
11093(@pxref{Invoking guix build, @code{--load-path}}), or define the
11094@code{GUIX_PACKAGE_PATH} environment variable. This environment
11095variable makes it easy to extend or customize the distribution and is
11096honored by all the user interfaces.
11097
11098@defvr {Environment Variable} GUIX_PACKAGE_PATH
1068f26b
AE
11099This is a colon-separated list of directories to search for additional
11100package modules. Directories listed in this variable take precedence
11101over the own modules of the distribution.
8689901f 11102@end defvr
ef5dd60a 11103
cf4a9129
LC
11104The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}:
11105each package is built based solely on other packages in the
11106distribution. The root of this dependency graph is a small set of
11107@dfn{bootstrap binaries}, provided by the @code{(gnu packages
11108bootstrap)} module. For more information on bootstrapping,
081145cf 11109@pxref{Bootstrapping}.
ef5dd60a 11110
cf4a9129
LC
11111@node Packaging Guidelines
11112@section Packaging Guidelines
ef5dd60a 11113
cf4a9129
LC
11114The GNU distribution is nascent and may well lack some of your favorite
11115packages. This section describes how you can help make the distribution
11116grow. @xref{Contributing}, for additional information on how you can
11117help.
ef5dd60a 11118
cf4a9129
LC
11119Free software packages are usually distributed in the form of
11120@dfn{source code tarballs}---typically @file{tar.gz} files that contain
11121all the source files. Adding a package to the distribution means
11122essentially two things: adding a @dfn{recipe} that describes how to
11123build the package, including a list of other packages required to build
f97c9175 11124it, and adding @dfn{package metadata} along with that recipe, such as a
cf4a9129 11125description and licensing information.
ef5dd60a 11126
cf4a9129
LC
11127In Guix all this information is embodied in @dfn{package definitions}.
11128Package definitions provide a high-level view of the package. They are
11129written using the syntax of the Scheme programming language; in fact,
11130for each package we define a variable bound to the package definition,
11131and export that variable from a module (@pxref{Package Modules}).
11132However, in-depth Scheme knowledge is @emph{not} a prerequisite for
11133creating packages. For more information on package definitions,
081145cf 11134@pxref{Defining Packages}.
ef5dd60a 11135
cf4a9129
LC
11136Once a package definition is in place, stored in a file in the Guix
11137source tree, it can be tested using the @command{guix build} command
11138(@pxref{Invoking guix build}). For example, assuming the new package is
c71979f4
LC
11139called @code{gnew}, you may run this command from the Guix build tree
11140(@pxref{Running Guix Before It Is Installed}):
ef5dd60a
LC
11141
11142@example
cf4a9129 11143./pre-inst-env guix build gnew --keep-failed
ef5dd60a 11144@end example
ef5dd60a 11145
cf4a9129
LC
11146Using @code{--keep-failed} makes it easier to debug build failures since
11147it provides access to the failed build tree. Another useful
11148command-line option when debugging is @code{--log-file}, to access the
11149build log.
ef5dd60a 11150
cf4a9129
LC
11151If the package is unknown to the @command{guix} command, it may be that
11152the source file contains a syntax error, or lacks a @code{define-public}
11153clause to export the package variable. To figure it out, you may load
11154the module from Guile to get more information about the actual error:
ef5dd60a 11155
cf4a9129
LC
11156@example
11157./pre-inst-env guile -c '(use-modules (gnu packages gnew))'
11158@end example
ef5dd60a 11159
cf4a9129
LC
11160Once your package builds correctly, please send us a patch
11161(@pxref{Contributing}). Well, if you need help, we will be happy to
11162help you too. Once the patch is committed in the Guix repository, the
11163new package automatically gets built on the supported platforms by
2b1cee21 11164@url{http://hydra.gnu.org/jobset/gnu/master, our continuous integration
cf4a9129 11165system}.
ef5dd60a 11166
cf4a9129
LC
11167@cindex substituter
11168Users can obtain the new package definition simply by running
11169@command{guix pull} (@pxref{Invoking guix pull}). When
11170@code{hydra.gnu.org} is done building the package, installing the
11171package automatically downloads binaries from there
11172(@pxref{Substitutes}). The only place where human intervention is
11173needed is to review and apply the patch.
ef5dd60a 11174
ef5dd60a 11175
cf4a9129 11176@menu
ec0339cd
LC
11177* Software Freedom:: What may go into the distribution.
11178* Package Naming:: What's in a name?
11179* Version Numbers:: When the name is not enough.
cbd02397 11180* Synopses and Descriptions:: Helping users find the right package.
ec0339cd
LC
11181* Python Modules:: Taming the snake.
11182* Perl Modules:: Little pearls.
e1c963bf 11183* Java Packages:: Coffee break.
ec0339cd 11184* Fonts:: Fond of fonts.
cf4a9129 11185@end menu
ef5dd60a 11186
cf4a9129
LC
11187@node Software Freedom
11188@subsection Software Freedom
ef5dd60a 11189
cf4a9129 11190@c Adapted from http://www.gnu.org/philosophy/philosophy.html.
c11a6eb1 11191
cf4a9129
LC
11192The GNU operating system has been developed so that users can have
11193freedom in their computing. GNU is @dfn{free software}, meaning that
11194users have the @url{http://www.gnu.org/philosophy/free-sw.html,four
11195essential freedoms}: to run the program, to study and change the program
11196in source code form, to redistribute exact copies, and to distribute
11197modified versions. Packages found in the GNU distribution provide only
11198software that conveys these four freedoms.
c11a6eb1 11199
cf4a9129
LC
11200In addition, the GNU distribution follow the
11201@url{http://www.gnu.org/distros/free-system-distribution-guidelines.html,free
11202software distribution guidelines}. Among other things, these guidelines
11203reject non-free firmware, recommendations of non-free software, and
11204discuss ways to deal with trademarks and patents.
ef5dd60a 11205
1068f26b
AE
11206Some otherwise free upstream package sources contain a small and optional
11207subset that violates the above guidelines, for instance because this subset
11208is itself non-free code. When that happens, the offending items are removed
11209with appropriate patches or code snippets in the @code{origin} form of the
11210package (@pxref{Defining Packages}). This way, @code{guix
cf4a9129
LC
11211build --source} returns the ``freed'' source rather than the unmodified
11212upstream source.
ef5dd60a 11213
ef5dd60a 11214
cf4a9129
LC
11215@node Package Naming
11216@subsection Package Naming
ef5dd60a 11217
cf4a9129
LC
11218A package has actually two names associated with it:
11219First, there is the name of the @emph{Scheme variable}, the one following
11220@code{define-public}. By this name, the package can be made known in the
11221Scheme code, for instance as input to another package. Second, there is
11222the string in the @code{name} field of a package definition. This name
11223is used by package management commands such as
11224@command{guix package} and @command{guix build}.
ef5dd60a 11225
cf4a9129
LC
11226Both are usually the same and correspond to the lowercase conversion of
11227the project name chosen upstream, with underscores replaced with
11228hyphens. For instance, GNUnet is available as @code{gnunet}, and
11229SDL_net as @code{sdl-net}.
927097ef 11230
cf4a9129 11231We do not add @code{lib} prefixes for library packages, unless these are
081145cf 11232already part of the official project name. But @pxref{Python
cf4a9129
LC
11233Modules} and @ref{Perl Modules} for special rules concerning modules for
11234the Python and Perl languages.
927097ef 11235
1b366ee4 11236Font package names are handled differently, @pxref{Fonts}.
7fec52b7 11237
ef5dd60a 11238
cf4a9129
LC
11239@node Version Numbers
11240@subsection Version Numbers
ef5dd60a 11241
cf4a9129
LC
11242We usually package only the latest version of a given free software
11243project. But sometimes, for instance for incompatible library versions,
11244two (or more) versions of the same package are needed. These require
11245different Scheme variable names. We use the name as defined
11246in @ref{Package Naming}
11247for the most recent version; previous versions use the same name, suffixed
11248by @code{-} and the smallest prefix of the version number that may
11249distinguish the two versions.
ef5dd60a 11250
cf4a9129
LC
11251The name inside the package definition is the same for all versions of a
11252package and does not contain any version number.
ef5dd60a 11253
cf4a9129 11254For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:
ef5dd60a 11255
cf4a9129
LC
11256@example
11257(define-public gtk+
11258 (package
17d8e33f
ML
11259 (name "gtk+")
11260 (version "3.9.12")
11261 ...))
cf4a9129
LC
11262(define-public gtk+-2
11263 (package
17d8e33f
ML
11264 (name "gtk+")
11265 (version "2.24.20")
11266 ...))
cf4a9129
LC
11267@end example
11268If we also wanted GTK+ 3.8.2, this would be packaged as
11269@example
11270(define-public gtk+-3.8
11271 (package
17d8e33f
ML
11272 (name "gtk+")
11273 (version "3.8.2")
11274 ...))
cf4a9129 11275@end example
ef5dd60a 11276
880d647d
LC
11277@c See <https://lists.gnu.org/archive/html/guix-devel/2016-01/msg00425.html>,
11278@c for a discussion of what follows.
11279@cindex version number, for VCS snapshots
11280Occasionally, we package snapshots of upstream's version control system
11281(VCS) instead of formal releases. This should remain exceptional,
11282because it is up to upstream developers to clarify what the stable
11283release is. Yet, it is sometimes necessary. So, what should we put in
11284the @code{version} field?
11285
11286Clearly, we need to make the commit identifier of the VCS snapshot
11287visible in the version string, but we also need to make sure that the
11288version string is monotonically increasing so that @command{guix package
11289--upgrade} can determine which version is newer. Since commit
11290identifiers, notably with Git, are not monotonically increasing, we add
11291a revision number that we increase each time we upgrade to a newer
11292snapshot. The resulting version string looks like this:
11293
11294@example
112952.0.11-3.cabba9e
11296 ^ ^ ^
11297 | | `-- upstream commit ID
11298 | |
11299 | `--- Guix package revision
11300 |
11301latest upstream version
11302@end example
11303
11304It is a good idea to strip commit identifiers in the @code{version}
11305field to, say, 7 digits. It avoids an aesthetic annoyance (assuming
11306aesthetics have a role to play here) as well as problems related to OS
11307limits such as the maximum shebang length (127 bytes for the Linux
11308kernel.) It is best to use the full commit identifiers in
561360a5
LC
11309@code{origin}s, though, to avoid ambiguities. A typical package
11310definition may look like this:
11311
11312@example
11313(define my-package
11314 (let ((commit "c3f29bc928d5900971f65965feaae59e1272a3f7"))
11315 (package
11316 (version (string-append "0.9-1."
11317 (string-take commit 7)))
11318 (source (origin
11319 (method git-fetch)
11320 (uri (git-reference
11321 (url "git://example.org/my-package.git")
11322 (commit commit)))
11323 (sha256 (base32 "1mbikn@dots{}"))
11324 (file-name (string-append "my-package-" version
11325 "-checkout"))))
11326 ;; @dots{}
11327 )))
11328@end example
880d647d 11329
cbd02397
LC
11330@node Synopses and Descriptions
11331@subsection Synopses and Descriptions
11332
11333As we have seen before, each package in GNU@tie{}Guix includes a
11334synopsis and a description (@pxref{Defining Packages}). Synopses and
11335descriptions are important: They are what @command{guix package
11336--search} searches, and a crucial piece of information to help users
11337determine whether a given package suits their needs. Consequently,
11338packagers should pay attention to what goes into them.
11339
11340Synopses must start with a capital letter and must not end with a
11341period. They must not start with ``a'' or ``the'', which usually does
11342not bring anything; for instance, prefer ``File-frobbing tool'' over ``A
11343tool that frobs files''. The synopsis should say what the package
11344is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is
11345used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines
11346matching a pattern''.
11347
11348Keep in mind that the synopsis must be meaningful for a very wide
11349audience. For example, ``Manipulate alignments in the SAM format''
11350might make sense for a seasoned bioinformatics researcher, but might be
11351fairly unhelpful or even misleading to a non-specialized audience. It
11352is a good idea to come up with a synopsis that gives an idea of the
11353application domain of the package. In this example, this might give
11354something like ``Manipulate nucleotide sequence alignments'', which
11355hopefully gives the user a better idea of whether this is what they are
11356looking for.
11357
cbd02397
LC
11358Descriptions should take between five and ten lines. Use full
11359sentences, and avoid using acronyms without first introducing them.
762e54b7
LC
11360Please avoid marketing phrases such as ``world-leading'',
11361``industrial-strength'', and ``next-generation'', and avoid superlatives
11362like ``the most advanced''---they are not helpful to users looking for a
11363package and may even sound suspicious. Instead, try to be factual,
11364mentioning use cases and features.
11365
11366@cindex Texinfo markup, in package descriptions
cbd02397
LC
11367Descriptions can include Texinfo markup, which is useful to introduce
11368ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or
ba7d6c76
ML
11369hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you
11370should be careful when using some characters for example @samp{@@} and
11371curly braces which are the basic special characters in Texinfo
11372(@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces
11373such as @command{guix package --show} take care of rendering it
11374appropriately.
cbd02397
LC
11375
11376Synopses and descriptions are translated by volunteers
11377@uref{http://translationproject.org/domain/guix-packages.html, at the
11378Translation Project} so that as many users as possible can read them in
11379their native language. User interfaces search them and display them in
11380the language specified by the current locale.
11381
11382Translation is a lot of work so, as a packager, please pay even more
11383attention to your synopses and descriptions as every change may entail
ba7d6c76 11384additional work for translators. In order to help them, it is possible
36743e71 11385to make recommendations or instructions visible to them by inserting
ba7d6c76
ML
11386special comments like this (@pxref{xgettext Invocation,,, gettext, GNU
11387Gettext}):
11388
11389@example
11390;; TRANSLATORS: "X11 resize-and-rotate" should not be translated.
11391(description "ARandR is designed to provide a simple visual front end
11392for the X11 resize-and-rotate (RandR) extension. @dots{}")
11393@end example
cbd02397 11394
ef5dd60a 11395
cf4a9129
LC
11396@node Python Modules
11397@subsection Python Modules
ef5dd60a 11398
cf4a9129
LC
11399We currently package Python 2 and Python 3, under the Scheme variable names
11400@code{python-2} and @code{python} as explained in @ref{Version Numbers}.
11401To avoid confusion and naming clashes with other programming languages, it
11402seems desirable that the name of a package for a Python module contains
11403the word @code{python}.
ef5dd60a 11404
cf4a9129
LC
11405Some modules are compatible with only one version of Python, others with both.
11406If the package Foo compiles only with Python 3, we name it
11407@code{python-foo}; if it compiles only with Python 2, we name it
11408@code{python2-foo}. If it is compatible with both versions, we create two
11409packages with the corresponding names.
ef5dd60a 11410
cf4a9129
LC
11411If a project already contains the word @code{python}, we drop this;
11412for instance, the module python-dateutil is packaged under the names
99c866a0
HG
11413@code{python-dateutil} and @code{python2-dateutil}. If the project name
11414starts with @code{py} (e.g. @code{pytz}), we keep it and prefix it as
11415described above.
113daf62 11416
523e4896 11417
cf4a9129
LC
11418@node Perl Modules
11419@subsection Perl Modules
523e4896 11420
cf4a9129
LC
11421Perl programs standing for themselves are named as any other package,
11422using the lowercase upstream name.
11423For Perl packages containing a single class, we use the lowercase class name,
11424replace all occurrences of @code{::} by dashes and prepend the prefix
11425@code{perl-}.
11426So the class @code{XML::Parser} becomes @code{perl-xml-parser}.
11427Modules containing several classes keep their lowercase upstream name and
11428are also prepended by @code{perl-}. Such modules tend to have the word
11429@code{perl} somewhere in their name, which gets dropped in favor of the
11430prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}.
523e4896 11431
523e4896 11432
e1c963bf
HG
11433@node Java Packages
11434@subsection Java Packages
11435
11436Java programs standing for themselves are named as any other package,
11437using the lowercase upstream name.
11438
11439To avoid confusion and naming clashes with other programming languages,
11440it is desirable that the name of a package for a Java package is
11441prefixed with @code{java-}. If a project already contains the word
11442@code{java}, we drop this; for instance, the package @code{ngsjava} is
11443packaged under the name @code{java-ngs}.
11444
11445For Java packages containing a single class or a small class hierarchy,
11446we use the lowercase class name, replace all occurrences of @code{.} by
11447dashes and prepend the prefix @code{java-}. So the class
11448@code{apache.commons.cli} becomes package
11449@code{java-apache-commons-cli}.
11450
11451
7fec52b7
AE
11452@node Fonts
11453@subsection Fonts
11454
11455For fonts that are in general not installed by a user for typesetting
11456purposes, or that are distributed as part of a larger software package,
11457we rely on the general packaging rules for software; for instance, this
11458applies to the fonts delivered as part of the X.Org system or fonts that
11459are part of TeX Live.
11460
11461To make it easier for a user to search for fonts, names for other packages
11462containing only fonts are constructed as follows, independently of the
11463upstream package name.
11464
11465The name of a package containing only one font family starts with
11466@code{font-}; it is followed by the foundry name and a dash @code{-}
11467if the foundry is known, and the font family name, in which spaces are
11468replaced by dashes (and as usual, all upper case letters are transformed
11469to lower case).
11470For example, the Gentium font family by SIL is packaged under the name
11471@code{font-sil-gentium}.
11472
11473For a package containing several font families, the name of the collection
11474is used in the place of the font family name.
11475For instance, the Liberation fonts consist of three families,
11476Liberation Sans, Liberation Serif and Liberation Mono.
11477These could be packaged separately under the names
11478@code{font-liberation-sans} and so on; but as they are distributed together
11479under a common name, we prefer to package them together as
11480@code{font-liberation}.
11481
11482In the case where several formats of the same font family or font collection
11483are packaged separately, a short form of the format, prepended by a dash,
11484is added to the package name. We use @code{-ttf} for TrueType fonts,
1b366ee4 11485@code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1
7fec52b7
AE
11486fonts.
11487
11488
b25937e3 11489
cf4a9129
LC
11490@node Bootstrapping
11491@section Bootstrapping
b25937e3 11492
cf4a9129 11493@c Adapted from the ELS 2013 paper.
b25937e3 11494
cf4a9129 11495@cindex bootstrapping
7889394e 11496
cf4a9129
LC
11497Bootstrapping in our context refers to how the distribution gets built
11498``from nothing''. Remember that the build environment of a derivation
11499contains nothing but its declared inputs (@pxref{Introduction}). So
11500there's an obvious chicken-and-egg problem: how does the first package
11501get built? How does the first compiler get compiled? Note that this is
11502a question of interest only to the curious hacker, not to the regular
11503user, so you can shamelessly skip this section if you consider yourself
11504a ``regular user''.
72b9d60d 11505
cf4a9129
LC
11506@cindex bootstrap binaries
11507The GNU system is primarily made of C code, with libc at its core. The
11508GNU build system itself assumes the availability of a Bourne shell and
11509command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and
11510`grep'. Furthermore, build programs---programs that run
11511@code{./configure}, @code{make}, etc.---are written in Guile Scheme
11512(@pxref{Derivations}). Consequently, to be able to build anything at
11513all, from scratch, Guix relies on pre-built binaries of Guile, GCC,
11514Binutils, libc, and the other packages mentioned above---the
11515@dfn{bootstrap binaries}.
72b9d60d 11516
cf4a9129
LC
11517These bootstrap binaries are ``taken for granted'', though we can also
11518re-create them if needed (more on that later).
72b9d60d 11519
cf4a9129 11520@unnumberedsubsec Preparing to Use the Bootstrap Binaries
c79d54fe 11521
cf4a9129
LC
11522@c As of Emacs 24.3, Info-mode displays the image, but since it's a
11523@c large image, it's hard to scroll. Oh well.
11524@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}
523e4896 11525
cf4a9129
LC
11526The figure above shows the very beginning of the dependency graph of the
11527distribution, corresponding to the package definitions of the @code{(gnu
d33fa0c7
LC
11528packages bootstrap)} module. A similar figure can be generated with
11529@command{guix graph} (@pxref{Invoking guix graph}), along the lines of:
11530
11531@example
11532guix graph -t derivation \
11533 -e '(@@@@ (gnu packages bootstrap) %bootstrap-gcc)' \
11534 | dot -Tps > t.ps
11535@end example
11536
11537At this level of detail, things are
cf4a9129
LC
11538slightly complex. First, Guile itself consists of an ELF executable,
11539along with many source and compiled Scheme files that are dynamically
11540loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz}
11541tarball shown in this graph. This tarball is part of Guix's ``source''
11542distribution, and gets inserted into the store with @code{add-to-store}
11543(@pxref{The Store}).
2e7b5cea 11544
cf4a9129
LC
11545But how do we write a derivation that unpacks this tarball and adds it
11546to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv}
11547derivation---the first one that gets built---uses @code{bash} as its
11548builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls
11549@code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar},
11550@file{xz}, and @file{mkdir} are statically-linked binaries, also part of
11551the Guix source distribution, whose sole purpose is to allow the Guile
11552tarball to be unpacked.
fb729425 11553
cf4a9129
LC
11554Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning
11555Guile that can be used to run subsequent build programs. Its first task
11556is to download tarballs containing the other pre-built binaries---this
11557is what the @code{.tar.xz.drv} derivations do. Guix modules such as
11558@code{ftp-client.scm} are used for this purpose. The
11559@code{module-import.drv} derivations import those modules in a directory
11560in the store, using the original layout. The
11561@code{module-import-compiled.drv} derivations compile those modules, and
11562write them in an output directory with the right layout. This
11563corresponds to the @code{#:modules} argument of
11564@code{build-expression->derivation} (@pxref{Derivations}).
fb729425 11565
cf4a9129
LC
11566Finally, the various tarballs are unpacked by the
11567derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv},
11568etc., at which point we have a working C tool chain.
fb729425 11569
fb729425 11570
cf4a9129 11571@unnumberedsubsec Building the Build Tools
523e4896 11572
cf4a9129
LC
11573Bootstrapping is complete when we have a full tool chain that does not
11574depend on the pre-built bootstrap tools discussed above. This
11575no-dependency requirement is verified by checking whether the files of
11576the final tool chain contain references to the @file{/gnu/store}
11577directories of the bootstrap inputs. The process that leads to this
11578``final'' tool chain is described by the package definitions found in
1f6f57df 11579the @code{(gnu packages commencement)} module.
df2ce343 11580
d33fa0c7
LC
11581The @command{guix graph} command allows us to ``zoom out'' compared to
11582the graph above, by looking at the level of package objects instead of
11583individual derivations---remember that a package may translate to
11584several derivations, typically one derivation to download its source,
11585one to build the Guile modules it needs, and one to actually build the
11586package from source. The command:
11587
11588@example
11589guix graph -t bag \
11590 -e '(@@@@ (gnu packages commencement)
11591 glibc-final-with-bootstrap-bash)' | dot -Tps > t.ps
11592@end example
11593
11594@noindent
11595produces the dependency graph leading to the ``final'' C
11596library@footnote{You may notice the @code{glibc-intermediate} label,
11597suggesting that it is not @emph{quite} final, but as a good
11598approximation, we will consider it final.}, depicted below.
11599
11600@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}
11601
cf4a9129
LC
11602@c See <http://lists.gnu.org/archive/html/gnu-system-discuss/2012-10/msg00000.html>.
11603The first tool that gets built with the bootstrap binaries is
d33fa0c7
LC
11604GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite
11605for all the following packages. From there Findutils and Diffutils get
11606built.
523e4896 11607
cf4a9129
LC
11608Then come the first-stage Binutils and GCC, built as pseudo cross
11609tools---i.e., with @code{--target} equal to @code{--host}. They are
11610used to build libc. Thanks to this cross-build trick, this libc is
11611guaranteed not to hold any reference to the initial tool chain.
4af2447e 11612
d33fa0c7
LC
11613From there the final Binutils and GCC (not shown above) are built.
11614GCC uses @code{ld}
cf4a9129
LC
11615from the final Binutils, and links programs against the just-built libc.
11616This tool chain is used to build the other packages used by Guix and by
11617the GNU Build System: Guile, Bash, Coreutils, etc.
4af2447e 11618
cf4a9129
LC
11619And voilà! At this point we have the complete set of build tools that
11620the GNU Build System expects. These are in the @code{%final-inputs}
dd164244
MW
11621variable of the @code{(gnu packages commencement)} module, and are
11622implicitly used by any package that uses @code{gnu-build-system}
1f6f57df 11623(@pxref{Build Systems, @code{gnu-build-system}}).
4af2447e 11624
4af2447e 11625
cf4a9129 11626@unnumberedsubsec Building the Bootstrap Binaries
4af2447e 11627
cf4a9129
LC
11628Because the final tool chain does not depend on the bootstrap binaries,
11629those rarely need to be updated. Nevertheless, it is useful to have an
11630automated way to produce them, should an update occur, and this is what
11631the @code{(gnu packages make-bootstrap)} module provides.
4af2447e 11632
cf4a9129
LC
11633The following command builds the tarballs containing the bootstrap
11634binaries (Guile, Binutils, GCC, libc, and a tarball containing a mixture
11635of Coreutils and other basic command-line tools):
4b2615e1 11636
cf4a9129
LC
11637@example
11638guix build bootstrap-tarballs
11639@end example
11640
11641The generated tarballs are those that should be referred to in the
11642@code{(gnu packages bootstrap)} module mentioned at the beginning of
11643this section.
11644
11645Still here? Then perhaps by now you've started to wonder: when do we
11646reach a fixed point? That is an interesting question! The answer is
11647unknown, but if you would like to investigate further (and have
11648significant computational and storage resources to do so), then let us
11649know.
11650
11651@node Porting
11652@section Porting to a New Platform
11653
11654As discussed above, the GNU distribution is self-contained, and
11655self-containment is achieved by relying on pre-built ``bootstrap
11656binaries'' (@pxref{Bootstrapping}). These binaries are specific to an
11657operating system kernel, CPU architecture, and application binary
11658interface (ABI). Thus, to port the distribution to a platform that is
11659not yet supported, one must build those bootstrap binaries, and update
11660the @code{(gnu packages bootstrap)} module to use them on that platform.
11661
11662Fortunately, Guix can @emph{cross compile} those bootstrap binaries.
11663When everything goes well, and assuming the GNU tool chain supports the
11664target platform, this can be as simple as running a command like this
11665one:
11666
11667@example
11668guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs
11669@end example
11670
1c0c417d
LC
11671For this to work, the @code{glibc-dynamic-linker} procedure in
11672@code{(gnu packages bootstrap)} must be augmented to return the right
11673file name for libc's dynamic linker on that platform; likewise,
11674@code{system->linux-architecture} in @code{(gnu packages linux)} must be
11675taught about the new platform.
11676
cf4a9129 11677Once these are built, the @code{(gnu packages bootstrap)} module needs
1c0c417d
LC
11678to be updated to refer to these binaries on the target platform. That
11679is, the hashes and URLs of the bootstrap tarballs for the new platform
11680must be added alongside those of the currently supported platforms. The
11681bootstrap Guile tarball is treated specially: it is expected to be
03d0e2d2 11682available locally, and @file{gnu/local.mk} has rules do download it for
1c0c417d
LC
11683the supported architectures; a rule for the new platform must be added
11684as well.
cf4a9129
LC
11685
11686In practice, there may be some complications. First, it may be that the
11687extended GNU triplet that specifies an ABI (like the @code{eabi} suffix
11688above) is not recognized by all the GNU tools. Typically, glibc
11689recognizes some of these, whereas GCC uses an extra @code{--with-abi}
11690configure flag (see @code{gcc.scm} for examples of how to handle this).
11691Second, some of the required packages could fail to build for that
11692platform. Lastly, the generated binaries could be broken for some
11693reason.
4af2447e 11694
9bf3c1a7 11695@c *********************************************************************
8c01b9d0 11696@include contributing.texi
c78bd12b 11697
568717fd
LC
11698@c *********************************************************************
11699@node Acknowledgments
11700@chapter Acknowledgments
11701
136787cb
LC
11702Guix is based on the @uref{http://nixos.org/nix/, Nix package manager},
11703which was designed and
4c7ac9aa
LC
11704implemented by Eelco Dolstra, with contributions from other people (see
11705the @file{nix/AUTHORS} file in Guix.) Nix pioneered functional package
568717fd
LC
11706management, and promoted unprecedented features, such as transactional
11707package upgrades and rollbacks, per-user profiles, and referentially
11708transparent build processes. Without this work, Guix would not exist.
11709
11710The Nix-based software distributions, Nixpkgs and NixOS, have also been
11711an inspiration for Guix.
11712
4c7ac9aa
LC
11713GNU@tie{}Guix itself is a collective work with contributions from a
11714number of people. See the @file{AUTHORS} file in Guix for more
11715information on these fine people. The @file{THANKS} file lists people
11716who have helped by reporting bugs, taking care of the infrastructure,
11717providing artwork and themes, making suggestions, and more---thank you!
11718
11719
568717fd
LC
11720@c *********************************************************************
11721@node GNU Free Documentation License
11722@appendix GNU Free Documentation License
11723
11724@include fdl-1.3.texi
11725
11726@c *********************************************************************
11727@node Concept Index
11728@unnumbered Concept Index
11729@printindex cp
11730
a85b83d2
LC
11731@node Programming Index
11732@unnumbered Programming Index
11733@syncodeindex tp fn
11734@syncodeindex vr fn
568717fd
LC
11735@printindex fn
11736
11737@bye
11738
11739@c Local Variables:
11740@c ispell-local-dictionary: "american";
11741@c End: