Merge branch 'master' into core-updates
[jackhill/guix/guix.git] / doc / guix.texi
1 \input texinfo
2 @c -*-texinfo-*-
3
4 @c %**start of header
5 @setfilename guix.info
6 @documentencoding UTF-8
7 @settitle GNU Guix Reference Manual
8 @c %**end of header
9
10 @include version.texi
11
12 @c Identifier of the OpenPGP key used to sign tarballs and such.
13 @set OPENPGP-SIGNING-KEY-ID 3CE464558A84FDC69DB40CFB090B11993D9AEBB5
14
15 @copying
16 Copyright @copyright{} 2012, 2013, 2014, 2015, 2016 Ludovic Courtès@*
17 Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@*
18 Copyright @copyright{} 2013 Nikita Karetnikov@*
19 Copyright @copyright{} 2014, 2015, 2016 Alex Kost@*
20 Copyright @copyright{} 2015, 2016 Mathieu Lirzin@*
21 Copyright @copyright{} 2014 Pierre-Antoine Rault@*
22 Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@*
23 Copyright @copyright{} 2015, 2016 Leo Famulari@*
24 Copyright @copyright{} 2015, 2016 Ricardo Wurmus@*
25 Copyright @copyright{} 2016 Ben Woodcroft@*
26 Copyright @copyright{} 2016 Chris Marusich@*
27 Copyright @copyright{} 2016 Efraim Flashner@*
28 Copyright @copyright{} 2016 John Darrington@*
29 Copyright @copyright{} 2016 ng0@*
30 Copyright @copyright{} 2016 Jan Nieuwenhuizen
31
32 Permission is granted to copy, distribute and/or modify this document
33 under the terms of the GNU Free Documentation License, Version 1.3 or
34 any later version published by the Free Software Foundation; with no
35 Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
36 copy of the license is included in the section entitled ``GNU Free
37 Documentation License''.
38 @end copying
39
40 @dircategory System administration
41 @direntry
42 * Guix: (guix). Manage installed software and system configuration.
43 * guix package: (guix)Invoking guix package. Installing, removing, and upgrading packages.
44 * guix build: (guix)Invoking guix build. Building packages.
45 * guix gc: (guix)Invoking guix gc. Reclaiming unused disk space.
46 * guix pull: (guix)Invoking guix pull. Update the list of available packages.
47 * guix system: (guix)Invoking guix system. Manage the operating system configuration.
48 @end direntry
49
50 @dircategory Software development
51 @direntry
52 * guix environment: (guix)Invoking guix environment. Building development environments with Guix.
53 @end direntry
54
55 @dircategory Emacs
56 @direntry
57 * Guix user interface: (guix)Emacs Interface. Package management from the comfort of Emacs.
58 @end direntry
59
60
61 @titlepage
62 @title GNU Guix Reference Manual
63 @subtitle Using the GNU Guix Functional Package Manager
64 @author The GNU Guix Developers
65
66 @page
67 @vskip 0pt plus 1filll
68 Edition @value{EDITION} @*
69 @value{UPDATED} @*
70
71 @insertcopying
72 @end titlepage
73
74 @contents
75
76 @c *********************************************************************
77 @node Top
78 @top GNU Guix
79
80 This document describes GNU Guix version @value{VERSION}, a functional
81 package management tool written for the GNU system.
82
83 @menu
84 * Introduction:: What is Guix about?
85 * Installation:: Installing Guix.
86 * Package Management:: Package installation, upgrade, etc.
87 * Emacs Interface:: Using Guix from Emacs.
88 * Programming Interface:: Using Guix in Scheme.
89 * Utilities:: Package management commands.
90 * GNU Distribution:: Software for your friendly GNU system.
91 * Contributing:: Your help needed!
92
93 * Acknowledgments:: Thanks!
94 * GNU Free Documentation License:: The license of this manual.
95 * Concept Index:: Concepts.
96 * Programming Index:: Data types, functions, and variables.
97
98 @detailmenu
99 --- The Detailed Node Listing ---
100
101 Installation
102
103 * Binary Installation:: Getting Guix running in no time!
104 * Requirements:: Software needed to build and run Guix.
105 * Running the Test Suite:: Testing Guix.
106 * Setting Up the Daemon:: Preparing the build daemon's environment.
107 * Invoking guix-daemon:: Running the build daemon.
108 * Application Setup:: Application-specific setup.
109
110 Setting Up the Daemon
111
112 * Build Environment Setup:: Preparing the isolated build environment.
113 * Daemon Offload Setup:: Offloading builds to remote machines.
114
115 Package Management
116
117 * Features:: How Guix will make your life brighter.
118 * Invoking guix package:: Package installation, removal, etc.
119 * Substitutes:: Downloading pre-built binaries.
120 * Packages with Multiple Outputs:: Single source package, multiple outputs.
121 * Invoking guix gc:: Running the garbage collector.
122 * Invoking guix pull:: Fetching the latest Guix and distribution.
123 * Invoking guix archive:: Exporting and importing store files.
124
125 Emacs Interface
126
127 * Initial Setup: Emacs Initial Setup. Preparing @file{~/.emacs}.
128 * Package Management: Emacs Package Management. Managing packages and generations.
129 * Licenses: Emacs Licenses. Interface for licenses of Guix packages.
130 * Package Source Locations: Emacs Package Locations. Interface for package location files.
131 * Popup Interface: Emacs Popup Interface. Magit-like interface for guix commands.
132 * Prettify Mode: Emacs Prettify. Abbreviating @file{/gnu/store/@dots{}} file names.
133 * Build Log Mode: Emacs Build Log. Highlighting Guix build logs.
134 * Completions: Emacs Completions. Completing @command{guix} shell command.
135 * Development: Emacs Development. Tools for Guix developers.
136 * Hydra: Emacs Hydra. Interface for Guix build farm.
137
138 Programming Interface
139
140 * Defining Packages:: Defining new packages.
141 * Build Systems:: Specifying how packages are built.
142 * The Store:: Manipulating the package store.
143 * Derivations:: Low-level interface to package derivations.
144 * The Store Monad:: Purely functional interface to the store.
145 * G-Expressions:: Manipulating build expressions.
146
147 Defining Packages
148
149 * package Reference:: The package data type.
150 * origin Reference:: The origin data type.
151
152 Utilities
153
154 * Invoking guix build:: Building packages from the command line.
155 * Invoking guix edit:: Editing package definitions.
156 * Invoking guix download:: Downloading a file and printing its hash.
157 * Invoking guix hash:: Computing the cryptographic hash of a file.
158 * Invoking guix import:: Importing package definitions.
159 * Invoking guix refresh:: Updating package definitions.
160 * Invoking guix lint:: Finding errors in package definitions.
161 * Invoking guix size:: Profiling disk usage.
162 * Invoking guix graph:: Visualizing the graph of packages.
163 * Invoking guix environment:: Setting up development environments.
164 * Invoking guix publish:: Sharing substitutes.
165 * Invoking guix challenge:: Challenging substitute servers.
166 * Invoking guix container:: Process isolation.
167
168 Invoking @command{guix build}
169
170 * Common Build Options:: Build options for most commands.
171 * Package Transformation Options:: Creating variants of packages.
172 * Additional Build Options:: Options specific to 'guix build'.
173
174 GNU Distribution
175
176 * System Installation:: Installing the whole operating system.
177 * System Configuration:: Configuring the operating system.
178 * Installing Debugging Files:: Feeding the debugger.
179 * Security Updates:: Deploying security fixes quickly.
180 * Package Modules:: Packages from the programmer's viewpoint.
181 * Packaging Guidelines:: Growing the distribution.
182 * Bootstrapping:: GNU/Linux built from scratch.
183 * Porting:: Targeting another platform or kernel.
184
185 System Installation
186
187 * Limitations:: What you can expect.
188 * Hardware Considerations:: Supported hardware.
189 * USB Stick Installation:: Preparing the installation medium.
190 * Preparing for Installation:: Networking, partitioning, etc.
191 * Proceeding with the Installation:: The real thing.
192 * Installing GuixSD in a VM:: GuixSD playground.
193 * Building the Installation Image:: How this comes to be.
194
195 System Configuration
196
197 * Using the Configuration System:: Customizing your GNU system.
198 * operating-system Reference:: Detail of operating-system declarations.
199 * File Systems:: Configuring file system mounts.
200 * Mapped Devices:: Block device extra processing.
201 * User Accounts:: Specifying user accounts.
202 * Locales:: Language and cultural convention settings.
203 * Services:: Specifying system services.
204 * Setuid Programs:: Programs running with root privileges.
205 * X.509 Certificates:: Authenticating HTTPS servers.
206 * Name Service Switch:: Configuring libc's name service switch.
207 * Initial RAM Disk:: Linux-Libre bootstrapping.
208 * GRUB Configuration:: Configuring the boot loader.
209 * Invoking guix system:: Instantiating a system configuration.
210 * Running GuixSD in a VM:: How to run GuixSD in a virtual machine.
211 * Defining Services:: Adding new service definitions.
212
213 Services
214
215 * Base Services:: Essential system services.
216 * Scheduled Job Execution:: The mcron service.
217 * Log Rotation:: The rottlog service.
218 * Networking Services:: Network setup, SSH daemon, etc.
219 * X Window:: Graphical display.
220 * Desktop Services:: D-Bus and desktop services.
221 * Database Services:: SQL databases.
222 * Mail Services:: IMAP, POP3, SMTP, and all that.
223 * Web Services:: Web servers.
224 * Miscellaneous Services:: Other services.
225
226 Defining Services
227
228 * Service Composition:: The model for composing services.
229 * Service Types and Services:: Types and services.
230 * Service Reference:: API reference.
231 * Shepherd Services:: A particular type of service.
232
233 Packaging Guidelines
234
235 * Software Freedom:: What may go into the distribution.
236 * Package Naming:: What's in a name?
237 * Version Numbers:: When the name is not enough.
238 * Synopses and Descriptions:: Helping users find the right package.
239 * Python Modules:: Taming the snake.
240 * Perl Modules:: Little pearls.
241 * Java Packages:: Coffee break.
242 * Fonts:: Fond of fonts.
243
244 Contributing
245
246 * Building from Git:: The latest and greatest.
247 * Running Guix Before It Is Installed:: Hacker tricks.
248 * The Perfect Setup:: The right tools.
249 * Coding Style:: Hygiene of the contributor.
250 * Submitting Patches:: Share your work.
251
252 Coding Style
253
254 * Programming Paradigm:: How to compose your elements.
255 * Modules:: Where to store your code?
256 * Data Types and Pattern Matching:: Implementing data structures.
257 * Formatting Code:: Writing conventions.
258
259 @end detailmenu
260 @end menu
261
262 @c *********************************************************************
263 @node Introduction
264 @chapter Introduction
265
266 @cindex purpose
267 GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks''
268 using the international phonetic alphabet (IPA).} is a package
269 management tool for the GNU system. Guix makes it easy for unprivileged
270 users to install, upgrade, or remove packages, to roll back to a
271 previous package set, to build packages from source, and generally
272 assists with the creation and maintenance of software environments.
273
274 @cindex user interfaces
275 Guix provides a command-line package management interface
276 (@pxref{Invoking guix package}), a set of command-line utilities
277 (@pxref{Utilities}), a visual user interface in Emacs (@pxref{Emacs
278 Interface}), as well as Scheme programming interfaces
279 (@pxref{Programming Interface}).
280 @cindex build daemon
281 Its @dfn{build daemon} is responsible for building packages on behalf of
282 users (@pxref{Setting Up the Daemon}) and for downloading pre-built
283 binaries from authorized sources (@pxref{Substitutes}).
284
285 @cindex extensibility of the distribution
286 @cindex customization of packages
287 Guix includes package definitions for many GNU and non-GNU packages, all
288 of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the
289 user's computing freedom}. It is @emph{extensible}: users can write
290 their own package definitions (@pxref{Defining Packages}) and make them
291 available as independent package modules (@pxref{Package Modules}). It
292 is also @emph{customizable}: users can @emph{derive} specialized package
293 definitions from existing ones, including from the command line
294 (@pxref{Package Transformation Options}).
295
296 @cindex Guix System Distribution
297 @cindex GuixSD
298 You can install GNU@tie{}Guix on top of an existing GNU/Linux system
299 where it complements the available tools without interference
300 (@pxref{Installation}), or you can use it as part of the standalone
301 @dfn{Guix System Distribution} or GuixSD (@pxref{GNU Distribution}).
302 With GNU@tie{}GuixSD, you @emph{declare} all aspects of the operating
303 system configuration and Guix takes care of instantiating the
304 configuration in a transactional, reproducible, and stateless fashion
305 (@pxref{System Configuration}).
306
307 @cindex functional package management
308 Under the hood, Guix implements the @dfn{functional package management}
309 discipline pioneered by Nix (@pxref{Acknowledgments}).
310 In Guix, the package build and installation process is seen
311 as a @emph{function}, in the mathematical sense. That function takes inputs,
312 such as build scripts, a compiler, and libraries, and
313 returns an installed package. As a pure function, its result depends
314 solely on its inputs---for instance, it cannot refer to software or
315 scripts that were not explicitly passed as inputs. A build function
316 always produces the same result when passed a given set of inputs. It
317 cannot alter the environment of the running system in
318 any way; for instance, it cannot create, modify, or delete files outside
319 of its build and installation directories. This is achieved by running
320 build processes in isolated environments (or @dfn{containers}), where only their
321 explicit inputs are visible.
322
323 @cindex store
324 The result of package build functions is @dfn{cached} in the file
325 system, in a special directory called @dfn{the store} (@pxref{The
326 Store}). Each package is installed in a directory of its own in the
327 store---by default under @file{/gnu/store}. The directory name contains
328 a hash of all the inputs used to build that package; thus, changing an
329 input yields a different directory name.
330
331 This approach is the foundation for the salient features of Guix: support
332 for transactional package upgrade and rollback, per-user installation, and
333 garbage collection of packages (@pxref{Features}).
334
335
336 @c *********************************************************************
337 @node Installation
338 @chapter Installation
339
340 GNU Guix is available for download from its website at
341 @url{http://www.gnu.org/software/guix/}. This section describes the
342 software requirements of Guix, as well as how to install it and get
343 ready to use it.
344
345 Note that this section is concerned with the installation of the package
346 manager, which can be done on top of a running GNU/Linux system. If,
347 instead, you want to install the complete GNU operating system,
348 @pxref{System Installation}.
349
350 @cindex foreign distro
351 When installed on a running GNU/Linux system---thereafter called a
352 @dfn{foreign distro}---GNU@tie{}Guix complements the available tools
353 without interference. Its data lives exclusively in two directories,
354 usually @file{/gnu/store} and @file{/var/guix}; other files on your
355 system, such as @file{/etc}, are left untouched.
356
357 @menu
358 * Binary Installation:: Getting Guix running in no time!
359 * Requirements:: Software needed to build and run Guix.
360 * Running the Test Suite:: Testing Guix.
361 * Setting Up the Daemon:: Preparing the build daemon's environment.
362 * Invoking guix-daemon:: Running the build daemon.
363 * Application Setup:: Application-specific setup.
364 @end menu
365
366 @node Binary Installation
367 @section Binary Installation
368
369 This section describes how to install Guix on an arbitrary system from a
370 self-contained tarball providing binaries for Guix and for all its
371 dependencies. This is often quicker than installing from source, which
372 is described in the next sections. The only requirement is to have
373 GNU@tie{}tar and Xz.
374
375 Installing goes along these lines:
376
377 @enumerate
378 @item
379 Download the binary tarball from
380 @indicateurl{ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz},
381 where @var{system} is @code{x86_64-linux} for an @code{x86_64} machine
382 already running the kernel Linux, and so on.
383
384 @c The following is somewhat duplicated in ``System Installation''.
385 Make sure to download the associated @file{.sig} file and to verify the
386 authenticity of the tarball against it, along these lines:
387
388 @example
389 $ wget ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz.sig
390 $ gpg --verify guix-binary-@value{VERSION}.@var{system}.tar.xz.sig
391 @end example
392
393 If that command fails because you do not have the required public key,
394 then run this command to import it:
395
396 @example
397 $ gpg --keyserver pgp.mit.edu --recv-keys @value{OPENPGP-SIGNING-KEY-ID}
398 @end example
399
400 @noindent
401 and rerun the @code{gpg --verify} command.
402 @c end authentication part
403
404 @item
405 As @code{root}, run:
406
407 @example
408 # cd /tmp
409 # tar --warning=no-timestamp -xf \
410 guix-binary-@value{VERSION}.@var{system}.tar.xz
411 # mv var/guix /var/ && mv gnu /
412 @end example
413
414 This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}.
415 The latter contains a ready-to-use profile for @code{root} (see next
416 step.)
417
418 Do @emph{not} unpack the tarball on a working Guix system since that
419 would overwrite its own essential files.
420
421 The @code{--warning=no-timestamp} option makes sure GNU@tie{}tar does
422 not emit warnings about ``implausibly old time stamps'' (such
423 warnings were triggered by GNU@tie{}tar 1.26 and older; recent
424 versions are fine.)
425 They stem from the fact that all the
426 files in the archive have their modification time set to zero (which
427 means January 1st, 1970.) This is done on purpose to make sure the
428 archive content is independent of its creation time, thus making it
429 reproducible.
430
431 @item
432 Make @code{root}'s profile available under @file{~/.guix-profile}:
433
434 @example
435 # ln -sf /var/guix/profiles/per-user/root/guix-profile \
436 ~root/.guix-profile
437 @end example
438
439 @item
440 Create the group and user accounts for build users as explained below
441 (@pxref{Build Environment Setup}).
442
443 @item
444 Run the daemon, and set it to automatically start on boot.
445
446 If your host distro uses the systemd init system, this can be achieved
447 with these commands:
448
449 @example
450 # cp ~root/.guix-profile/lib/systemd/system/guix-daemon.service \
451 /etc/systemd/system/
452 # systemctl start guix-daemon && systemctl enable guix-daemon
453 @end example
454
455 If your host distro uses the Upstart init system:
456
457 @example
458 # cp ~root/.guix-profile/lib/upstart/system/guix-daemon.conf /etc/init/
459 # start guix-daemon
460 @end example
461
462 Otherwise, you can still start the daemon manually with:
463
464 @example
465 # ~root/.guix-profile/bin/guix-daemon --build-users-group=guixbuild
466 @end example
467
468 @item
469 Make the @command{guix} command available to other users on the machine,
470 for instance with:
471
472 @example
473 # mkdir -p /usr/local/bin
474 # cd /usr/local/bin
475 # ln -s /var/guix/profiles/per-user/root/guix-profile/bin/guix
476 @end example
477
478 It is also a good idea to make the Info version of this manual available
479 there:
480
481 @example
482 # mkdir -p /usr/local/share/info
483 # cd /usr/local/share/info
484 # for i in /var/guix/profiles/per-user/root/guix-profile/share/info/* ;
485 do ln -s $i ; done
486 @end example
487
488 That way, assuming @file{/usr/local/share/info} is in the search path,
489 running @command{info guix} will open this manual (@pxref{Other Info
490 Directories,,, texinfo, GNU Texinfo}, for more details on changing the
491 Info search path.)
492
493 @item
494 To use substitutes from @code{hydra.gnu.org} or one of its mirrors
495 (@pxref{Substitutes}), authorize them:
496
497 @example
498 # guix archive --authorize < ~root/.guix-profile/share/guix/hydra.gnu.org.pub
499 @end example
500 @end enumerate
501
502 This completes root-level install of Guix. Each user will need to
503 perform additional steps to make their Guix environment ready for use,
504 @pxref{Application Setup}.
505
506 You can confirm that Guix is working by installing a sample package into
507 the root profile:
508
509 @example
510 # guix package -i hello
511 @end example
512
513 The @code{guix} package must remain available in @code{root}'s profile,
514 or it would become subject to garbage collection---in which case you
515 would find yourself badly handicapped by the lack of the @command{guix}
516 command. In other words, do not remove @code{guix} by running
517 @code{guix package -r guix}.
518
519 The binary installation tarball can be (re)produced and verified simply
520 by running the following command in the Guix source tree:
521
522 @example
523 make guix-binary.@var{system}.tar.xz
524 @end example
525
526
527 @node Requirements
528 @section Requirements
529
530 This section lists requirements when building Guix from source. The
531 build procedure for Guix is the same as for other GNU software, and is
532 not covered here. Please see the files @file{README} and @file{INSTALL}
533 in the Guix source tree for additional details.
534
535 GNU Guix depends on the following packages:
536
537 @itemize
538 @item @url{http://gnu.org/software/guile/, GNU Guile}, version 2.0.7 or later;
539 @item @url{http://gnupg.org/, GNU libgcrypt};
540 @item @url{http://www.gnu.org/software/make/, GNU Make}.
541 @end itemize
542
543 The following dependencies are optional:
544
545 @itemize
546 @item
547 Installing @uref{http://gnutls.org/, GnuTLS-Guile} will allow you to
548 access @code{https} URLs for substitutes, which is highly recommended
549 (@pxref{Substitutes}). It also allows you to access HTTPS URLs with the
550 @command{guix download} command (@pxref{Invoking guix download}), the
551 @command{guix import pypi} command, and the @command{guix import cpan}
552 command. @xref{Guile Preparations, how to install the GnuTLS bindings
553 for Guile,, gnutls-guile, GnuTLS-Guile}.
554
555 @item
556 Installing
557 @url{http://savannah.nongnu.org/projects/guile-json/, Guile-JSON} will
558 allow you to use the @command{guix import pypi} command (@pxref{Invoking
559 guix import}). It is of
560 interest primarily for developers and not for casual users.
561
562 @item
563 When @url{http://zlib.net, zlib} is available, @command{guix publish}
564 can compress build byproducts (@pxref{Invoking guix publish}).
565 @end itemize
566
567 Unless @code{--disable-daemon} was passed to @command{configure}, the
568 following packages are also needed:
569
570 @itemize
571 @item @url{http://sqlite.org, SQLite 3};
572 @item @url{http://www.bzip.org, libbz2};
573 @item @url{http://gcc.gnu.org, GCC's g++}, with support for the
574 C++11 standard.
575 @end itemize
576
577 When configuring Guix on a system that already has a Guix installation,
578 be sure to specify the same state directory as the existing installation
579 using the @code{--localstatedir} option of the @command{configure}
580 script (@pxref{Directory Variables, @code{localstatedir},, standards,
581 GNU Coding Standards}). The @command{configure} script protects against
582 unintended misconfiguration of @var{localstatedir} so you do not
583 inadvertently corrupt your store (@pxref{The Store}).
584
585 When a working installation of @url{http://nixos.org/nix/, the Nix package
586 manager} is available, you
587 can instead configure Guix with @code{--disable-daemon}. In that case,
588 Nix replaces the three dependencies above.
589
590 Guix is compatible with Nix, so it is possible to share the same store
591 between both. To do so, you must pass @command{configure} not only the
592 same @code{--with-store-dir} value, but also the same
593 @code{--localstatedir} value. The latter is essential because it
594 specifies where the database that stores metadata about the store is
595 located, among other things. The default values for Nix are
596 @code{--with-store-dir=/nix/store} and @code{--localstatedir=/nix/var}.
597 Note that @code{--disable-daemon} is not required if
598 your goal is to share the store with Nix.
599
600 @node Running the Test Suite
601 @section Running the Test Suite
602
603 After a successful @command{configure} and @code{make} run, it is a good
604 idea to run the test suite. It can help catch issues with the setup or
605 environment, or bugs in Guix itself---and really, reporting test
606 failures is a good way to help improve the software. To run the test
607 suite, type:
608
609 @example
610 make check
611 @end example
612
613 Test cases can run in parallel: you can use the @code{-j} option of
614 GNU@tie{}make to speed things up. The first run may take a few minutes
615 on a recent machine; subsequent runs will be faster because the store
616 that is created for test purposes will already have various things in
617 cache.
618
619 It is also possible to run a subset of the tests by defining the
620 @code{TESTS} makefile variable as in this example:
621
622 @example
623 make check TESTS="tests/store.scm tests/cpio.scm"
624 @end example
625
626 By default, tests results are displayed at a file level. In order to
627 see the details of every individual test cases, it is possible to define
628 the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:
629
630 @example
631 make check TESTS="tests/base64.scm" SCM_LOG_DRIVER_FLAGS="--brief=no"
632 @end example
633
634 Upon failure, please email @email{bug-guix@@gnu.org} and attach the
635 @file{test-suite.log} file. Please specify the Guix version being used
636 as well as version numbers of the dependencies (@pxref{Requirements}) in
637 your message.
638
639 Guix also comes with a whole-system test suite that tests complete
640 GuixSD operating system instances. It can only run on systems where
641 Guix is already installed, using:
642
643 @example
644 make check-system
645 @end example
646
647 @noindent
648 or, again, by defining @code{TESTS} to select a subset of tests to run:
649
650 @example
651 make check-system TESTS="basic mcron"
652 @end example
653
654 These system tests are defined in the @code{(gnu tests @dots{})}
655 modules. They work by running the operating systems under test with
656 lightweight instrumentation in a virtual machine (VM). They can be
657 computationally intensive or rather cheap, depending on whether
658 substitutes are available for their dependencies (@pxref{Substitutes}).
659 Some of them require a lot of storage space to hold VM images.
660
661 Again in case of test failures, please send @email{bug-guix@@gnu.org}
662 all the details.
663
664 @node Setting Up the Daemon
665 @section Setting Up the Daemon
666
667 @cindex daemon
668 Operations such as building a package or running the garbage collector
669 are all performed by a specialized process, the @dfn{build daemon}, on
670 behalf of clients. Only the daemon may access the store and its
671 associated database. Thus, any operation that manipulates the store
672 goes through the daemon. For instance, command-line tools such as
673 @command{guix package} and @command{guix build} communicate with the
674 daemon (@i{via} remote procedure calls) to instruct it what to do.
675
676 The following sections explain how to prepare the build daemon's
677 environment. See also @ref{Substitutes}, for information on how to allow
678 the daemon to download pre-built binaries.
679
680 @menu
681 * Build Environment Setup:: Preparing the isolated build environment.
682 * Daemon Offload Setup:: Offloading builds to remote machines.
683 @end menu
684
685 @node Build Environment Setup
686 @subsection Build Environment Setup
687
688 In a standard multi-user setup, Guix and its daemon---the
689 @command{guix-daemon} program---are installed by the system
690 administrator; @file{/gnu/store} is owned by @code{root} and
691 @command{guix-daemon} runs as @code{root}. Unprivileged users may use
692 Guix tools to build packages or otherwise access the store, and the
693 daemon will do it on their behalf, ensuring that the store is kept in a
694 consistent state, and allowing built packages to be shared among users.
695
696 @cindex build users
697 When @command{guix-daemon} runs as @code{root}, you may not want package
698 build processes themselves to run as @code{root} too, for obvious
699 security reasons. To avoid that, a special pool of @dfn{build users}
700 should be created for use by build processes started by the daemon.
701 These build users need not have a shell and a home directory: they will
702 just be used when the daemon drops @code{root} privileges in build
703 processes. Having several such users allows the daemon to launch
704 distinct build processes under separate UIDs, which guarantees that they
705 do not interfere with each other---an essential feature since builds are
706 regarded as pure functions (@pxref{Introduction}).
707
708 On a GNU/Linux system, a build user pool may be created like this (using
709 Bash syntax and the @code{shadow} commands):
710
711 @c See http://lists.gnu.org/archive/html/bug-guix/2013-01/msg00239.html
712 @c for why `-G' is needed.
713 @example
714 # groupadd --system guixbuild
715 # for i in `seq -w 1 10`;
716 do
717 useradd -g guixbuild -G guixbuild \
718 -d /var/empty -s `which nologin` \
719 -c "Guix build user $i" --system \
720 guixbuilder$i;
721 done
722 @end example
723
724 @noindent
725 The number of build users determines how many build jobs may run in
726 parallel, as specified by the @option{--max-jobs} option
727 (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use
728 @command{guix system vm} and related commands, you may need to add the
729 build users to the @code{kvm} group so they can access @file{/dev/kvm},
730 using @code{-G guixbuild,kvm} instead of @code{-G guixbuild}
731 (@pxref{Invoking guix system}).
732
733 The @code{guix-daemon} program may then be run as @code{root} with the
734 following command@footnote{If your machine uses the systemd init system,
735 dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service}
736 file in @file{/etc/systemd/system} will ensure that
737 @command{guix-daemon} is automatically started. Similarly, if your
738 machine uses the Upstart init system, drop the
739 @file{@var{prefix}/lib/upstart/system/guix-daemon.conf}
740 file in @file{/etc/init}.}:
741
742 @example
743 # guix-daemon --build-users-group=guixbuild
744 @end example
745
746 @cindex chroot
747 @noindent
748 This way, the daemon starts build processes in a chroot, under one of
749 the @code{guixbuilder} users. On GNU/Linux, by default, the chroot
750 environment contains nothing but:
751
752 @c Keep this list in sync with libstore/build.cc! -----------------------
753 @itemize
754 @item
755 a minimal @code{/dev} directory, created mostly independently from the
756 host @code{/dev}@footnote{``Mostly'', because while the set of files
757 that appear in the chroot's @code{/dev} is fixed, most of these files
758 can only be created if the host has them.};
759
760 @item
761 the @code{/proc} directory; it only shows the processes of the container
762 since a separate PID name space is used;
763
764 @item
765 @file{/etc/passwd} with an entry for the current user and an entry for
766 user @file{nobody};
767
768 @item
769 @file{/etc/group} with an entry for the user's group;
770
771 @item
772 @file{/etc/hosts} with an entry that maps @code{localhost} to
773 @code{127.0.0.1};
774
775 @item
776 a writable @file{/tmp} directory.
777 @end itemize
778
779 You can influence the directory where the daemon stores build trees
780 @i{via} the @code{TMPDIR} environment variable. However, the build tree
781 within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0},
782 where @var{name} is the derivation name---e.g., @code{coreutils-8.24}.
783 This way, the value of @code{TMPDIR} does not leak inside build
784 environments, which avoids discrepancies in cases where build processes
785 capture the name of their build tree.
786
787 @vindex http_proxy
788 The daemon also honors the @code{http_proxy} environment variable for
789 HTTP downloads it performs, be it for fixed-output derivations
790 (@pxref{Derivations}) or for substitutes (@pxref{Substitutes}).
791
792 If you are installing Guix as an unprivileged user, it is still possible
793 to run @command{guix-daemon} provided you pass @code{--disable-chroot}.
794 However, build processes will not be isolated from one another, and not
795 from the rest of the system. Thus, build processes may interfere with
796 each other, and may access programs, libraries, and other files
797 available on the system---making it much harder to view them as
798 @emph{pure} functions.
799
800
801 @node Daemon Offload Setup
802 @subsection Using the Offload Facility
803
804 @cindex offloading
805 @cindex build hook
806 When desired, the build daemon can @dfn{offload}
807 derivation builds to other machines
808 running Guix, using the @code{offload} @dfn{build hook}. When that
809 feature is enabled, a list of user-specified build machines is read from
810 @file{/etc/guix/machines.scm}; every time a build is requested, for
811 instance via @code{guix build}, the daemon attempts to offload it to one
812 of the machines that satisfy the constraints of the derivation, in
813 particular its system type---e.g., @file{x86_64-linux}. Missing
814 prerequisites for the build are copied over SSH to the target machine,
815 which then proceeds with the build; upon success the output(s) of the
816 build are copied back to the initial machine.
817
818 The @file{/etc/guix/machines.scm} file typically looks like this:
819
820 @example
821 (list (build-machine
822 (name "eightysix.example.org")
823 (system "x86_64-linux")
824 (user "bob")
825 (speed 2.)) ; incredibly fast!
826
827 (build-machine
828 (name "meeps.example.org")
829 (system "mips64el-linux")
830 (user "alice")
831 (private-key
832 (string-append (getenv "HOME")
833 "/.lsh/identity-for-guix"))))
834 @end example
835
836 @noindent
837 In the example above we specify a list of two build machines, one for
838 the @code{x86_64} architecture and one for the @code{mips64el}
839 architecture.
840
841 In fact, this file is---not surprisingly!---a Scheme file that is
842 evaluated when the @code{offload} hook is started. Its return value
843 must be a list of @code{build-machine} objects. While this example
844 shows a fixed list of build machines, one could imagine, say, using
845 DNS-SD to return a list of potential build machines discovered in the
846 local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using
847 Avahi in Guile Scheme Programs}). The @code{build-machine} data type is
848 detailed below.
849
850 @deftp {Data Type} build-machine
851 This data type represents build machines to which the daemon may offload
852 builds. The important fields are:
853
854 @table @code
855
856 @item name
857 The host name of the remote machine.
858
859 @item system
860 The system type of the remote machine---e.g., @code{"x86_64-linux"}.
861
862 @item user
863 The user account to use when connecting to the remote machine over SSH.
864 Note that the SSH key pair must @emph{not} be passphrase-protected, to
865 allow non-interactive logins.
866
867 @end table
868
869 A number of optional fields may be specified:
870
871 @table @code
872
873 @item port
874 Port number of SSH server on the machine (default: 22).
875
876 @item private-key
877 The SSH private key file to use when connecting to the machine.
878
879 Currently offloading uses GNU@tie{}lsh as its SSH client
880 (@pxref{Invoking lsh,,, GNU lsh Manual}). Thus, the key file here must
881 be an lsh key file. This may change in the future, though.
882
883 @item parallel-builds
884 The number of builds that may run in parallel on the machine (1 by
885 default.)
886
887 @item speed
888 A ``relative speed factor''. The offload scheduler will tend to prefer
889 machines with a higher speed factor.
890
891 @item features
892 A list of strings denoting specific features supported by the machine.
893 An example is @code{"kvm"} for machines that have the KVM Linux modules
894 and corresponding hardware support. Derivations can request features by
895 name, and they will be scheduled on matching build machines.
896
897 @end table
898 @end deftp
899
900 The @code{guix} command must be in the search path on the build
901 machines, since offloading works by invoking the @code{guix archive} and
902 @code{guix build} commands. In addition, the Guix modules must be in
903 @code{$GUILE_LOAD_PATH} on the build machine---you can check whether
904 this is the case by running:
905
906 @example
907 lsh build-machine guile -c "'(use-modules (guix config))'"
908 @end example
909
910 There is one last thing to do once @file{machines.scm} is in place. As
911 explained above, when offloading, files are transferred back and forth
912 between the machine stores. For this to work, you first need to
913 generate a key pair on each machine to allow the daemon to export signed
914 archives of files from the store (@pxref{Invoking guix archive}):
915
916 @example
917 # guix archive --generate-key
918 @end example
919
920 @noindent
921 Each build machine must authorize the key of the master machine so that
922 it accepts store items it receives from the master:
923
924 @example
925 # guix archive --authorize < master-public-key.txt
926 @end example
927
928 @noindent
929 Likewise, the master machine must authorize the key of each build machine.
930
931 All the fuss with keys is here to express pairwise mutual trust
932 relations between the master and the build machines. Concretely, when
933 the master receives files from a build machine (and @i{vice versa}), its
934 build daemon can make sure they are genuine, have not been tampered
935 with, and that they are signed by an authorized key.
936
937
938 @node Invoking guix-daemon
939 @section Invoking @command{guix-daemon}
940
941 The @command{guix-daemon} program implements all the functionality to
942 access the store. This includes launching build processes, running the
943 garbage collector, querying the availability of a build result, etc. It
944 is normally run as @code{root} like this:
945
946 @example
947 # guix-daemon --build-users-group=guixbuild
948 @end example
949
950 @noindent
951 For details on how to set it up, @pxref{Setting Up the Daemon}.
952
953 @cindex chroot
954 @cindex container, build environment
955 @cindex build environment
956 @cindex reproducible builds
957 By default, @command{guix-daemon} launches build processes under
958 different UIDs, taken from the build group specified with
959 @code{--build-users-group}. In addition, each build process is run in a
960 chroot environment that only contains the subset of the store that the
961 build process depends on, as specified by its derivation
962 (@pxref{Programming Interface, derivation}), plus a set of specific
963 system directories. By default, the latter contains @file{/dev} and
964 @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a
965 @dfn{container}: in addition to having its own file system tree, it has
966 a separate mount name space, its own PID name space, network name space,
967 etc. This helps achieve reproducible builds (@pxref{Features}).
968
969 When the daemon performs a build on behalf of the user, it creates a
970 build directory under @file{/tmp} or under the directory specified by
971 its @code{TMPDIR} environment variable; this directory is shared with
972 the container for the duration of the build. Be aware that using a
973 directory other than @file{/tmp} can affect build results---for example,
974 with a longer directory name, a build process that uses Unix-domain
975 sockets might hit the name length limitation for @code{sun_path}, which
976 it would otherwise not hit.
977
978 The build directory is automatically deleted upon completion, unless the
979 build failed and the client specified @option{--keep-failed}
980 (@pxref{Invoking guix build, @option{--keep-failed}}).
981
982 The following command-line options are supported:
983
984 @table @code
985 @item --build-users-group=@var{group}
986 Take users from @var{group} to run build processes (@pxref{Setting Up
987 the Daemon, build users}).
988
989 @item --no-substitutes
990 @cindex substitutes
991 Do not use substitutes for build products. That is, always build things
992 locally instead of allowing downloads of pre-built binaries
993 (@pxref{Substitutes}).
994
995 By default substitutes are used, unless the client---such as the
996 @command{guix package} command---is explicitly invoked with
997 @code{--no-substitutes}.
998
999 When the daemon runs with @code{--no-substitutes}, clients can still
1000 explicitly enable substitution @i{via} the @code{set-build-options}
1001 remote procedure call (@pxref{The Store}).
1002
1003 @item --substitute-urls=@var{urls}
1004 @anchor{daemon-substitute-urls}
1005 Consider @var{urls} the default whitespace-separated list of substitute
1006 source URLs. When this option is omitted,
1007 @indicateurl{https://mirror.hydra.gnu.org https://hydra.gnu.org} is used
1008 (@code{mirror.hydra.gnu.org} is a mirror of @code{hydra.gnu.org}).
1009
1010 This means that substitutes may be downloaded from @var{urls}, as long
1011 as they are signed by a trusted signature (@pxref{Substitutes}).
1012
1013 @cindex build hook
1014 @item --no-build-hook
1015 Do not use the @dfn{build hook}.
1016
1017 The build hook is a helper program that the daemon can start and to
1018 which it submits build requests. This mechanism is used to offload
1019 builds to other machines (@pxref{Daemon Offload Setup}).
1020
1021 @item --cache-failures
1022 Cache build failures. By default, only successful builds are cached.
1023
1024 When this option is used, @command{guix gc --list-failures} can be used
1025 to query the set of store items marked as failed; @command{guix gc
1026 --clear-failures} removes store items from the set of cached failures.
1027 @xref{Invoking guix gc}.
1028
1029 @item --cores=@var{n}
1030 @itemx -c @var{n}
1031 Use @var{n} CPU cores to build each derivation; @code{0} means as many
1032 as available.
1033
1034 The default value is @code{0}, but it may be overridden by clients, such
1035 as the @code{--cores} option of @command{guix build} (@pxref{Invoking
1036 guix build}).
1037
1038 The effect is to define the @code{NIX_BUILD_CORES} environment variable
1039 in the build process, which can then use it to exploit internal
1040 parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}.
1041
1042 @item --max-jobs=@var{n}
1043 @itemx -M @var{n}
1044 Allow at most @var{n} build jobs in parallel. The default value is
1045 @code{1}. Setting it to @code{0} means that no builds will be performed
1046 locally; instead, the daemon will offload builds (@pxref{Daemon Offload
1047 Setup}), or simply fail.
1048
1049 @item --rounds=@var{N}
1050 Build each derivation @var{n} times in a row, and raise an error if
1051 consecutive build results are not bit-for-bit identical. Note that this
1052 setting can be overridden by clients such as @command{guix build}
1053 (@pxref{Invoking guix build}).
1054
1055 When used in conjunction with @option{--keep-failed}, the differing
1056 output is kept in the store, under @file{/gnu/store/@dots{}-check}.
1057 This makes it easy to look for differences between the two results.
1058
1059 @item --debug
1060 Produce debugging output.
1061
1062 This is useful to debug daemon start-up issues, but then it may be
1063 overridden by clients, for example the @code{--verbosity} option of
1064 @command{guix build} (@pxref{Invoking guix build}).
1065
1066 @item --chroot-directory=@var{dir}
1067 Add @var{dir} to the build chroot.
1068
1069 Doing this may change the result of build processes---for instance if
1070 they use optional dependencies found in @var{dir} when it is available,
1071 and not otherwise. For that reason, it is not recommended to do so.
1072 Instead, make sure that each derivation declares all the inputs that it
1073 needs.
1074
1075 @item --disable-chroot
1076 Disable chroot builds.
1077
1078 Using this option is not recommended since, again, it would allow build
1079 processes to gain access to undeclared dependencies. It is necessary,
1080 though, when @command{guix-daemon} is running under an unprivileged user
1081 account.
1082
1083 @item --disable-log-compression
1084 Disable compression of the build logs.
1085
1086 Unless @code{--lose-logs} is used, all the build logs are kept in the
1087 @var{localstatedir}. To save space, the daemon automatically compresses
1088 them with bzip2 by default. This option disables that.
1089
1090 @item --disable-deduplication
1091 @cindex deduplication
1092 Disable automatic file ``deduplication'' in the store.
1093
1094 By default, files added to the store are automatically ``deduplicated'':
1095 if a newly added file is identical to another one found in the store,
1096 the daemon makes the new file a hard link to the other file. This can
1097 noticeably reduce disk usage, at the expense of slightly increased
1098 input/output load at the end of a build process. This option disables
1099 this optimization.
1100
1101 @item --gc-keep-outputs[=yes|no]
1102 Tell whether the garbage collector (GC) must keep outputs of live
1103 derivations.
1104
1105 When set to ``yes'', the GC will keep the outputs of any live derivation
1106 available in the store---the @code{.drv} files. The default is ``no'',
1107 meaning that derivation outputs are kept only if they are GC roots.
1108
1109 @item --gc-keep-derivations[=yes|no]
1110 Tell whether the garbage collector (GC) must keep derivations
1111 corresponding to live outputs.
1112
1113 When set to ``yes'', as is the case by default, the GC keeps
1114 derivations---i.e., @code{.drv} files---as long as at least one of their
1115 outputs is live. This allows users to keep track of the origins of
1116 items in their store. Setting it to ``no'' saves a bit of disk space.
1117
1118 Note that when both @code{--gc-keep-derivations} and
1119 @code{--gc-keep-outputs} are used, the effect is to keep all the build
1120 prerequisites (the sources, compiler, libraries, and other build-time
1121 tools) of live objects in the store, regardless of whether these
1122 prerequisites are live. This is convenient for developers since it
1123 saves rebuilds or downloads.
1124
1125 @item --impersonate-linux-2.6
1126 On Linux-based systems, impersonate Linux 2.6. This means that the
1127 kernel's @code{uname} system call will report 2.6 as the release number.
1128
1129 This might be helpful to build programs that (usually wrongfully) depend
1130 on the kernel version number.
1131
1132 @item --lose-logs
1133 Do not keep build logs. By default they are kept under
1134 @code{@var{localstatedir}/guix/log}.
1135
1136 @item --system=@var{system}
1137 Assume @var{system} as the current system type. By default it is the
1138 architecture/kernel pair found at configure time, such as
1139 @code{x86_64-linux}.
1140
1141 @item --listen=@var{socket}
1142 Listen for connections on @var{socket}, the file name of a Unix-domain
1143 socket. The default socket is
1144 @file{@var{localstatedir}/daemon-socket/socket}. This option is only
1145 useful in exceptional circumstances, such as if you need to run several
1146 daemons on the same machine.
1147 @end table
1148
1149
1150 @node Application Setup
1151 @section Application Setup
1152
1153 @cindex foreign distro
1154 When using Guix on top of GNU/Linux distribution other than GuixSD---a
1155 so-called @dfn{foreign distro}---a few additional steps are needed to
1156 get everything in place. Here are some of them.
1157
1158 @subsection Locales
1159
1160 @anchor{locales-and-locpath}
1161 @cindex locales, when not on GuixSD
1162 @vindex LOCPATH
1163 @vindex GUIX_LOCPATH
1164 Packages installed @i{via} Guix will not use the locale data of the
1165 host system. Instead, you must first install one of the locale packages
1166 available with Guix and then define the @code{GUIX_LOCPATH} environment
1167 variable:
1168
1169 @example
1170 $ guix package -i glibc-locales
1171 $ export GUIX_LOCPATH=$HOME/.guix-profile/lib/locale
1172 @end example
1173
1174 Note that the @code{glibc-locales} package contains data for all the
1175 locales supported by the GNU@tie{}libc and weighs in at around
1176 110@tie{}MiB. Alternatively, the @code{glibc-utf8-locales} is smaller but
1177 limited to a few UTF-8 locales.
1178
1179 The @code{GUIX_LOCPATH} variable plays a role similar to @code{LOCPATH}
1180 (@pxref{Locale Names, @code{LOCPATH},, libc, The GNU C Library Reference
1181 Manual}). There are two important differences though:
1182
1183 @enumerate
1184 @item
1185 @code{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc
1186 provided by foreign distros. Thus, using @code{GUIX_LOCPATH} allows you
1187 to make sure the programs of the foreign distro will not end up loading
1188 incompatible locale data.
1189
1190 @item
1191 libc suffixes each entry of @code{GUIX_LOCPATH} with @code{/X.Y}, where
1192 @code{X.Y} is the libc version---e.g., @code{2.22}. This means that,
1193 should your Guix profile contain a mixture of programs linked against
1194 different libc version, each libc version will only try to load locale
1195 data in the right format.
1196 @end enumerate
1197
1198 This is important because the locale data format used by different libc
1199 versions may be incompatible.
1200
1201 @subsection X11 Fonts
1202
1203 The majority of graphical applications use Fontconfig to locate and
1204 load fonts and perform X11-client-side rendering. The @code{fontconfig}
1205 package in Guix looks for fonts in @file{$HOME/.guix-profile}
1206 by default. Thus, to allow graphical applications installed with Guix
1207 to display fonts, you have to install fonts with Guix as well.
1208 Essential font packages include @code{gs-fonts}, @code{font-dejavu}, and
1209 @code{font-gnu-freefont-ttf}.
1210
1211 To display text written in Chinese languages, Japanese, or Korean in
1212 graphical applications, consider installing
1213 @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former
1214 has multiple outputs, one per language family (@pxref{Packages with
1215 Multiple Outputs}). For instance, the following command installs fonts
1216 for Chinese languages:
1217
1218 @example
1219 guix package -i font-adobe-source-han-sans:cn
1220 @end example
1221
1222 Older programs such as @command{xterm} do not use Fontconfig and instead
1223 rely on server-side font rendering. Such programs require to specify a
1224 full name of a font using XLFD (X Logical Font Description), like this:
1225
1226 @example
1227 -*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1
1228 @end example
1229
1230 To be able to use such full names for the TrueType fonts installed in
1231 your Guix profile, you need to extend the font path of the X server:
1232
1233 @example
1234 xset +fp ~/.guix-profile/share/fonts/truetype
1235 @end example
1236
1237 After that, you can run @code{xlsfonts} (from @code{xlsfonts} package)
1238 to make sure your TrueType fonts are listed there.
1239
1240 @subsection X.509 Certificates
1241
1242 The @code{nss-certs} package provides X.509 certificates, which allow
1243 programs to authenticate Web servers accessed over HTTPS.
1244
1245 When using Guix on a foreign distro, you can install this package and
1246 define the relevant environment variables so that packages know where to
1247 look for certificates. @xref{X.509 Certificates}, for detailed
1248 information.
1249
1250 @subsection Emacs Packages
1251
1252 When you install Emacs packages with Guix, the elisp files may be placed
1253 either in @file{$HOME/.guix-profile/share/emacs/site-lisp/} or in
1254 sub-directories of
1255 @file{$HOME/.guix-profile/share/emacs/site-lisp/guix.d/}. The latter
1256 directory exists because potentially there may exist thousands of Emacs
1257 packages and storing all their files in a single directory may be not
1258 reliable (because of name conflicts). So we think using a separate
1259 directory for each package is a good idea. It is very similar to how
1260 the Emacs package system organizes the file structure (@pxref{Package
1261 Files,,, emacs, The GNU Emacs Manual}).
1262
1263 By default, Emacs (installed with Guix) ``knows'' where these packages
1264 are placed, so you do not need to perform any configuration. If, for
1265 some reason, you want to avoid auto-loading Emacs packages installed
1266 with Guix, you can do so by running Emacs with @code{--no-site-file}
1267 option (@pxref{Init File,,, emacs, The GNU Emacs Manual}).
1268
1269 @c TODO What else?
1270
1271 @c *********************************************************************
1272 @node Package Management
1273 @chapter Package Management
1274
1275 The purpose of GNU Guix is to allow users to easily install, upgrade, and
1276 remove software packages, without having to know about their build
1277 procedures or dependencies. Guix also goes beyond this obvious set of
1278 features.
1279
1280 This chapter describes the main features of Guix, as well as the package
1281 management tools it provides. Two user interfaces are provided for
1282 routine package management tasks: A command-line interface described below
1283 (@pxref{Invoking guix package, @code{guix package}}), as well as a visual user
1284 interface in Emacs described in a subsequent chapter (@pxref{Emacs Interface}).
1285
1286 @menu
1287 * Features:: How Guix will make your life brighter.
1288 * Invoking guix package:: Package installation, removal, etc.
1289 * Substitutes:: Downloading pre-built binaries.
1290 * Packages with Multiple Outputs:: Single source package, multiple outputs.
1291 * Invoking guix gc:: Running the garbage collector.
1292 * Invoking guix pull:: Fetching the latest Guix and distribution.
1293 * Invoking guix archive:: Exporting and importing store files.
1294 @end menu
1295
1296 @node Features
1297 @section Features
1298
1299 When using Guix, each package ends up in the @dfn{package store}, in its
1300 own directory---something that resembles
1301 @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string
1302 (note that Guix comes with an Emacs extension to shorten those file
1303 names, @pxref{Emacs Prettify}.)
1304
1305 Instead of referring to these directories, users have their own
1306 @dfn{profile}, which points to the packages that they actually want to
1307 use. These profiles are stored within each user's home directory, at
1308 @code{$HOME/.guix-profile}.
1309
1310 For example, @code{alice} installs GCC 4.7.2. As a result,
1311 @file{/home/alice/.guix-profile/bin/gcc} points to
1312 @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine,
1313 @code{bob} had already installed GCC 4.8.0. The profile of @code{bob}
1314 simply continues to point to
1315 @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC
1316 coexist on the same system without any interference.
1317
1318 The @command{guix package} command is the central tool to manage
1319 packages (@pxref{Invoking guix package}). It operates on the per-user
1320 profiles, and can be used @emph{with normal user privileges}.
1321
1322 The command provides the obvious install, remove, and upgrade
1323 operations. Each invocation is actually a @emph{transaction}: either
1324 the specified operation succeeds, or nothing happens. Thus, if the
1325 @command{guix package} process is terminated during the transaction,
1326 or if a power outage occurs during the transaction, then the user's
1327 profile remains in its previous state, and remains usable.
1328
1329 In addition, any package transaction may be @emph{rolled back}. So, if,
1330 for example, an upgrade installs a new version of a package that turns
1331 out to have a serious bug, users may roll back to the previous instance
1332 of their profile, which was known to work well. Similarly, the global
1333 system configuration on GuixSD is subject to
1334 transactional upgrades and roll-back
1335 (@pxref{Using the Configuration System}).
1336
1337 All packages in the package store may be @emph{garbage-collected}.
1338 Guix can determine which packages are still referenced by user
1339 profiles, and remove those that are provably no longer referenced
1340 (@pxref{Invoking guix gc}). Users may also explicitly remove old
1341 generations of their profile so that the packages they refer to can be
1342 collected.
1343
1344 @cindex reproducibility
1345 @cindex reproducible builds
1346 Finally, Guix takes a @dfn{purely functional} approach to package
1347 management, as described in the introduction (@pxref{Introduction}).
1348 Each @file{/gnu/store} package directory name contains a hash of all the
1349 inputs that were used to build that package---compiler, libraries, build
1350 scripts, etc. This direct correspondence allows users to make sure a
1351 given package installation matches the current state of their
1352 distribution. It also helps maximize @dfn{build reproducibility}:
1353 thanks to the isolated build environments that are used, a given build
1354 is likely to yield bit-identical files when performed on different
1355 machines (@pxref{Invoking guix-daemon, container}).
1356
1357 @cindex substitutes
1358 This foundation allows Guix to support @dfn{transparent binary/source
1359 deployment}. When a pre-built binary for a @file{/gnu/store} item is
1360 available from an external source---a @dfn{substitute}, Guix just
1361 downloads it and unpacks it;
1362 otherwise, it builds the package from source, locally
1363 (@pxref{Substitutes}). Because build results are usually bit-for-bit
1364 reproducible, users do not have to trust servers that provide
1365 substitutes: they can force a local build and @emph{challenge} providers
1366 (@pxref{Invoking guix challenge}).
1367
1368 Control over the build environment is a feature that is also useful for
1369 developers. The @command{guix environment} command allows developers of
1370 a package to quickly set up the right development environment for their
1371 package, without having to manually install the dependencies of the
1372 package into their profile (@pxref{Invoking guix environment}).
1373
1374 @node Invoking guix package
1375 @section Invoking @command{guix package}
1376
1377 The @command{guix package} command is the tool that allows users to
1378 install, upgrade, and remove packages, as well as rolling back to
1379 previous configurations. It operates only on the user's own profile,
1380 and works with normal user privileges (@pxref{Features}). Its syntax
1381 is:
1382
1383 @example
1384 guix package @var{options}
1385 @end example
1386
1387 Primarily, @var{options} specifies the operations to be performed during
1388 the transaction. Upon completion, a new profile is created, but
1389 previous @dfn{generations} of the profile remain available, should the user
1390 want to roll back.
1391
1392 For example, to remove @code{lua} and install @code{guile} and
1393 @code{guile-cairo} in a single transaction:
1394
1395 @example
1396 guix package -r lua -i guile guile-cairo
1397 @end example
1398
1399 @command{guix package} also supports a @dfn{declarative approach}
1400 whereby the user specifies the exact set of packages to be available and
1401 passes it @i{via} the @option{--manifest} option
1402 (@pxref{profile-manifest, @option{--manifest}}).
1403
1404 For each user, a symlink to the user's default profile is automatically
1405 created in @file{$HOME/.guix-profile}. This symlink always points to the
1406 current generation of the user's default profile. Thus, users can add
1407 @file{$HOME/.guix-profile/bin} to their @code{PATH} environment
1408 variable, and so on.
1409 @cindex search paths
1410 If you are not using the Guix System Distribution, consider adding the
1411 following lines to your @file{~/.bash_profile} (@pxref{Bash Startup
1412 Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned
1413 shells get all the right environment variable definitions:
1414
1415 @example
1416 GUIX_PROFILE="$HOME/.guix-profile" \
1417 source "$HOME/.guix-profile/etc/profile"
1418 @end example
1419
1420 In a multi-user setup, user profiles are stored in a place registered as
1421 a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points
1422 to (@pxref{Invoking guix gc}). That directory is normally
1423 @code{@var{localstatedir}/profiles/per-user/@var{user}}, where
1424 @var{localstatedir} is the value passed to @code{configure} as
1425 @code{--localstatedir}, and @var{user} is the user name. The
1426 @file{per-user} directory is created when @command{guix-daemon} is
1427 started, and the @var{user} sub-directory is created by @command{guix
1428 package}.
1429
1430 The @var{options} can be among the following:
1431
1432 @table @code
1433
1434 @item --install=@var{package} @dots{}
1435 @itemx -i @var{package} @dots{}
1436 Install the specified @var{package}s.
1437
1438 Each @var{package} may specify either a simple package name, such as
1439 @code{guile}, or a package name followed by an at-sign and version number,
1440 such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter
1441 case, the newest version prefixed by @code{1.8} is selected.)
1442
1443 If no version number is specified, the
1444 newest available version will be selected. In addition, @var{package}
1445 may contain a colon, followed by the name of one of the outputs of the
1446 package, as in @code{gcc:doc} or @code{binutils@@2.22:lib}
1447 (@pxref{Packages with Multiple Outputs}). Packages with a corresponding
1448 name (and optionally version) are searched for among the GNU
1449 distribution modules (@pxref{Package Modules}).
1450
1451 @cindex propagated inputs
1452 Sometimes packages have @dfn{propagated inputs}: these are dependencies
1453 that automatically get installed along with the required package
1454 (@pxref{package-propagated-inputs, @code{propagated-inputs} in
1455 @code{package} objects}, for information about propagated inputs in
1456 package definitions).
1457
1458 @anchor{package-cmd-propagated-inputs}
1459 An example is the GNU MPC library: its C header files refer to those of
1460 the GNU MPFR library, which in turn refer to those of the GMP library.
1461 Thus, when installing MPC, the MPFR and GMP libraries also get installed
1462 in the profile; removing MPC also removes MPFR and GMP---unless they had
1463 also been explicitly installed by the user.
1464
1465 Besides, packages sometimes rely on the definition of environment
1466 variables for their search paths (see explanation of
1467 @code{--search-paths} below). Any missing or possibly incorrect
1468 environment variable definitions are reported here.
1469
1470 @item --install-from-expression=@var{exp}
1471 @itemx -e @var{exp}
1472 Install the package @var{exp} evaluates to.
1473
1474 @var{exp} must be a Scheme expression that evaluates to a
1475 @code{<package>} object. This option is notably useful to disambiguate
1476 between same-named variants of a package, with expressions such as
1477 @code{(@@ (gnu packages base) guile-final)}.
1478
1479 Note that this option installs the first output of the specified
1480 package, which may be insufficient when needing a specific output of a
1481 multiple-output package.
1482
1483 @item --install-from-file=@var{file}
1484 @itemx -f @var{file}
1485 Install the package that the code within @var{file} evaluates to.
1486
1487 As an example, @var{file} might contain a definition like this
1488 (@pxref{Defining Packages}):
1489
1490 @example
1491 @verbatiminclude package-hello.scm
1492 @end example
1493
1494 Developers may find it useful to include such a @file{guix.scm} file
1495 in the root of their project source tree that can be used to test
1496 development snapshots and create reproducible development environments
1497 (@pxref{Invoking guix environment}).
1498
1499 @item --remove=@var{package} @dots{}
1500 @itemx -r @var{package} @dots{}
1501 Remove the specified @var{package}s.
1502
1503 As for @code{--install}, each @var{package} may specify a version number
1504 and/or output name in addition to the package name. For instance,
1505 @code{-r glibc:debug} would remove the @code{debug} output of
1506 @code{glibc}.
1507
1508 @item --upgrade[=@var{regexp} @dots{}]
1509 @itemx -u [@var{regexp} @dots{}]
1510 Upgrade all the installed packages. If one or more @var{regexp}s are
1511 specified, upgrade only installed packages whose name matches a
1512 @var{regexp}. Also see the @code{--do-not-upgrade} option below.
1513
1514 Note that this upgrades package to the latest version of packages found
1515 in the distribution currently installed. To update your distribution,
1516 you should regularly run @command{guix pull} (@pxref{Invoking guix
1517 pull}).
1518
1519 @item --do-not-upgrade[=@var{regexp} @dots{}]
1520 When used together with the @code{--upgrade} option, do @emph{not}
1521 upgrade any packages whose name matches a @var{regexp}. For example, to
1522 upgrade all packages in the current profile except those containing the
1523 substring ``emacs'':
1524
1525 @example
1526 $ guix package --upgrade . --do-not-upgrade emacs
1527 @end example
1528
1529 @item @anchor{profile-manifest}--manifest=@var{file}
1530 @itemx -m @var{file}
1531 @cindex profile declaration
1532 @cindex profile manifest
1533 Create a new generation of the profile from the manifest object
1534 returned by the Scheme code in @var{file}.
1535
1536 This allows you to @emph{declare} the profile's contents rather than
1537 constructing it through a sequence of @code{--install} and similar
1538 commands. The advantage is that @var{file} can be put under version
1539 control, copied to different machines to reproduce the same profile, and
1540 so on.
1541
1542 @c FIXME: Add reference to (guix profile) documentation when available.
1543 @var{file} must return a @dfn{manifest} object, which is roughly a list
1544 of packages:
1545
1546 @findex packages->manifest
1547 @example
1548 (use-package-modules guile emacs)
1549
1550 (packages->manifest
1551 (list emacs
1552 guile-2.0
1553 ;; Use a specific package output.
1554 (list guile-2.0 "debug")))
1555 @end example
1556
1557 @item --roll-back
1558 Roll back to the previous @dfn{generation} of the profile---i.e., undo
1559 the last transaction.
1560
1561 When combined with options such as @code{--install}, roll back occurs
1562 before any other actions.
1563
1564 When rolling back from the first generation that actually contains
1565 installed packages, the profile is made to point to the @dfn{zeroth
1566 generation}, which contains no files apart from its own metadata.
1567
1568 After having rolled back, installing, removing, or upgrading packages
1569 overwrites previous future generations. Thus, the history of the
1570 generations in a profile is always linear.
1571
1572 @item --switch-generation=@var{pattern}
1573 @itemx -S @var{pattern}
1574 Switch to a particular generation defined by @var{pattern}.
1575
1576 @var{pattern} may be either a generation number or a number prefixed
1577 with ``+'' or ``-''. The latter means: move forward/backward by a
1578 specified number of generations. For example, if you want to return to
1579 the latest generation after @code{--roll-back}, use
1580 @code{--switch-generation=+1}.
1581
1582 The difference between @code{--roll-back} and
1583 @code{--switch-generation=-1} is that @code{--switch-generation} will
1584 not make a zeroth generation, so if a specified generation does not
1585 exist, the current generation will not be changed.
1586
1587 @item --search-paths[=@var{kind}]
1588 @cindex search paths
1589 Report environment variable definitions, in Bash syntax, that may be
1590 needed in order to use the set of installed packages. These environment
1591 variables are used to specify @dfn{search paths} for files used by some
1592 of the installed packages.
1593
1594 For example, GCC needs the @code{CPATH} and @code{LIBRARY_PATH}
1595 environment variables to be defined so it can look for headers and
1596 libraries in the user's profile (@pxref{Environment Variables,,, gcc,
1597 Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C
1598 library are installed in the profile, then @code{--search-paths} will
1599 suggest setting these variables to @code{@var{profile}/include} and
1600 @code{@var{profile}/lib}, respectively.
1601
1602 The typical use case is to define these environment variables in the
1603 shell:
1604
1605 @example
1606 $ eval `guix package --search-paths`
1607 @end example
1608
1609 @var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix},
1610 meaning that the returned environment variable definitions will either
1611 be exact settings, or prefixes or suffixes of the current value of these
1612 variables. When omitted, @var{kind} defaults to @code{exact}.
1613
1614 This option can also be used to compute the @emph{combined} search paths
1615 of several profiles. Consider this example:
1616
1617 @example
1618 $ guix package -p foo -i guile
1619 $ guix package -p bar -i guile-json
1620 $ guix package -p foo -p bar --search-paths
1621 @end example
1622
1623 The last command above reports about the @code{GUILE_LOAD_PATH}
1624 variable, even though, taken individually, neither @file{foo} nor
1625 @file{bar} would lead to that recommendation.
1626
1627
1628 @item --profile=@var{profile}
1629 @itemx -p @var{profile}
1630 Use @var{profile} instead of the user's default profile.
1631
1632 @item --verbose
1633 Produce verbose output. In particular, emit the build log of the
1634 environment on the standard error port.
1635
1636 @item --bootstrap
1637 Use the bootstrap Guile to build the profile. This option is only
1638 useful to distribution developers.
1639
1640 @end table
1641
1642 In addition to these actions, @command{guix package} supports the
1643 following options to query the current state of a profile, or the
1644 availability of packages:
1645
1646 @table @option
1647
1648 @item --search=@var{regexp}
1649 @itemx -s @var{regexp}
1650 @cindex searching for packages
1651 List the available packages whose name, synopsis, or description matches
1652 @var{regexp}. Print all the metadata of matching packages in
1653 @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils,
1654 GNU recutils manual}).
1655
1656 This allows specific fields to be extracted using the @command{recsel}
1657 command, for instance:
1658
1659 @example
1660 $ guix package -s malloc | recsel -p name,version
1661 name: glibc
1662 version: 2.17
1663
1664 name: libgc
1665 version: 7.2alpha6
1666 @end example
1667
1668 Similarly, to show the name of all the packages available under the
1669 terms of the GNU@tie{}LGPL version 3:
1670
1671 @example
1672 $ guix package -s "" | recsel -p name -e 'license ~ "LGPL 3"'
1673 name: elfutils
1674
1675 name: gmp
1676 @dots{}
1677 @end example
1678
1679 It is also possible to refine search results using several @code{-s}
1680 flags. For example, the following command returns a list of board
1681 games:
1682
1683 @example
1684 $ guix package -s '\<board\>' -s game | recsel -p name
1685 name: gnubg
1686 @dots{}
1687 @end example
1688
1689 If we were to omit @code{-s game}, we would also get software packages
1690 that deal with printed circuit boards; removing the angle brackets
1691 around @code{board} would further add packages that have to do with
1692 keyboards.
1693
1694 And now for a more elaborate example. The following command searches
1695 for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby
1696 libraries, and prints the name and synopsis of the matching packages:
1697
1698 @example
1699 $ guix package -s crypto -s library | \
1700 recsel -e '! (name ~ "^(ghc|perl|python|ruby)")' -p name,synopsis
1701 @end example
1702
1703 @noindent
1704 @xref{Selection Expressions,,, recutils, GNU recutils manual}, for more
1705 information on @dfn{selection expressions} for @code{recsel -e}.
1706
1707 @item --show=@var{package}
1708 Show details about @var{package}, taken from the list of available packages, in
1709 @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU
1710 recutils manual}).
1711
1712 @example
1713 $ guix package --show=python | recsel -p name,version
1714 name: python
1715 version: 2.7.6
1716
1717 name: python
1718 version: 3.3.5
1719 @end example
1720
1721 You may also specify the full name of a package to only get details about a
1722 specific version of it:
1723 @example
1724 $ guix package --show=python@@3.4 | recsel -p name,version
1725 name: python
1726 version: 3.4.3
1727 @end example
1728
1729
1730
1731 @item --list-installed[=@var{regexp}]
1732 @itemx -I [@var{regexp}]
1733 List the currently installed packages in the specified profile, with the
1734 most recently installed packages shown last. When @var{regexp} is
1735 specified, list only installed packages whose name matches @var{regexp}.
1736
1737 For each installed package, print the following items, separated by
1738 tabs: the package name, its version string, the part of the package that
1739 is installed (for instance, @code{out} for the default output,
1740 @code{include} for its headers, etc.), and the path of this package in
1741 the store.
1742
1743 @item --list-available[=@var{regexp}]
1744 @itemx -A [@var{regexp}]
1745 List packages currently available in the distribution for this system
1746 (@pxref{GNU Distribution}). When @var{regexp} is specified, list only
1747 installed packages whose name matches @var{regexp}.
1748
1749 For each package, print the following items separated by tabs: its name,
1750 its version string, the parts of the package (@pxref{Packages with
1751 Multiple Outputs}), and the source location of its definition.
1752
1753 @item --list-generations[=@var{pattern}]
1754 @itemx -l [@var{pattern}]
1755 Return a list of generations along with their creation dates; for each
1756 generation, show the installed packages, with the most recently
1757 installed packages shown last. Note that the zeroth generation is never
1758 shown.
1759
1760 For each installed package, print the following items, separated by
1761 tabs: the name of a package, its version string, the part of the package
1762 that is installed (@pxref{Packages with Multiple Outputs}), and the
1763 location of this package in the store.
1764
1765 When @var{pattern} is used, the command returns only matching
1766 generations. Valid patterns include:
1767
1768 @itemize
1769 @item @emph{Integers and comma-separated integers}. Both patterns denote
1770 generation numbers. For instance, @code{--list-generations=1} returns
1771 the first one.
1772
1773 And @code{--list-generations=1,8,2} outputs three generations in the
1774 specified order. Neither spaces nor trailing commas are allowed.
1775
1776 @item @emph{Ranges}. @code{--list-generations=2..9} prints the
1777 specified generations and everything in between. Note that the start of
1778 a range must be smaller than its end.
1779
1780 It is also possible to omit the endpoint. For example,
1781 @code{--list-generations=2..}, returns all generations starting from the
1782 second one.
1783
1784 @item @emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks,
1785 or months by passing an integer along with the first letter of the
1786 duration. For example, @code{--list-generations=20d} lists generations
1787 that are up to 20 days old.
1788 @end itemize
1789
1790 @item --delete-generations[=@var{pattern}]
1791 @itemx -d [@var{pattern}]
1792 When @var{pattern} is omitted, delete all generations except the current
1793 one.
1794
1795 This command accepts the same patterns as @option{--list-generations}.
1796 When @var{pattern} is specified, delete the matching generations. When
1797 @var{pattern} specifies a duration, generations @emph{older} than the
1798 specified duration match. For instance, @code{--delete-generations=1m}
1799 deletes generations that are more than one month old.
1800
1801 If the current generation matches, it is @emph{not} deleted. Also, the
1802 zeroth generation is never deleted.
1803
1804 Note that deleting generations prevents rolling back to them.
1805 Consequently, this command must be used with care.
1806
1807 @end table
1808
1809 Finally, since @command{guix package} may actually start build
1810 processes, it supports all the common build options (@pxref{Common Build
1811 Options}). It also supports package transformation options, such as
1812 @option{--with-source} (@pxref{Package Transformation Options}).
1813 However, note that package transformations are lost when upgrading; to
1814 preserve transformations across upgrades, you should define your own
1815 package variant in a Guile module and add it to @code{GUIX_PACKAGE_PATH}
1816 (@pxref{Defining Packages}).
1817
1818
1819 @node Substitutes
1820 @section Substitutes
1821
1822 @cindex substitutes
1823 @cindex pre-built binaries
1824 Guix supports transparent source/binary deployment, which means that it
1825 can either build things locally, or download pre-built items from a
1826 server. We call these pre-built items @dfn{substitutes}---they are
1827 substitutes for local build results. In many cases, downloading a
1828 substitute is much faster than building things locally.
1829
1830 Substitutes can be anything resulting from a derivation build
1831 (@pxref{Derivations}). Of course, in the common case, they are
1832 pre-built package binaries, but source tarballs, for instance, which
1833 also result from derivation builds, can be available as substitutes.
1834
1835 The @code{hydra.gnu.org} server is a front-end to a build farm that
1836 builds packages from the GNU distribution continuously for some
1837 architectures, and makes them available as substitutes (@pxref{Emacs
1838 Hydra}, for information on how to query the continuous integration
1839 server). This is the
1840 default source of substitutes; it can be overridden by passing the
1841 @option{--substitute-urls} option either to @command{guix-daemon}
1842 (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}})
1843 or to client tools such as @command{guix package}
1844 (@pxref{client-substitute-urls,, client @option{--substitute-urls}
1845 option}).
1846
1847 Substitute URLs can be either HTTP or HTTPS@footnote{For HTTPS access,
1848 the Guile bindings of GnuTLS must be installed. @xref{Requirements}.}
1849 HTTPS is recommended because communications are encrypted; conversely,
1850 using HTTP makes all communications visible to an eavesdropper, who
1851 could use the information gathered to determine, for instance, whether
1852 your system has unpatched security vulnerabilities.
1853
1854 @cindex security
1855 @cindex digital signatures
1856 To allow Guix to download substitutes from @code{hydra.gnu.org} or a
1857 mirror thereof, you
1858 must add its public key to the access control list (ACL) of archive
1859 imports, using the @command{guix archive} command (@pxref{Invoking guix
1860 archive}). Doing so implies that you trust @code{hydra.gnu.org} to not
1861 be compromised and to serve genuine substitutes.
1862
1863 This public key is installed along with Guix, in
1864 @code{@var{prefix}/share/guix/hydra.gnu.org.pub}, where @var{prefix} is
1865 the installation prefix of Guix. If you installed Guix from source,
1866 make sure you checked the GPG signature of
1867 @file{guix-@value{VERSION}.tar.gz}, which contains this public key file.
1868 Then, you can run something like this:
1869
1870 @example
1871 # guix archive --authorize < hydra.gnu.org.pub
1872 @end example
1873
1874 Once this is in place, the output of a command like @code{guix build}
1875 should change from something like:
1876
1877 @example
1878 $ guix build emacs --dry-run
1879 The following derivations would be built:
1880 /gnu/store/yr7bnx8xwcayd6j95r2clmkdl1qh688w-emacs-24.3.drv
1881 /gnu/store/x8qsh1hlhgjx6cwsjyvybnfv2i37z23w-dbus-1.6.4.tar.gz.drv
1882 /gnu/store/1ixwp12fl950d15h2cj11c73733jay0z-alsa-lib-1.0.27.1.tar.bz2.drv
1883 /gnu/store/nlma1pw0p603fpfiqy7kn4zm105r5dmw-util-linux-2.21.drv
1884 @dots{}
1885 @end example
1886
1887 @noindent
1888 to something like:
1889
1890 @example
1891 $ guix build emacs --dry-run
1892 The following files would be downloaded:
1893 /gnu/store/pk3n22lbq6ydamyymqkkz7i69wiwjiwi-emacs-24.3
1894 /gnu/store/2ygn4ncnhrpr61rssa6z0d9x22si0va3-libjpeg-8d
1895 /gnu/store/71yz6lgx4dazma9dwn2mcjxaah9w77jq-cairo-1.12.16
1896 /gnu/store/7zdhgp0n1518lvfn8mb96sxqfmvqrl7v-libxrender-0.9.7
1897 @dots{}
1898 @end example
1899
1900 @noindent
1901 This indicates that substitutes from @code{hydra.gnu.org} are usable and
1902 will be downloaded, when possible, for future builds.
1903
1904 Guix ignores substitutes that are not signed, or that are not signed by
1905 one of the keys listed in the ACL. It also detects and raises an error
1906 when attempting to use a substitute that has been tampered with.
1907
1908 @vindex http_proxy
1909 Substitutes are downloaded over HTTP or HTTPS.
1910 The @code{http_proxy} environment
1911 variable can be set in the environment of @command{guix-daemon} and is
1912 honored for downloads of substitutes. Note that the value of
1913 @code{http_proxy} in the environment where @command{guix build},
1914 @command{guix package}, and other client commands are run has
1915 @emph{absolutely no effect}.
1916
1917 When using HTTPS, the server's X.509 certificate is @emph{not} validated
1918 (in other words, the server is not authenticated), contrary to what
1919 HTTPS clients such as Web browsers usually do. This is because Guix
1920 authenticates substitute information itself, as explained above, which
1921 is what we care about (whereas X.509 certificates are about
1922 authenticating bindings between domain names and public keys.)
1923
1924 The substitute mechanism can be disabled globally by running
1925 @code{guix-daemon} with @code{--no-substitutes} (@pxref{Invoking
1926 guix-daemon}). It can also be disabled temporarily by passing the
1927 @code{--no-substitutes} option to @command{guix package}, @command{guix
1928 build}, and other command-line tools.
1929
1930
1931 @unnumberedsubsec On Trusting Binaries
1932
1933 Today, each individual's control over their own computing is at the
1934 mercy of institutions, corporations, and groups with enough power and
1935 determination to subvert the computing infrastructure and exploit its
1936 weaknesses. While using @code{hydra.gnu.org} substitutes can be
1937 convenient, we encourage users to also build on their own, or even run
1938 their own build farm, such that @code{hydra.gnu.org} is less of an
1939 interesting target. One way to help is by publishing the software you
1940 build using @command{guix publish} so that others have one more choice
1941 of server to download substitutes from (@pxref{Invoking guix publish}).
1942
1943 Guix has the foundations to maximize build reproducibility
1944 (@pxref{Features}). In most cases, independent builds of a given
1945 package or derivation should yield bit-identical results. Thus, through
1946 a diverse set of independent package builds, we can strengthen the
1947 integrity of our systems. The @command{guix challenge} command aims to
1948 help users assess substitute servers, and to assist developers in
1949 finding out about non-deterministic package builds (@pxref{Invoking guix
1950 challenge}). Similarly, the @option{--check} option of @command{guix
1951 build} allows users to check whether previously-installed substitutes
1952 are genuine by rebuilding them locally (@pxref{build-check,
1953 @command{guix build --check}}).
1954
1955 In the future, we want Guix to have support to publish and retrieve
1956 binaries to/from other users, in a peer-to-peer fashion. If you would
1957 like to discuss this project, join us on @email{guix-devel@@gnu.org}.
1958
1959
1960 @node Packages with Multiple Outputs
1961 @section Packages with Multiple Outputs
1962
1963 @cindex multiple-output packages
1964 @cindex package outputs
1965
1966 Often, packages defined in Guix have a single @dfn{output}---i.e., the
1967 source package leads to exactly one directory in the store. When running
1968 @command{guix package -i glibc}, one installs the default output of the
1969 GNU libc package; the default output is called @code{out}, but its name
1970 can be omitted as shown in this command. In this particular case, the
1971 default output of @code{glibc} contains all the C header files, shared
1972 libraries, static libraries, Info documentation, and other supporting
1973 files.
1974
1975 Sometimes it is more appropriate to separate the various types of files
1976 produced from a single source package into separate outputs. For
1977 instance, the GLib C library (used by GTK+ and related packages)
1978 installs more than 20 MiB of reference documentation as HTML pages.
1979 To save space for users who do not need it, the documentation goes to a
1980 separate output, called @code{doc}. To install the main GLib output,
1981 which contains everything but the documentation, one would run:
1982
1983 @example
1984 guix package -i glib
1985 @end example
1986
1987 The command to install its documentation is:
1988
1989 @example
1990 guix package -i glib:doc
1991 @end example
1992
1993 Some packages install programs with different ``dependency footprints''.
1994 For instance, the WordNet package installs both command-line tools and
1995 graphical user interfaces (GUIs). The former depend solely on the C
1996 library, whereas the latter depend on Tcl/Tk and the underlying X
1997 libraries. In this case, we leave the command-line tools in the default
1998 output, whereas the GUIs are in a separate output. This allows users
1999 who do not need the GUIs to save space. The @command{guix size} command
2000 can help find out about such situations (@pxref{Invoking guix size}).
2001 @command{guix graph} can also be helpful (@pxref{Invoking guix graph}).
2002
2003 There are several such multiple-output packages in the GNU distribution.
2004 Other conventional output names include @code{lib} for libraries and
2005 possibly header files, @code{bin} for stand-alone programs, and
2006 @code{debug} for debugging information (@pxref{Installing Debugging
2007 Files}). The outputs of a packages are listed in the third column of
2008 the output of @command{guix package --list-available} (@pxref{Invoking
2009 guix package}).
2010
2011
2012 @node Invoking guix gc
2013 @section Invoking @command{guix gc}
2014
2015 @cindex garbage collector
2016 Packages that are installed, but not used, may be @dfn{garbage-collected}.
2017 The @command{guix gc} command allows users to explicitly run the garbage
2018 collector to reclaim space from the @file{/gnu/store} directory. It is
2019 the @emph{only} way to remove files from @file{/gnu/store}---removing
2020 files or directories manually may break it beyond repair!
2021
2022 The garbage collector has a set of known @dfn{roots}: any file under
2023 @file{/gnu/store} reachable from a root is considered @dfn{live} and
2024 cannot be deleted; any other file is considered @dfn{dead} and may be
2025 deleted. The set of garbage collector roots includes default user
2026 profiles, and may be augmented with @command{guix build --root}, for
2027 example (@pxref{Invoking guix build}).
2028
2029 Prior to running @code{guix gc --collect-garbage} to make space, it is
2030 often useful to remove old generations from user profiles; that way, old
2031 package builds referenced by those generations can be reclaimed. This
2032 is achieved by running @code{guix package --delete-generations}
2033 (@pxref{Invoking guix package}).
2034
2035 The @command{guix gc} command has three modes of operation: it can be
2036 used to garbage-collect any dead files (the default), to delete specific
2037 files (the @code{--delete} option), to print garbage-collector
2038 information, or for more advanced queries. The garbage collection
2039 options are as follows:
2040
2041 @table @code
2042 @item --collect-garbage[=@var{min}]
2043 @itemx -C [@var{min}]
2044 Collect garbage---i.e., unreachable @file{/gnu/store} files and
2045 sub-directories. This is the default operation when no option is
2046 specified.
2047
2048 When @var{min} is given, stop once @var{min} bytes have been collected.
2049 @var{min} may be a number of bytes, or it may include a unit as a
2050 suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes
2051 (@pxref{Block size, size specifications,, coreutils, GNU Coreutils}).
2052
2053 When @var{min} is omitted, collect all the garbage.
2054
2055 @item --free-space=@var{free}
2056 @itemx -F @var{free}
2057 Collect garbage until @var{free} space is available under
2058 @file{/gnu/store}, if possible; @var{free} denotes storage space, such
2059 as @code{500MiB}, as described above.
2060
2061 When @var{free} or more is already available in @file{/gnu/store}, do
2062 nothing and exit immediately.
2063
2064 @item --delete
2065 @itemx -d
2066 Attempt to delete all the store files and directories specified as
2067 arguments. This fails if some of the files are not in the store, or if
2068 they are still live.
2069
2070 @item --list-failures
2071 List store items corresponding to cached build failures.
2072
2073 This prints nothing unless the daemon was started with
2074 @option{--cache-failures} (@pxref{Invoking guix-daemon,
2075 @option{--cache-failures}}).
2076
2077 @item --clear-failures
2078 Remove the specified store items from the failed-build cache.
2079
2080 Again, this option only makes sense when the daemon is started with
2081 @option{--cache-failures}. Otherwise, it does nothing.
2082
2083 @item --list-dead
2084 Show the list of dead files and directories still present in the
2085 store---i.e., files and directories no longer reachable from any root.
2086
2087 @item --list-live
2088 Show the list of live store files and directories.
2089
2090 @end table
2091
2092 In addition, the references among existing store files can be queried:
2093
2094 @table @code
2095
2096 @item --references
2097 @itemx --referrers
2098 List the references (respectively, the referrers) of store files given
2099 as arguments.
2100
2101 @item --requisites
2102 @itemx -R
2103 @cindex closure
2104 List the requisites of the store files passed as arguments. Requisites
2105 include the store files themselves, their references, and the references
2106 of these, recursively. In other words, the returned list is the
2107 @dfn{transitive closure} of the store files.
2108
2109 @xref{Invoking guix size}, for a tool to profile the size of the closure
2110 of an element. @xref{Invoking guix graph}, for a tool to visualize
2111 the graph of references.
2112
2113 @end table
2114
2115 Lastly, the following options allow you to check the integrity of the
2116 store and to control disk usage.
2117
2118 @table @option
2119
2120 @item --verify[=@var{options}]
2121 @cindex integrity, of the store
2122 @cindex integrity checking
2123 Verify the integrity of the store.
2124
2125 By default, make sure that all the store items marked as valid in the
2126 database of the daemon actually exist in @file{/gnu/store}.
2127
2128 When provided, @var{options} must be a comma-separated list containing one
2129 or more of @code{contents} and @code{repair}.
2130
2131 When passing @option{--verify=contents}, the daemon computes the
2132 content hash of each store item and compares it against its hash in the
2133 database. Hash mismatches are reported as data corruptions. Because it
2134 traverses @emph{all the files in the store}, this command can take a
2135 long time, especially on systems with a slow disk drive.
2136
2137 @cindex repairing the store
2138 Using @option{--verify=repair} or @option{--verify=contents,repair}
2139 causes the daemon to try to repair corrupt store items by fetching
2140 substitutes for them (@pxref{Substitutes}). Because repairing is not
2141 atomic, and thus potentially dangerous, it is available only to the
2142 system administrator.
2143
2144 @item --optimize
2145 @cindex deduplication
2146 Optimize the store by hard-linking identical files---this is
2147 @dfn{deduplication}.
2148
2149 The daemon performs deduplication after each successful build or archive
2150 import, unless it was started with @code{--disable-deduplication}
2151 (@pxref{Invoking guix-daemon, @code{--disable-deduplication}}). Thus,
2152 this option is primarily useful when the daemon was running with
2153 @code{--disable-deduplication}.
2154
2155 @end table
2156
2157 @node Invoking guix pull
2158 @section Invoking @command{guix pull}
2159
2160 Packages are installed or upgraded to the latest version available in
2161 the distribution currently available on your local machine. To update
2162 that distribution, along with the Guix tools, you must run @command{guix
2163 pull}: the command downloads the latest Guix source code and package
2164 descriptions, and deploys it.
2165
2166 On completion, @command{guix package} will use packages and package
2167 versions from this just-retrieved copy of Guix. Not only that, but all
2168 the Guix commands and Scheme modules will also be taken from that latest
2169 version. New @command{guix} sub-commands added by the update also
2170 become available.
2171
2172 Any user can update their Guix copy using @command{guix pull}, and the
2173 effect is limited to the user who run @command{guix pull}. For
2174 instance, when user @code{root} runs @command{guix pull}, this has no
2175 effect on the version of Guix that user @code{alice} sees, and vice
2176 versa@footnote{Under the hood, @command{guix pull} updates the
2177 @file{~/.config/guix/latest} symbolic link to point to the latest Guix,
2178 and the @command{guix} command loads code from there.}.
2179
2180 The @command{guix pull} command is usually invoked with no arguments,
2181 but it supports the following options:
2182
2183 @table @code
2184 @item --verbose
2185 Produce verbose output, writing build logs to the standard error output.
2186
2187 @item --url=@var{url}
2188 Download the source tarball of Guix from @var{url}.
2189
2190 By default, the tarball is taken from its canonical address at
2191 @code{gnu.org}, for the stable branch of Guix.
2192
2193 @item --bootstrap
2194 Use the bootstrap Guile to build the latest Guix. This option is only
2195 useful to Guix developers.
2196 @end table
2197
2198
2199 @node Invoking guix archive
2200 @section Invoking @command{guix archive}
2201
2202 The @command{guix archive} command allows users to @dfn{export} files
2203 from the store into a single archive, and to later @dfn{import} them.
2204 In particular, it allows store files to be transferred from one machine
2205 to the store on another machine.
2206
2207 To export store files as an archive to standard output, run:
2208
2209 @example
2210 guix archive --export @var{options} @var{specifications}...
2211 @end example
2212
2213 @var{specifications} may be either store file names or package
2214 specifications, as for @command{guix package} (@pxref{Invoking guix
2215 package}). For instance, the following command creates an archive
2216 containing the @code{gui} output of the @code{git} package and the main
2217 output of @code{emacs}:
2218
2219 @example
2220 guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar
2221 @end example
2222
2223 If the specified packages are not built yet, @command{guix archive}
2224 automatically builds them. The build process may be controlled with the
2225 common build options (@pxref{Common Build Options}).
2226
2227 To transfer the @code{emacs} package to a machine connected over SSH,
2228 one would run:
2229
2230 @example
2231 guix archive --export -r emacs | ssh the-machine guix archive --import
2232 @end example
2233
2234 @noindent
2235 Similarly, a complete user profile may be transferred from one machine
2236 to another like this:
2237
2238 @example
2239 guix archive --export -r $(readlink -f ~/.guix-profile) | \
2240 ssh the-machine guix-archive --import
2241 @end example
2242
2243 @noindent
2244 However, note that, in both examples, all of @code{emacs} and the
2245 profile as well as all of their dependencies are transferred (due to
2246 @code{-r}), regardless of what is already available in the store on the
2247 target machine. The @code{--missing} option can help figure out which
2248 items are missing from the target store.
2249
2250 Archives are stored in the ``Nix archive'' or ``Nar'' format, which is
2251 comparable in spirit to `tar', but with a few noteworthy differences
2252 that make it more appropriate for our purposes. First, rather than
2253 recording all Unix metadata for each file, the Nar format only mentions
2254 the file type (regular, directory, or symbolic link); Unix permissions
2255 and owner/group are dismissed. Second, the order in which directory
2256 entries are stored always follows the order of file names according to
2257 the C locale collation order. This makes archive production fully
2258 deterministic.
2259
2260 When exporting, the daemon digitally signs the contents of the archive,
2261 and that digital signature is appended. When importing, the daemon
2262 verifies the signature and rejects the import in case of an invalid
2263 signature or if the signing key is not authorized.
2264 @c FIXME: Add xref to daemon doc about signatures.
2265
2266 The main options are:
2267
2268 @table @code
2269 @item --export
2270 Export the specified store files or packages (see below.) Write the
2271 resulting archive to the standard output.
2272
2273 Dependencies are @emph{not} included in the output, unless
2274 @code{--recursive} is passed.
2275
2276 @item -r
2277 @itemx --recursive
2278 When combined with @code{--export}, this instructs @command{guix
2279 archive} to include dependencies of the given items in the archive.
2280 Thus, the resulting archive is self-contained: it contains the closure
2281 of the exported store items.
2282
2283 @item --import
2284 Read an archive from the standard input, and import the files listed
2285 therein into the store. Abort if the archive has an invalid digital
2286 signature, or if it is signed by a public key not among the authorized
2287 keys (see @code{--authorize} below.)
2288
2289 @item --missing
2290 Read a list of store file names from the standard input, one per line,
2291 and write on the standard output the subset of these files missing from
2292 the store.
2293
2294 @item --generate-key[=@var{parameters}]
2295 @cindex signing, archives
2296 Generate a new key pair for the daemon. This is a prerequisite before
2297 archives can be exported with @code{--export}. Note that this operation
2298 usually takes time, because it needs to gather enough entropy to
2299 generate the key pair.
2300
2301 The generated key pair is typically stored under @file{/etc/guix}, in
2302 @file{signing-key.pub} (public key) and @file{signing-key.sec} (private
2303 key, which must be kept secret.) When @var{parameters} is omitted,
2304 an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt
2305 versions before 1.6.0, it is a 4096-bit RSA key.
2306 Alternatively, @var{parameters} can specify
2307 @code{genkey} parameters suitable for Libgcrypt (@pxref{General
2308 public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The
2309 Libgcrypt Reference Manual}).
2310
2311 @item --authorize
2312 @cindex authorizing, archives
2313 Authorize imports signed by the public key passed on standard input.
2314 The public key must be in ``s-expression advanced format''---i.e., the
2315 same format as the @file{signing-key.pub} file.
2316
2317 The list of authorized keys is kept in the human-editable file
2318 @file{/etc/guix/acl}. The file contains
2319 @url{http://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format
2320 s-expressions''} and is structured as an access-control list in the
2321 @url{http://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure
2322 (SPKI)}.
2323
2324 @item --extract=@var{directory}
2325 @itemx -x @var{directory}
2326 Read a single-item archive as served by substitute servers
2327 (@pxref{Substitutes}) and extract it to @var{directory}. This is a
2328 low-level operation needed in only very narrow use cases; see below.
2329
2330 For example, the following command extracts the substitute for Emacs
2331 served by @code{hydra.gnu.org} to @file{/tmp/emacs}:
2332
2333 @example
2334 $ wget -O - \
2335 https://hydra.gnu.org/nar/@dots{}-emacs-24.5 \
2336 | bunzip2 | guix archive -x /tmp/emacs
2337 @end example
2338
2339 Single-item archives are different from multiple-item archives produced
2340 by @command{guix archive --export}; they contain a single store item,
2341 and they do @emph{not} embed a signature. Thus this operation does
2342 @emph{no} signature verification and its output should be considered
2343 unsafe.
2344
2345 The primary purpose of this operation is to facilitate inspection of
2346 archive contents coming from possibly untrusted substitute servers.
2347
2348 @end table
2349
2350 @c *********************************************************************
2351 @include emacs.texi
2352
2353 @c *********************************************************************
2354 @node Programming Interface
2355 @chapter Programming Interface
2356
2357 GNU Guix provides several Scheme programming interfaces (APIs) to
2358 define, build, and query packages. The first interface allows users to
2359 write high-level package definitions. These definitions refer to
2360 familiar packaging concepts, such as the name and version of a package,
2361 its build system, and its dependencies. These definitions can then be
2362 turned into concrete build actions.
2363
2364 Build actions are performed by the Guix daemon, on behalf of users. In a
2365 standard setup, the daemon has write access to the store---the
2366 @file{/gnu/store} directory---whereas users do not. The recommended
2367 setup also has the daemon perform builds in chroots, under a specific
2368 build users, to minimize interference with the rest of the system.
2369
2370 @cindex derivation
2371 Lower-level APIs are available to interact with the daemon and the
2372 store. To instruct the daemon to perform a build action, users actually
2373 provide it with a @dfn{derivation}. A derivation is a low-level
2374 representation of the build actions to be taken, and the environment in
2375 which they should occur---derivations are to package definitions what
2376 assembly is to C programs. The term ``derivation'' comes from the fact
2377 that build results @emph{derive} from them.
2378
2379 This chapter describes all these APIs in turn, starting from high-level
2380 package definitions.
2381
2382 @menu
2383 * Defining Packages:: Defining new packages.
2384 * Build Systems:: Specifying how packages are built.
2385 * The Store:: Manipulating the package store.
2386 * Derivations:: Low-level interface to package derivations.
2387 * The Store Monad:: Purely functional interface to the store.
2388 * G-Expressions:: Manipulating build expressions.
2389 @end menu
2390
2391 @node Defining Packages
2392 @section Defining Packages
2393
2394 The high-level interface to package definitions is implemented in the
2395 @code{(guix packages)} and @code{(guix build-system)} modules. As an
2396 example, the package definition, or @dfn{recipe}, for the GNU Hello
2397 package looks like this:
2398
2399 @example
2400 (define-module (gnu packages hello)
2401 #:use-module (guix packages)
2402 #:use-module (guix download)
2403 #:use-module (guix build-system gnu)
2404 #:use-module (guix licenses)
2405 #:use-module (gnu packages gawk))
2406
2407 (define-public hello
2408 (package
2409 (name "hello")
2410 (version "2.10")
2411 (source (origin
2412 (method url-fetch)
2413 (uri (string-append "mirror://gnu/hello/hello-" version
2414 ".tar.gz"))
2415 (sha256
2416 (base32
2417 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
2418 (build-system gnu-build-system)
2419 (arguments '(#:configure-flags '("--enable-silent-rules")))
2420 (inputs `(("gawk" ,gawk)))
2421 (synopsis "Hello, GNU world: An example GNU package")
2422 (description "Guess what GNU Hello prints!")
2423 (home-page "http://www.gnu.org/software/hello/")
2424 (license gpl3+)))
2425 @end example
2426
2427 @noindent
2428 Without being a Scheme expert, the reader may have guessed the meaning
2429 of the various fields here. This expression binds the variable
2430 @code{hello} to a @code{<package>} object, which is essentially a record
2431 (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}).
2432 This package object can be inspected using procedures found in the
2433 @code{(guix packages)} module; for instance, @code{(package-name hello)}
2434 returns---surprise!---@code{"hello"}.
2435
2436 With luck, you may be able to import part or all of the definition of
2437 the package you are interested in from another repository, using the
2438 @code{guix import} command (@pxref{Invoking guix import}).
2439
2440 In the example above, @var{hello} is defined in a module of its own,
2441 @code{(gnu packages hello)}. Technically, this is not strictly
2442 necessary, but it is convenient to do so: all the packages defined in
2443 modules under @code{(gnu packages @dots{})} are automatically known to
2444 the command-line tools (@pxref{Package Modules}).
2445
2446 There are a few points worth noting in the above package definition:
2447
2448 @itemize
2449 @item
2450 The @code{source} field of the package is an @code{<origin>} object
2451 (@pxref{origin Reference}, for the complete reference).
2452 Here, the @code{url-fetch} method from @code{(guix download)} is used,
2453 meaning that the source is a file to be downloaded over FTP or HTTP.
2454
2455 The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of
2456 the GNU mirrors defined in @code{(guix download)}.
2457
2458 The @code{sha256} field specifies the expected SHA256 hash of the file
2459 being downloaded. It is mandatory, and allows Guix to check the
2460 integrity of the file. The @code{(base32 @dots{})} form introduces the
2461 base32 representation of the hash. You can obtain this information with
2462 @code{guix download} (@pxref{Invoking guix download}) and @code{guix
2463 hash} (@pxref{Invoking guix hash}).
2464
2465 @cindex patches
2466 When needed, the @code{origin} form can also have a @code{patches} field
2467 listing patches to be applied, and a @code{snippet} field giving a
2468 Scheme expression to modify the source code.
2469
2470 @item
2471 @cindex GNU Build System
2472 The @code{build-system} field specifies the procedure to build the
2473 package (@pxref{Build Systems}). Here, @var{gnu-build-system}
2474 represents the familiar GNU Build System, where packages may be
2475 configured, built, and installed with the usual @code{./configure &&
2476 make && make check && make install} command sequence.
2477
2478 @item
2479 The @code{arguments} field specifies options for the build system
2480 (@pxref{Build Systems}). Here it is interpreted by
2481 @var{gnu-build-system} as a request run @file{configure} with the
2482 @code{--enable-silent-rules} flag.
2483
2484 @cindex quote
2485 @cindex quoting
2486 @findex '
2487 @findex quote
2488 What about these quote (@code{'}) characters? They are Scheme syntax to
2489 introduce a literal list; @code{'} is synonymous with @code{quote}.
2490 @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual},
2491 for details. Here the value of the @code{arguments} field is a list of
2492 arguments passed to the build system down the road, as with @code{apply}
2493 (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference
2494 Manual}).
2495
2496 The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword}
2497 (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and
2498 @code{#:configure-flags} is a keyword used to pass a keyword argument
2499 to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile
2500 Reference Manual}).
2501
2502 @item
2503 The @code{inputs} field specifies inputs to the build process---i.e.,
2504 build-time or run-time dependencies of the package. Here, we define an
2505 input called @code{"gawk"} whose value is that of the @var{gawk}
2506 variable; @var{gawk} is itself bound to a @code{<package>} object.
2507
2508 @cindex backquote (quasiquote)
2509 @findex `
2510 @findex quasiquote
2511 @cindex comma (unquote)
2512 @findex ,
2513 @findex unquote
2514 @findex ,@@
2515 @findex unquote-splicing
2516 Again, @code{`} (a backquote, synonymous with @code{quasiquote}) allows
2517 us to introduce a literal list in the @code{inputs} field, while
2518 @code{,} (a comma, synonymous with @code{unquote}) allows us to insert a
2519 value in that list (@pxref{Expression Syntax, unquote,, guile, GNU Guile
2520 Reference Manual}).
2521
2522 Note that GCC, Coreutils, Bash, and other essential tools do not need to
2523 be specified as inputs here. Instead, @var{gnu-build-system} takes care
2524 of ensuring that they are present (@pxref{Build Systems}).
2525
2526 However, any other dependencies need to be specified in the
2527 @code{inputs} field. Any dependency not specified here will simply be
2528 unavailable to the build process, possibly leading to a build failure.
2529 @end itemize
2530
2531 @xref{package Reference}, for a full description of possible fields.
2532
2533 Once a package definition is in place, the
2534 package may actually be built using the @code{guix build} command-line
2535 tool (@pxref{Invoking guix build}). You can easily jump back to the
2536 package definition using the @command{guix edit} command
2537 (@pxref{Invoking guix edit}).
2538 @xref{Packaging Guidelines}, for
2539 more information on how to test package definitions, and
2540 @ref{Invoking guix lint}, for information on how to check a definition
2541 for style conformance.
2542
2543 Finally, updating the package definition to a new upstream version
2544 can be partly automated by the @command{guix refresh} command
2545 (@pxref{Invoking guix refresh}).
2546
2547 Behind the scenes, a derivation corresponding to the @code{<package>}
2548 object is first computed by the @code{package-derivation} procedure.
2549 That derivation is stored in a @code{.drv} file under @file{/gnu/store}.
2550 The build actions it prescribes may then be realized by using the
2551 @code{build-derivations} procedure (@pxref{The Store}).
2552
2553 @deffn {Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]
2554 Return the @code{<derivation>} object of @var{package} for @var{system}
2555 (@pxref{Derivations}).
2556
2557 @var{package} must be a valid @code{<package>} object, and @var{system}
2558 must be a string denoting the target system type---e.g.,
2559 @code{"x86_64-linux"} for an x86_64 Linux-based GNU system. @var{store}
2560 must be a connection to the daemon, which operates on the store
2561 (@pxref{The Store}).
2562 @end deffn
2563
2564 @noindent
2565 @cindex cross-compilation
2566 Similarly, it is possible to compute a derivation that cross-builds a
2567 package for some other system:
2568
2569 @deffn {Scheme Procedure} package-cross-derivation @var{store} @
2570 @var{package} @var{target} [@var{system}]
2571 Return the @code{<derivation>} object of @var{package} cross-built from
2572 @var{system} to @var{target}.
2573
2574 @var{target} must be a valid GNU triplet denoting the target hardware
2575 and operating system, such as @code{"mips64el-linux-gnu"}
2576 (@pxref{Configuration Names, GNU configuration triplets,, configure, GNU
2577 Configure and Build System}).
2578 @end deffn
2579
2580 @cindex package transformations
2581 @cindex input rewriting
2582 @cindex dependency tree rewriting
2583 Packages can be manipulated in arbitrary ways. An example of a useful
2584 transformation is @dfn{input rewriting}, whereby the dependency tree of
2585 a package is rewritten by replacing specific inputs by others:
2586
2587 @deffn {Scheme Procedure} package-input-rewriting @var{replacements} @
2588 [@var{rewrite-name}]
2589 Return a procedure that, when passed a package, replaces its direct and
2590 indirect dependencies (but not its implicit inputs) according to
2591 @var{replacements}. @var{replacements} is a list of package pairs; the
2592 first element of each pair is the package to replace, and the second one
2593 is the replacement.
2594
2595 Optionally, @var{rewrite-name} is a one-argument procedure that takes
2596 the name of a package and returns its new name after rewrite.
2597 @end deffn
2598
2599 @noindent
2600 Consider this example:
2601
2602 @example
2603 (define libressl-instead-of-openssl
2604 ;; This is a procedure to replace OPENSSL by LIBRESSL,
2605 ;; recursively.
2606 (package-input-rewriting `((,openssl . ,libressl))))
2607
2608 (define git-with-libressl
2609 (libressl-instead-of-openssl git))
2610 @end example
2611
2612 @noindent
2613 Here we first define a rewriting procedure that replaces @var{openssl}
2614 with @var{libressl}. Then we use it to define a @dfn{variant} of the
2615 @var{git} package that uses @var{libressl} instead of @var{openssl}.
2616 This is exactly what the @option{--with-input} command-line option does
2617 (@pxref{Package Transformation Options, @option{--with-input}}).
2618
2619 @menu
2620 * package Reference :: The package data type.
2621 * origin Reference:: The origin data type.
2622 @end menu
2623
2624
2625 @node package Reference
2626 @subsection @code{package} Reference
2627
2628 This section summarizes all the options available in @code{package}
2629 declarations (@pxref{Defining Packages}).
2630
2631 @deftp {Data Type} package
2632 This is the data type representing a package recipe.
2633
2634 @table @asis
2635 @item @code{name}
2636 The name of the package, as a string.
2637
2638 @item @code{version}
2639 The version of the package, as a string.
2640
2641 @item @code{source}
2642 An object telling how the source code for the package should be
2643 acquired. Most of the time, this is an @code{origin} object, which
2644 denotes a file fetched from the Internet (@pxref{origin Reference}). It
2645 can also be any other ``file-like'' object such as a @code{local-file},
2646 which denotes a file from the local file system (@pxref{G-Expressions,
2647 @code{local-file}}).
2648
2649 @item @code{build-system}
2650 The build system that should be used to build the package (@pxref{Build
2651 Systems}).
2652
2653 @item @code{arguments} (default: @code{'()})
2654 The arguments that should be passed to the build system. This is a
2655 list, typically containing sequential keyword-value pairs.
2656
2657 @item @code{inputs} (default: @code{'()})
2658 @itemx @code{native-inputs} (default: @code{'()})
2659 @itemx @code{propagated-inputs} (default: @code{'()})
2660 @cindex inputs, of packages
2661 These fields list dependencies of the package. Each one is a list of
2662 tuples, where each tuple has a label for the input (a string) as its
2663 first element, a package, origin, or derivation as its second element,
2664 and optionally the name of the output thereof that should be used, which
2665 defaults to @code{"out"} (@pxref{Packages with Multiple Outputs}, for
2666 more on package outputs). For example, the list below specifies three
2667 inputs:
2668
2669 @example
2670 `(("libffi" ,libffi)
2671 ("libunistring" ,libunistring)
2672 ("glib:bin" ,glib "bin")) ;the "bin" output of Glib
2673 @end example
2674
2675 @cindex cross compilation, package dependencies
2676 The distinction between @code{native-inputs} and @code{inputs} is
2677 necessary when considering cross-compilation. When cross-compiling,
2678 dependencies listed in @code{inputs} are built for the @emph{target}
2679 architecture; conversely, dependencies listed in @code{native-inputs}
2680 are built for the architecture of the @emph{build} machine.
2681
2682 @code{native-inputs} is typically used to list tools needed at
2683 build time, but not at run time, such as Autoconf, Automake, pkg-config,
2684 Gettext, or Bison. @command{guix lint} can report likely mistakes in
2685 this area (@pxref{Invoking guix lint}).
2686
2687 @anchor{package-propagated-inputs}
2688 Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the
2689 specified packages will be automatically installed alongside the package
2690 they belong to (@pxref{package-cmd-propagated-inputs, @command{guix
2691 package}}, for information on how @command{guix package} deals with
2692 propagated inputs.)
2693
2694 For example this is necessary when a C/C++ library needs headers of
2695 another library to compile, or when a pkg-config file refers to another
2696 one @i{via} its @code{Requires} field.
2697
2698 Another example where @code{propagated-inputs} is useful is for languages
2699 that lack a facility to record the run-time search path akin to the
2700 @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and
2701 more. To ensure that libraries written in those languages can find
2702 library code they depend on at run time, run-time dependencies must be
2703 listed in @code{propagated-inputs} rather than @code{inputs}.
2704
2705 @item @code{self-native-input?} (default: @code{#f})
2706 This is a Boolean field telling whether the package should use itself as
2707 a native input when cross-compiling.
2708
2709 @item @code{outputs} (default: @code{'("out")})
2710 The list of output names of the package. @xref{Packages with Multiple
2711 Outputs}, for typical uses of additional outputs.
2712
2713 @item @code{native-search-paths} (default: @code{'()})
2714 @itemx @code{search-paths} (default: @code{'()})
2715 A list of @code{search-path-specification} objects describing
2716 search-path environment variables honored by the package.
2717
2718 @item @code{replacement} (default: @code{#f})
2719 This must be either @code{#f} or a package object that will be used as a
2720 @dfn{replacement} for this package. @xref{Security Updates, grafts},
2721 for details.
2722
2723 @item @code{synopsis}
2724 A one-line description of the package.
2725
2726 @item @code{description}
2727 A more elaborate description of the package.
2728
2729 @item @code{license}
2730 The license of the package; a value from @code{(guix licenses)},
2731 or a list of such values.
2732
2733 @item @code{home-page}
2734 The URL to the home-page of the package, as a string.
2735
2736 @item @code{supported-systems} (default: @var{%supported-systems})
2737 The list of systems supported by the package, as strings of the form
2738 @code{architecture-kernel}, for example @code{"x86_64-linux"}.
2739
2740 @item @code{maintainers} (default: @code{'()})
2741 The list of maintainers of the package, as @code{maintainer} objects.
2742
2743 @item @code{location} (default: source location of the @code{package} form)
2744 The source location of the package. It is useful to override this when
2745 inheriting from another package, in which case this field is not
2746 automatically corrected.
2747 @end table
2748 @end deftp
2749
2750
2751 @node origin Reference
2752 @subsection @code{origin} Reference
2753
2754 This section summarizes all the options available in @code{origin}
2755 declarations (@pxref{Defining Packages}).
2756
2757 @deftp {Data Type} origin
2758 This is the data type representing a source code origin.
2759
2760 @table @asis
2761 @item @code{uri}
2762 An object containing the URI of the source. The object type depends on
2763 the @code{method} (see below). For example, when using the
2764 @var{url-fetch} method of @code{(guix download)}, the valid @code{uri}
2765 values are: a URL represented as a string, or a list thereof.
2766
2767 @item @code{method}
2768 A procedure that handles the URI.
2769
2770 Examples include:
2771
2772 @table @asis
2773 @item @var{url-fetch} from @code{(guix download)}
2774 download a file from the HTTP, HTTPS, or FTP URL specified in the
2775 @code{uri} field;
2776
2777 @vindex git-fetch
2778 @item @var{git-fetch} from @code{(guix git-download)}
2779 clone the Git version control repository, and check out the revision
2780 specified in the @code{uri} field as a @code{git-reference} object; a
2781 @code{git-reference} looks like this:
2782
2783 @example
2784 (git-reference
2785 (url "git://git.debian.org/git/pkg-shadow/shadow")
2786 (commit "v4.1.5.1"))
2787 @end example
2788 @end table
2789
2790 @item @code{sha256}
2791 A bytevector containing the SHA-256 hash of the source. Typically the
2792 @code{base32} form is used here to generate the bytevector from a
2793 base-32 string.
2794
2795 You can obtain this information using @code{guix download}
2796 (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking
2797 guix hash}).
2798
2799 @item @code{file-name} (default: @code{#f})
2800 The file name under which the source code should be saved. When this is
2801 @code{#f}, a sensible default value will be used in most cases. In case
2802 the source is fetched from a URL, the file name from the URL will be
2803 used. For version control checkouts, it is recommended to provide the
2804 file name explicitly because the default is not very descriptive.
2805
2806 @item @code{patches} (default: @code{'()})
2807 A list of file names containing patches to be applied to the source.
2808
2809 @item @code{snippet} (default: @code{#f})
2810 A G-expression (@pxref{G-Expressions}) or S-expression that will be run
2811 in the source directory. This is a convenient way to modify the source,
2812 sometimes more convenient than a patch.
2813
2814 @item @code{patch-flags} (default: @code{'("-p1")})
2815 A list of command-line flags that should be passed to the @code{patch}
2816 command.
2817
2818 @item @code{patch-inputs} (default: @code{#f})
2819 Input packages or derivations to the patching process. When this is
2820 @code{#f}, the usual set of inputs necessary for patching are provided,
2821 such as GNU@tie{}Patch.
2822
2823 @item @code{modules} (default: @code{'()})
2824 A list of Guile modules that should be loaded during the patching
2825 process and while running the code in the @code{snippet} field.
2826
2827 @item @code{patch-guile} (default: @code{#f})
2828 The Guile package that should be used in the patching process. When
2829 this is @code{#f}, a sensible default is used.
2830 @end table
2831 @end deftp
2832
2833
2834 @node Build Systems
2835 @section Build Systems
2836
2837 @cindex build system
2838 Each package definition specifies a @dfn{build system} and arguments for
2839 that build system (@pxref{Defining Packages}). This @code{build-system}
2840 field represents the build procedure of the package, as well as implicit
2841 dependencies of that build procedure.
2842
2843 Build systems are @code{<build-system>} objects. The interface to
2844 create and manipulate them is provided by the @code{(guix build-system)}
2845 module, and actual build systems are exported by specific modules.
2846
2847 @cindex bag (low-level package representation)
2848 Under the hood, build systems first compile package objects to
2849 @dfn{bags}. A @dfn{bag} is like a package, but with less
2850 ornamentation---in other words, a bag is a lower-level representation of
2851 a package, which includes all the inputs of that package, including some
2852 that were implicitly added by the build system. This intermediate
2853 representation is then compiled to a derivation (@pxref{Derivations}).
2854
2855 Build systems accept an optional list of @dfn{arguments}. In package
2856 definitions, these are passed @i{via} the @code{arguments} field
2857 (@pxref{Defining Packages}). They are typically keyword arguments
2858 (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU
2859 Guile Reference Manual}). The value of these arguments is usually
2860 evaluated in the @dfn{build stratum}---i.e., by a Guile process launched
2861 by the daemon (@pxref{Derivations}).
2862
2863 The main build system is @var{gnu-build-system}, which implements the
2864 standard build procedure for GNU and many other packages. It
2865 is provided by the @code{(guix build-system gnu)} module.
2866
2867 @defvr {Scheme Variable} gnu-build-system
2868 @var{gnu-build-system} represents the GNU Build System, and variants
2869 thereof (@pxref{Configuration, configuration and makefile conventions,,
2870 standards, GNU Coding Standards}).
2871
2872 @cindex build phases
2873 In a nutshell, packages using it are configured, built, and installed with
2874 the usual @code{./configure && make && make check && make install}
2875 command sequence. In practice, a few additional steps are often needed.
2876 All these steps are split up in separate @dfn{phases},
2877 notably@footnote{Please see the @code{(guix build gnu-build-system)}
2878 modules for more details about the build phases.}:
2879
2880 @table @code
2881 @item unpack
2882 Unpack the source tarball, and change the current directory to the
2883 extracted source tree. If the source is actually a directory, copy it
2884 to the build tree, and enter that directory.
2885
2886 @item patch-source-shebangs
2887 Patch shebangs encountered in source files so they refer to the right
2888 store file names. For instance, this changes @code{#!/bin/sh} to
2889 @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}.
2890
2891 @item configure
2892 Run the @file{configure} script with a number of default options, such
2893 as @code{--prefix=/gnu/store/@dots{}}, as well as the options specified
2894 by the @code{#:configure-flags} argument.
2895
2896 @item build
2897 Run @code{make} with the list of flags specified with
2898 @code{#:make-flags}. If the @code{#:parallel-build?} argument is true
2899 (the default), build with @code{make -j}.
2900
2901 @item check
2902 Run @code{make check}, or some other target specified with
2903 @code{#:test-target}, unless @code{#:tests? #f} is passed. If the
2904 @code{#:parallel-tests?} argument is true (the default), run @code{make
2905 check -j}.
2906
2907 @item install
2908 Run @code{make install} with the flags listed in @code{#:make-flags}.
2909
2910 @item patch-shebangs
2911 Patch shebangs on the installed executable files.
2912
2913 @item strip
2914 Strip debugging symbols from ELF files (unless @code{#:strip-binaries?}
2915 is false), copying them to the @code{debug} output when available
2916 (@pxref{Installing Debugging Files}).
2917 @end table
2918
2919 @vindex %standard-phases
2920 The build-side module @code{(guix build gnu-build-system)} defines
2921 @var{%standard-phases} as the default list of build phases.
2922 @var{%standard-phases} is a list of symbol/procedure pairs, where the
2923 procedure implements the actual phase.
2924
2925 The list of phases used for a particular package can be changed with the
2926 @code{#:phases} parameter. For instance, passing:
2927
2928 @example
2929 #:phases (modify-phases %standard-phases (delete 'configure))
2930 @end example
2931
2932 means that all the phases described above will be used, except the
2933 @code{configure} phase.
2934
2935 In addition, this build system ensures that the ``standard'' environment
2936 for GNU packages is available. This includes tools such as GCC, libc,
2937 Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix
2938 build-system gnu)} module for a complete list). We call these the
2939 @dfn{implicit inputs} of a package, because package definitions do not
2940 have to mention them.
2941 @end defvr
2942
2943 Other @code{<build-system>} objects are defined to support other
2944 conventions and tools used by free software packages. They inherit most
2945 of @var{gnu-build-system}, and differ mainly in the set of inputs
2946 implicitly added to the build process, and in the list of phases
2947 executed. Some of these build systems are listed below.
2948
2949 @defvr {Scheme Variable} ant-build-system
2950 This variable is exported by @code{(guix build-system ant)}. It
2951 implements the build procedure for Java packages that can be built with
2952 @url{http://ant.apache.org/, Ant build tool}.
2953
2954 It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as
2955 provided by the @code{icedtea} package to the set of inputs. Different
2956 packages can be specified with the @code{#:ant} and @code{#:jdk}
2957 parameters, respectively.
2958
2959 When the original package does not provide a suitable Ant build file,
2960 the parameter @code{#:jar-name} can be used to generate a minimal Ant
2961 build file @file{build.xml} with tasks to build the specified jar
2962 archive.
2963
2964 The parameter @code{#:build-target} can be used to specify the Ant task
2965 that should be run during the @code{build} phase. By default the
2966 ``jar'' task will be run.
2967
2968 @end defvr
2969
2970 @defvr {Scheme Variable} asdf-build-system/source
2971 @defvrx {Scheme Variable} asdf-build-system/sbcl
2972 @defvrx {Scheme Variable} asdf-build-system/ecl
2973
2974 These variables, exported by @code{(guix build-system asdf)}, implement
2975 build procedures for Common Lisp packages using
2976 @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system
2977 definition facility for Common Lisp programs and libraries.
2978
2979 The @code{asdf-build-system/source} system installs the packages in
2980 source form, and can be loaded using any common lisp implementation, via
2981 ASDF. The others, such as @code{asdf-build-system/sbcl}, install binary
2982 systems in the format which a particular implementation understands.
2983 These build systems can also be used to produce executable programs, or
2984 lisp images which contain a set of packages pre-loaded.
2985
2986 The build system uses naming conventions. For binary packages, the
2987 package itself as well as its run-time dependencies should begin their
2988 name with the lisp implementation, such as @code{sbcl-} for
2989 @code{asdf-build-system/sbcl}. Beginning the input name with this
2990 prefix will allow the build system to encode its location into the
2991 resulting library, so that the input can be found at run-time.
2992
2993 If dependencies are used only for tests, it is convenient to use a
2994 different prefix in order to avoid having a run-time dependency on such
2995 systems. For example,
2996
2997 @example
2998 (define-public sbcl-bordeaux-threads
2999 (package
3000 ...
3001 (native-inputs `(("tests:cl-fiveam" ,sbcl-fiveam)))
3002 ...))
3003 @end example
3004
3005 Additionally, the corresponding source package should be labeled using
3006 the same convention as python packages (see @ref{Python Modules}), using
3007 the @code{cl-} prefix.
3008
3009 For binary packages, each system should be defined as a Guix package.
3010 If one package @code{origin} contains several systems, package variants
3011 can be created in order to build all the systems. Source packages,
3012 which use @code{asdf-build-system/source}, may contain several systems.
3013
3014 In order to create executable programs and images, the build-side
3015 procedures @code{build-program} and @code{build-image} can be used.
3016 They should be called in a build phase after the @code{create-symlinks}
3017 phase, so that the system which was just built can be used within the
3018 resulting image. @code{build-program} requires a list of Common Lisp
3019 expressions to be passed as the @code{#:entry-program} argument.
3020
3021 If the system is not defined within its own @code{.asd} file of the same
3022 name, then the @code{#:asd-file} parameter should be used to specify
3023 which file the system is defined in.
3024
3025 @end defvr
3026
3027 @defvr {Scheme Variable} cmake-build-system
3028 This variable is exported by @code{(guix build-system cmake)}. It
3029 implements the build procedure for packages using the
3030 @url{http://www.cmake.org, CMake build tool}.
3031
3032 It automatically adds the @code{cmake} package to the set of inputs.
3033 Which package is used can be specified with the @code{#:cmake}
3034 parameter.
3035
3036 The @code{#:configure-flags} parameter is taken as a list of flags
3037 passed to the @command{cmake} command. The @code{#:build-type}
3038 parameter specifies in abstract terms the flags passed to the compiler;
3039 it defaults to @code{"RelWithDebInfo"} (short for ``release mode with
3040 debugging information''), which roughly means that code is compiled with
3041 @code{-O2 -g}, as is the case for Autoconf-based packages by default.
3042 @end defvr
3043
3044 @defvr {Scheme Variable} glib-or-gtk-build-system
3045 This variable is exported by @code{(guix build-system glib-or-gtk)}. It
3046 is intended for use with packages making use of GLib or GTK+.
3047
3048 This build system adds the following two phases to the ones defined by
3049 @var{gnu-build-system}:
3050
3051 @table @code
3052 @item glib-or-gtk-wrap
3053 The phase @code{glib-or-gtk-wrap} ensures that programs in
3054 @file{bin/} are able to find GLib ``schemas'' and
3055 @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+
3056 modules}. This is achieved by wrapping the programs in launch scripts
3057 that appropriately set the @code{XDG_DATA_DIRS} and @code{GTK_PATH}
3058 environment variables.
3059
3060 It is possible to exclude specific package outputs from that wrapping
3061 process by listing their names in the
3062 @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful
3063 when an output is known not to contain any GLib or GTK+ binaries, and
3064 where wrapping would gratuitously add a dependency of that output on
3065 GLib and GTK+.
3066
3067 @item glib-or-gtk-compile-schemas
3068 The phase @code{glib-or-gtk-compile-schemas} makes sure that all
3069 @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html,
3070 GSettings schemas} of GLib are compiled. Compilation is performed by the
3071 @command{glib-compile-schemas} program. It is provided by the package
3072 @code{glib:bin} which is automatically imported by the build system.
3073 The @code{glib} package providing @command{glib-compile-schemas} can be
3074 specified with the @code{#:glib} parameter.
3075 @end table
3076
3077 Both phases are executed after the @code{install} phase.
3078 @end defvr
3079
3080 @defvr {Scheme Variable} python-build-system
3081 This variable is exported by @code{(guix build-system python)}. It
3082 implements the more or less standard build procedure used by Python
3083 packages, which consists in running @code{python setup.py build} and
3084 then @code{python setup.py install --prefix=/gnu/store/@dots{}}.
3085
3086 For packages that install stand-alone Python programs under @code{bin/},
3087 it takes care of wrapping these programs so that their @code{PYTHONPATH}
3088 environment variable points to all the Python libraries they depend on.
3089
3090 Which Python package is used to perform the build can be specified with
3091 the @code{#:python} parameter. This is a useful way to force a package
3092 to be built for a specific version of the Python interpreter, which
3093 might be necessary if the package is only compatible with a single
3094 interpreter version.
3095 @end defvr
3096
3097 @defvr {Scheme Variable} perl-build-system
3098 This variable is exported by @code{(guix build-system perl)}. It
3099 implements the standard build procedure for Perl packages, which either
3100 consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}},
3101 followed by @code{Build} and @code{Build install}; or in running
3102 @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by
3103 @code{make} and @code{make install}, depending on which of
3104 @code{Build.PL} or @code{Makefile.PL} is present in the package
3105 distribution. Preference is given to the former if both @code{Build.PL}
3106 and @code{Makefile.PL} exist in the package distribution. This
3107 preference can be reversed by specifying @code{#t} for the
3108 @code{#:make-maker?} parameter.
3109
3110 The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation
3111 passes flags specified by the @code{#:make-maker-flags} or
3112 @code{#:module-build-flags} parameter, respectively.
3113
3114 Which Perl package is used can be specified with @code{#:perl}.
3115 @end defvr
3116
3117 @defvr {Scheme Variable} r-build-system
3118 This variable is exported by @code{(guix build-system r)}. It
3119 implements the build procedure used by @uref{http://r-project.org, R}
3120 packages, which essentially is little more than running @code{R CMD
3121 INSTALL --library=/gnu/store/@dots{}} in an environment where
3122 @code{R_LIBS_SITE} contains the paths to all R package inputs. Tests
3123 are run after installation using the R function
3124 @code{tools::testInstalledPackage}.
3125 @end defvr
3126
3127 @defvr {Scheme Variable} ruby-build-system
3128 This variable is exported by @code{(guix build-system ruby)}. It
3129 implements the RubyGems build procedure used by Ruby packages, which
3130 involves running @code{gem build} followed by @code{gem install}.
3131
3132 The @code{source} field of a package that uses this build system
3133 typically references a gem archive, since this is the format that Ruby
3134 developers use when releasing their software. The build system unpacks
3135 the gem archive, potentially patches the source, runs the test suite,
3136 repackages the gem, and installs it. Additionally, directories and
3137 tarballs may be referenced to allow building unreleased gems from Git or
3138 a traditional source release tarball.
3139
3140 Which Ruby package is used can be specified with the @code{#:ruby}
3141 parameter. A list of additional flags to be passed to the @command{gem}
3142 command can be specified with the @code{#:gem-flags} parameter.
3143 @end defvr
3144
3145 @defvr {Scheme Variable} waf-build-system
3146 This variable is exported by @code{(guix build-system waf)}. It
3147 implements a build procedure around the @code{waf} script. The common
3148 phases---@code{configure}, @code{build}, and @code{install}---are
3149 implemented by passing their names as arguments to the @code{waf}
3150 script.
3151
3152 The @code{waf} script is executed by the Python interpreter. Which
3153 Python package is used to run the script can be specified with the
3154 @code{#:python} parameter.
3155 @end defvr
3156
3157 @defvr {Scheme Variable} haskell-build-system
3158 This variable is exported by @code{(guix build-system haskell)}. It
3159 implements the Cabal build procedure used by Haskell packages, which
3160 involves running @code{runhaskell Setup.hs configure
3161 --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}.
3162 Instead of installing the package by running @code{runhaskell Setup.hs
3163 install}, to avoid trying to register libraries in the read-only
3164 compiler store directory, the build system uses @code{runhaskell
3165 Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In
3166 addition, the build system generates the package documentation by
3167 running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f}
3168 is passed. Optional Haddock parameters can be passed with the help of
3169 the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is
3170 not found, the build system looks for @code{Setup.lhs} instead.
3171
3172 Which Haskell compiler is used can be specified with the @code{#:haskell}
3173 parameter which defaults to @code{ghc}.
3174 @end defvr
3175
3176 @defvr {Scheme Variable} emacs-build-system
3177 This variable is exported by @code{(guix build-system emacs)}. It
3178 implements an installation procedure similar to the packaging system
3179 of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
3180
3181 It first creates the @code{@var{package}-autoloads.el} file, then it
3182 byte compiles all Emacs Lisp files. Differently from the Emacs
3183 packaging system, the Info documentation files are moved to the standard
3184 documentation directory and the @file{dir} file is deleted. Each
3185 package is installed in its own directory under
3186 @file{share/emacs/site-lisp/guix.d}.
3187 @end defvr
3188
3189 Lastly, for packages that do not need anything as sophisticated, a
3190 ``trivial'' build system is provided. It is trivial in the sense that
3191 it provides basically no support: it does not pull any implicit inputs,
3192 and does not have a notion of build phases.
3193
3194 @defvr {Scheme Variable} trivial-build-system
3195 This variable is exported by @code{(guix build-system trivial)}.
3196
3197 This build system requires a @code{#:builder} argument. This argument
3198 must be a Scheme expression that builds the package output(s)---as
3199 with @code{build-expression->derivation} (@pxref{Derivations,
3200 @code{build-expression->derivation}}).
3201 @end defvr
3202
3203 @node The Store
3204 @section The Store
3205
3206 @cindex store
3207 @cindex store items
3208 @cindex store paths
3209
3210 Conceptually, the @dfn{store} is the place where derivations that have
3211 been built successfully are stored---by default, @file{/gnu/store}.
3212 Sub-directories in the store are referred to as @dfn{store items} or
3213 sometimes @dfn{store paths}. The store has an associated database that
3214 contains information such as the store paths referred to by each store
3215 path, and the list of @emph{valid} store items---results of successful
3216 builds. This database resides in @file{@var{localstatedir}/guix/db},
3217 where @var{localstatedir} is the state directory specified @i{via}
3218 @option{--localstatedir} at configure time, usually @file{/var}.
3219
3220 The store is @emph{always} accessed by the daemon on behalf of its clients
3221 (@pxref{Invoking guix-daemon}). To manipulate the store, clients
3222 connect to the daemon over a Unix-domain socket, send requests to it,
3223 and read the result---these are remote procedure calls, or RPCs.
3224
3225 @quotation Note
3226 Users must @emph{never} modify files under @file{/gnu/store} directly.
3227 This would lead to inconsistencies and break the immutability
3228 assumptions of Guix's functional model (@pxref{Introduction}).
3229
3230 @xref{Invoking guix gc, @command{guix gc --verify}}, for information on
3231 how to check the integrity of the store and attempt recovery from
3232 accidental modifications.
3233 @end quotation
3234
3235 The @code{(guix store)} module provides procedures to connect to the
3236 daemon, and to perform RPCs. These are described below.
3237
3238 @deffn {Scheme Procedure} open-connection [@var{file}] [#:reserve-space? #t]
3239 Connect to the daemon over the Unix-domain socket at @var{file}. When
3240 @var{reserve-space?} is true, instruct it to reserve a little bit of
3241 extra space on the file system so that the garbage collector can still
3242 operate should the disk become full. Return a server object.
3243
3244 @var{file} defaults to @var{%default-socket-path}, which is the normal
3245 location given the options that were passed to @command{configure}.
3246 @end deffn
3247
3248 @deffn {Scheme Procedure} close-connection @var{server}
3249 Close the connection to @var{server}.
3250 @end deffn
3251
3252 @defvr {Scheme Variable} current-build-output-port
3253 This variable is bound to a SRFI-39 parameter, which refers to the port
3254 where build and error logs sent by the daemon should be written.
3255 @end defvr
3256
3257 Procedures that make RPCs all take a server object as their first
3258 argument.
3259
3260 @deffn {Scheme Procedure} valid-path? @var{server} @var{path}
3261 @cindex invalid store items
3262 Return @code{#t} when @var{path} designates a valid store item and
3263 @code{#f} otherwise (an invalid item may exist on disk but still be
3264 invalid, for instance because it is the result of an aborted or failed
3265 build.)
3266
3267 A @code{&nix-protocol-error} condition is raised if @var{path} is not
3268 prefixed by the store directory (@file{/gnu/store}).
3269 @end deffn
3270
3271 @deffn {Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]
3272 Add @var{text} under file @var{name} in the store, and return its store
3273 path. @var{references} is the list of store paths referred to by the
3274 resulting store path.
3275 @end deffn
3276
3277 @deffn {Scheme Procedure} build-derivations @var{server} @var{derivations}
3278 Build @var{derivations} (a list of @code{<derivation>} objects or
3279 derivation paths), and return when the worker is done building them.
3280 Return @code{#t} on success.
3281 @end deffn
3282
3283 Note that the @code{(guix monads)} module provides a monad as well as
3284 monadic versions of the above procedures, with the goal of making it
3285 more convenient to work with code that accesses the store (@pxref{The
3286 Store Monad}).
3287
3288 @c FIXME
3289 @i{This section is currently incomplete.}
3290
3291 @node Derivations
3292 @section Derivations
3293
3294 @cindex derivations
3295 Low-level build actions and the environment in which they are performed
3296 are represented by @dfn{derivations}. A derivation contains the
3297 following pieces of information:
3298
3299 @itemize
3300 @item
3301 The outputs of the derivation---derivations produce at least one file or
3302 directory in the store, but may produce more.
3303
3304 @item
3305 The inputs of the derivations, which may be other derivations or plain
3306 files in the store (patches, build scripts, etc.)
3307
3308 @item
3309 The system type targeted by the derivation---e.g., @code{x86_64-linux}.
3310
3311 @item
3312 The file name of a build script in the store, along with the arguments
3313 to be passed.
3314
3315 @item
3316 A list of environment variables to be defined.
3317
3318 @end itemize
3319
3320 @cindex derivation path
3321 Derivations allow clients of the daemon to communicate build actions to
3322 the store. They exist in two forms: as an in-memory representation,
3323 both on the client- and daemon-side, and as files in the store whose
3324 name end in @code{.drv}---these files are referred to as @dfn{derivation
3325 paths}. Derivations paths can be passed to the @code{build-derivations}
3326 procedure to perform the build actions they prescribe (@pxref{The
3327 Store}).
3328
3329 The @code{(guix derivations)} module provides a representation of
3330 derivations as Scheme objects, along with procedures to create and
3331 otherwise manipulate derivations. The lowest-level primitive to create
3332 a derivation is the @code{derivation} procedure:
3333
3334 @deffn {Scheme Procedure} derivation @var{store} @var{name} @var{builder} @
3335 @var{args} [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
3336 [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @
3337 [#:system (%current-system)] [#:references-graphs #f] @
3338 [#:allowed-references #f] [#:disallowed-references #f] @
3339 [#:leaked-env-vars #f] [#:local-build? #f] @
3340 [#:substitutable? #t]
3341 Build a derivation with the given arguments, and return the resulting
3342 @code{<derivation>} object.
3343
3344 When @var{hash} and @var{hash-algo} are given, a
3345 @dfn{fixed-output derivation} is created---i.e., one whose result is
3346 known in advance, such as a file download. If, in addition,
3347 @var{recursive?} is true, then that fixed output may be an executable
3348 file or a directory and @var{hash} must be the hash of an archive
3349 containing this output.
3350
3351 When @var{references-graphs} is true, it must be a list of file
3352 name/store path pairs. In that case, the reference graph of each store
3353 path is exported in the build environment in the corresponding file, in
3354 a simple text format.
3355
3356 When @var{allowed-references} is true, it must be a list of store items
3357 or outputs that the derivation's output may refer to. Likewise,
3358 @var{disallowed-references}, if true, must be a list of things the
3359 outputs may @emph{not} refer to.
3360
3361 When @var{leaked-env-vars} is true, it must be a list of strings
3362 denoting environment variables that are allowed to ``leak'' from the
3363 daemon's environment to the build environment. This is only applicable
3364 to fixed-output derivations---i.e., when @var{hash} is true. The main
3365 use is to allow variables such as @code{http_proxy} to be passed to
3366 derivations that download files.
3367
3368 When @var{local-build?} is true, declare that the derivation is not a
3369 good candidate for offloading and should rather be built locally
3370 (@pxref{Daemon Offload Setup}). This is the case for small derivations
3371 where the costs of data transfers would outweigh the benefits.
3372
3373 When @var{substitutable?} is false, declare that substitutes of the
3374 derivation's output should not be used (@pxref{Substitutes}). This is
3375 useful, for instance, when building packages that capture details of the
3376 host CPU instruction set.
3377 @end deffn
3378
3379 @noindent
3380 Here's an example with a shell script as its builder, assuming
3381 @var{store} is an open connection to the daemon, and @var{bash} points
3382 to a Bash executable in the store:
3383
3384 @lisp
3385 (use-modules (guix utils)
3386 (guix store)
3387 (guix derivations))
3388
3389 (let ((builder ; add the Bash script to the store
3390 (add-text-to-store store "my-builder.sh"
3391 "echo hello world > $out\n" '())))
3392 (derivation store "foo"
3393 bash `("-e" ,builder)
3394 #:inputs `((,bash) (,builder))
3395 #:env-vars '(("HOME" . "/homeless"))))
3396 @result{} #<derivation /gnu/store/@dots{}-foo.drv => /gnu/store/@dots{}-foo>
3397 @end lisp
3398
3399 As can be guessed, this primitive is cumbersome to use directly. A
3400 better approach is to write build scripts in Scheme, of course! The
3401 best course of action for that is to write the build code as a
3402 ``G-expression'', and to pass it to @code{gexp->derivation}. For more
3403 information, @pxref{G-Expressions}.
3404
3405 Once upon a time, @code{gexp->derivation} did not exist and constructing
3406 derivations with build code written in Scheme was achieved with
3407 @code{build-expression->derivation}, documented below. This procedure
3408 is now deprecated in favor of the much nicer @code{gexp->derivation}.
3409
3410 @deffn {Scheme Procedure} build-expression->derivation @var{store} @
3411 @var{name} @var{exp} @
3412 [#:system (%current-system)] [#:inputs '()] @
3413 [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
3414 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
3415 [#:references-graphs #f] [#:allowed-references #f] @
3416 [#:disallowed-references #f] @
3417 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
3418 Return a derivation that executes Scheme expression @var{exp} as a
3419 builder for derivation @var{name}. @var{inputs} must be a list of
3420 @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted,
3421 @code{"out"} is assumed. @var{modules} is a list of names of Guile
3422 modules from the current search path to be copied in the store,
3423 compiled, and made available in the load path during the execution of
3424 @var{exp}---e.g., @code{((guix build utils) (guix build
3425 gnu-build-system))}.
3426
3427 @var{exp} is evaluated in an environment where @code{%outputs} is bound
3428 to a list of output/path pairs, and where @code{%build-inputs} is bound
3429 to a list of string/output-path pairs made from @var{inputs}.
3430 Optionally, @var{env-vars} is a list of string pairs specifying the name
3431 and value of environment variables visible to the builder. The builder
3432 terminates by passing the result of @var{exp} to @code{exit}; thus, when
3433 @var{exp} returns @code{#f}, the build is considered to have failed.
3434
3435 @var{exp} is built using @var{guile-for-build} (a derivation). When
3436 @var{guile-for-build} is omitted or is @code{#f}, the value of the
3437 @code{%guile-for-build} fluid is used instead.
3438
3439 See the @code{derivation} procedure for the meaning of
3440 @var{references-graphs}, @var{allowed-references},
3441 @var{disallowed-references}, @var{local-build?}, and
3442 @var{substitutable?}.
3443 @end deffn
3444
3445 @noindent
3446 Here's an example of a single-output derivation that creates a directory
3447 containing one file:
3448
3449 @lisp
3450 (let ((builder '(let ((out (assoc-ref %outputs "out")))
3451 (mkdir out) ; create /gnu/store/@dots{}-goo
3452 (call-with-output-file (string-append out "/test")
3453 (lambda (p)
3454 (display '(hello guix) p))))))
3455 (build-expression->derivation store "goo" builder))
3456
3457 @result{} #<derivation /gnu/store/@dots{}-goo.drv => @dots{}>
3458 @end lisp
3459
3460
3461 @node The Store Monad
3462 @section The Store Monad
3463
3464 @cindex monad
3465
3466 The procedures that operate on the store described in the previous
3467 sections all take an open connection to the build daemon as their first
3468 argument. Although the underlying model is functional, they either have
3469 side effects or depend on the current state of the store.
3470
3471 The former is inconvenient: the connection to the build daemon has to be
3472 carried around in all those functions, making it impossible to compose
3473 functions that do not take that parameter with functions that do. The
3474 latter can be problematic: since store operations have side effects
3475 and/or depend on external state, they have to be properly sequenced.
3476
3477 @cindex monadic values
3478 @cindex monadic functions
3479 This is where the @code{(guix monads)} module comes in. This module
3480 provides a framework for working with @dfn{monads}, and a particularly
3481 useful monad for our uses, the @dfn{store monad}. Monads are a
3482 construct that allows two things: associating ``context'' with values
3483 (in our case, the context is the store), and building sequences of
3484 computations (here computations include accesses to the store). Values
3485 in a monad---values that carry this additional context---are called
3486 @dfn{monadic values}; procedures that return such values are called
3487 @dfn{monadic procedures}.
3488
3489 Consider this ``normal'' procedure:
3490
3491 @example
3492 (define (sh-symlink store)
3493 ;; Return a derivation that symlinks the 'bash' executable.
3494 (let* ((drv (package-derivation store bash))
3495 (out (derivation->output-path drv))
3496 (sh (string-append out "/bin/bash")))
3497 (build-expression->derivation store "sh"
3498 `(symlink ,sh %output))))
3499 @end example
3500
3501 Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten
3502 as a monadic function:
3503
3504 @example
3505 (define (sh-symlink)
3506 ;; Same, but return a monadic value.
3507 (mlet %store-monad ((drv (package->derivation bash)))
3508 (gexp->derivation "sh"
3509 #~(symlink (string-append #$drv "/bin/bash")
3510 #$output))))
3511 @end example
3512
3513 There are several things to note in the second version: the @code{store}
3514 parameter is now implicit and is ``threaded'' in the calls to the
3515 @code{package->derivation} and @code{gexp->derivation} monadic
3516 procedures, and the monadic value returned by @code{package->derivation}
3517 is @dfn{bound} using @code{mlet} instead of plain @code{let}.
3518
3519 As it turns out, the call to @code{package->derivation} can even be
3520 omitted since it will take place implicitly, as we will see later
3521 (@pxref{G-Expressions}):
3522
3523 @example
3524 (define (sh-symlink)
3525 (gexp->derivation "sh"
3526 #~(symlink (string-append #$bash "/bin/bash")
3527 #$output)))
3528 @end example
3529
3530 @c See
3531 @c <https://syntaxexclamation.wordpress.com/2014/06/26/escaping-continuations/>
3532 @c for the funny quote.
3533 Calling the monadic @code{sh-symlink} has no effect. As someone once
3534 said, ``you exit a monad like you exit a building on fire: by running''.
3535 So, to exit the monad and get the desired effect, one must use
3536 @code{run-with-store}:
3537
3538 @example
3539 (run-with-store (open-connection) (sh-symlink))
3540 @result{} /gnu/store/...-sh-symlink
3541 @end example
3542
3543 Note that the @code{(guix monad-repl)} module extends the Guile REPL with
3544 new ``meta-commands'' to make it easier to deal with monadic procedures:
3545 @code{run-in-store}, and @code{enter-store-monad}. The former is used
3546 to ``run'' a single monadic value through the store:
3547
3548 @example
3549 scheme@@(guile-user)> ,run-in-store (package->derivation hello)
3550 $1 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3551 @end example
3552
3553 The latter enters a recursive REPL, where all the return values are
3554 automatically run through the store:
3555
3556 @example
3557 scheme@@(guile-user)> ,enter-store-monad
3558 store-monad@@(guile-user) [1]> (package->derivation hello)
3559 $2 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3560 store-monad@@(guile-user) [1]> (text-file "foo" "Hello!")
3561 $3 = "/gnu/store/@dots{}-foo"
3562 store-monad@@(guile-user) [1]> ,q
3563 scheme@@(guile-user)>
3564 @end example
3565
3566 @noindent
3567 Note that non-monadic values cannot be returned in the
3568 @code{store-monad} REPL.
3569
3570 The main syntactic forms to deal with monads in general are provided by
3571 the @code{(guix monads)} module and are described below.
3572
3573 @deffn {Scheme Syntax} with-monad @var{monad} @var{body} ...
3574 Evaluate any @code{>>=} or @code{return} forms in @var{body} as being
3575 in @var{monad}.
3576 @end deffn
3577
3578 @deffn {Scheme Syntax} return @var{val}
3579 Return a monadic value that encapsulates @var{val}.
3580 @end deffn
3581
3582 @deffn {Scheme Syntax} >>= @var{mval} @var{mproc} ...
3583 @dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic
3584 procedures @var{mproc}@dots{}@footnote{This operation is commonly
3585 referred to as ``bind'', but that name denotes an unrelated procedure in
3586 Guile. Thus we use this somewhat cryptic symbol inherited from the
3587 Haskell language.}. There can be one @var{mproc} or several of them, as
3588 in this example:
3589
3590 @example
3591 (run-with-state
3592 (with-monad %state-monad
3593 (>>= (return 1)
3594 (lambda (x) (return (+ 1 x)))
3595 (lambda (x) (return (* 2 x)))))
3596 'some-state)
3597
3598 @result{} 4
3599 @result{} some-state
3600 @end example
3601 @end deffn
3602
3603 @deffn {Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @
3604 @var{body} ...
3605 @deffnx {Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @
3606 @var{body} ...
3607 Bind the variables @var{var} to the monadic values @var{mval} in
3608 @var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the
3609 ``normal'' value @var{val}, as per @code{let}.
3610
3611 @code{mlet*} is to @code{mlet} what @code{let*} is to @code{let}
3612 (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual}).
3613 @end deffn
3614
3615 @deffn {Scheme System} mbegin @var{monad} @var{mexp} ...
3616 Bind @var{mexp} and the following monadic expressions in sequence,
3617 returning the result of the last expression.
3618
3619 This is akin to @code{mlet}, except that the return values of the
3620 monadic expressions are ignored. In that sense, it is analogous to
3621 @code{begin}, but applied to monadic expressions.
3622 @end deffn
3623
3624 @cindex state monad
3625 The @code{(guix monads)} module provides the @dfn{state monad}, which
3626 allows an additional value---the state---to be @emph{threaded} through
3627 monadic procedure calls.
3628
3629 @defvr {Scheme Variable} %state-monad
3630 The state monad. Procedures in the state monad can access and change
3631 the state that is threaded.
3632
3633 Consider the example below. The @code{square} procedure returns a value
3634 in the state monad. It returns the square of its argument, but also
3635 increments the current state value:
3636
3637 @example
3638 (define (square x)
3639 (mlet %state-monad ((count (current-state)))
3640 (mbegin %state-monad
3641 (set-current-state (+ 1 count))
3642 (return (* x x)))))
3643
3644 (run-with-state (sequence %state-monad (map square (iota 3))) 0)
3645 @result{} (0 1 4)
3646 @result{} 3
3647 @end example
3648
3649 When ``run'' through @var{%state-monad}, we obtain that additional state
3650 value, which is the number of @code{square} calls.
3651 @end defvr
3652
3653 @deffn {Monadic Procedure} current-state
3654 Return the current state as a monadic value.
3655 @end deffn
3656
3657 @deffn {Monadic Procedure} set-current-state @var{value}
3658 Set the current state to @var{value} and return the previous state as a
3659 monadic value.
3660 @end deffn
3661
3662 @deffn {Monadic Procedure} state-push @var{value}
3663 Push @var{value} to the current state, which is assumed to be a list,
3664 and return the previous state as a monadic value.
3665 @end deffn
3666
3667 @deffn {Monadic Procedure} state-pop
3668 Pop a value from the current state and return it as a monadic value.
3669 The state is assumed to be a list.
3670 @end deffn
3671
3672 @deffn {Scheme Procedure} run-with-state @var{mval} [@var{state}]
3673 Run monadic value @var{mval} starting with @var{state} as the initial
3674 state. Return two values: the resulting value, and the resulting state.
3675 @end deffn
3676
3677 The main interface to the store monad, provided by the @code{(guix
3678 store)} module, is as follows.
3679
3680 @defvr {Scheme Variable} %store-monad
3681 The store monad---an alias for @var{%state-monad}.
3682
3683 Values in the store monad encapsulate accesses to the store. When its
3684 effect is needed, a value of the store monad must be ``evaluated'' by
3685 passing it to the @code{run-with-store} procedure (see below.)
3686 @end defvr
3687
3688 @deffn {Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]
3689 Run @var{mval}, a monadic value in the store monad, in @var{store}, an
3690 open store connection.
3691 @end deffn
3692
3693 @deffn {Monadic Procedure} text-file @var{name} @var{text} [@var{references}]
3694 Return as a monadic value the absolute file name in the store of the file
3695 containing @var{text}, a string. @var{references} is a list of store items that the
3696 resulting text file refers to; it defaults to the empty list.
3697 @end deffn
3698
3699 @deffn {Monadic Procedure} interned-file @var{file} [@var{name}] @
3700 [#:recursive? #t] [#:select? (const #t)]
3701 Return the name of @var{file} once interned in the store. Use
3702 @var{name} as its store name, or the basename of @var{file} if
3703 @var{name} is omitted.
3704
3705 When @var{recursive?} is true, the contents of @var{file} are added
3706 recursively; if @var{file} designates a flat file and @var{recursive?}
3707 is true, its contents are added, and its permission bits are kept.
3708
3709 When @var{recursive?} is true, call @code{(@var{select?} @var{file}
3710 @var{stat})} for each directory entry, where @var{file} is the entry's
3711 absolute file name and @var{stat} is the result of @code{lstat}; exclude
3712 entries for which @var{select?} does not return true.
3713
3714 The example below adds a file to the store, under two different names:
3715
3716 @example
3717 (run-with-store (open-connection)
3718 (mlet %store-monad ((a (interned-file "README"))
3719 (b (interned-file "README" "LEGU-MIN")))
3720 (return (list a b))))
3721
3722 @result{} ("/gnu/store/rwm@dots{}-README" "/gnu/store/44i@dots{}-LEGU-MIN")
3723 @end example
3724
3725 @end deffn
3726
3727 The @code{(guix packages)} module exports the following package-related
3728 monadic procedures:
3729
3730 @deffn {Monadic Procedure} package-file @var{package} [@var{file}] @
3731 [#:system (%current-system)] [#:target #f] @
3732 [#:output "out"]
3733 Return as a monadic
3734 value in the absolute file name of @var{file} within the @var{output}
3735 directory of @var{package}. When @var{file} is omitted, return the name
3736 of the @var{output} directory of @var{package}. When @var{target} is
3737 true, use it as a cross-compilation target triplet.
3738 @end deffn
3739
3740 @deffn {Monadic Procedure} package->derivation @var{package} [@var{system}]
3741 @deffnx {Monadic Procedure} package->cross-derivation @var{package} @
3742 @var{target} [@var{system}]
3743 Monadic version of @code{package-derivation} and
3744 @code{package-cross-derivation} (@pxref{Defining Packages}).
3745 @end deffn
3746
3747
3748 @node G-Expressions
3749 @section G-Expressions
3750
3751 @cindex G-expression
3752 @cindex build code quoting
3753 So we have ``derivations'', which represent a sequence of build actions
3754 to be performed to produce an item in the store (@pxref{Derivations}).
3755 These build actions are performed when asking the daemon to actually
3756 build the derivations; they are run by the daemon in a container
3757 (@pxref{Invoking guix-daemon}).
3758
3759 @cindex strata of code
3760 It should come as no surprise that we like to write these build actions
3761 in Scheme. When we do that, we end up with two @dfn{strata} of Scheme
3762 code@footnote{The term @dfn{stratum} in this context was coined by
3763 Manuel Serrano et al.@: in the context of their work on Hop. Oleg
3764 Kiselyov, who has written insightful
3765 @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code
3766 on this topic}, refers to this kind of code generation as
3767 @dfn{staging}.}: the ``host code''---code that defines packages, talks
3768 to the daemon, etc.---and the ``build code''---code that actually
3769 performs build actions, such as making directories, invoking
3770 @command{make}, etc.
3771
3772 To describe a derivation and its build actions, one typically needs to
3773 embed build code inside host code. It boils down to manipulating build
3774 code as data, and the homoiconicity of Scheme---code has a direct
3775 representation as data---comes in handy for that. But we need more than
3776 the normal @code{quasiquote} mechanism in Scheme to construct build
3777 expressions.
3778
3779 The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of
3780 S-expressions adapted to build expressions. G-expressions, or
3781 @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp},
3782 @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~},
3783 @code{#$}, and @code{#$@@}), which are comparable to
3784 @code{quasiquote}, @code{unquote}, and @code{unquote-splicing},
3785 respectively (@pxref{Expression Syntax, @code{quasiquote},, guile,
3786 GNU Guile Reference Manual}). However, there are major differences:
3787
3788 @itemize
3789 @item
3790 Gexps are meant to be written to a file and run or manipulated by other
3791 processes.
3792
3793 @item
3794 When a high-level object such as a package or derivation is unquoted
3795 inside a gexp, the result is as if its output file name had been
3796 introduced.
3797
3798 @item
3799 Gexps carry information about the packages or derivations they refer to,
3800 and these dependencies are automatically added as inputs to the build
3801 processes that use them.
3802 @end itemize
3803
3804 @cindex lowering, of high-level objects in gexps
3805 This mechanism is not limited to package and derivation
3806 objects: @dfn{compilers} able to ``lower'' other high-level objects to
3807 derivations or files in the store can be defined,
3808 such that these objects can also be inserted
3809 into gexps. For example, a useful type of high-level objects that can be
3810 inserted in a gexp is ``file-like objects'', which make it easy to
3811 add files to the store and to refer to them in
3812 derivations and such (see @code{local-file} and @code{plain-file}
3813 below.)
3814
3815 To illustrate the idea, here is an example of a gexp:
3816
3817 @example
3818 (define build-exp
3819 #~(begin
3820 (mkdir #$output)
3821 (chdir #$output)
3822 (symlink (string-append #$coreutils "/bin/ls")
3823 "list-files")))
3824 @end example
3825
3826 This gexp can be passed to @code{gexp->derivation}; we obtain a
3827 derivation that builds a directory containing exactly one symlink to
3828 @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:
3829
3830 @example
3831 (gexp->derivation "the-thing" build-exp)
3832 @end example
3833
3834 As one would expect, the @code{"/gnu/store/@dots{}-coreutils-8.22"} string is
3835 substituted to the reference to the @var{coreutils} package in the
3836 actual build code, and @var{coreutils} is automatically made an input to
3837 the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp
3838 output)}) is replaced by a string containing the directory name of the
3839 output of the derivation.
3840
3841 @cindex cross compilation
3842 In a cross-compilation context, it is useful to distinguish between
3843 references to the @emph{native} build of a package---that can run on the
3844 host---versus references to cross builds of a package. To that end, the
3845 @code{#+} plays the same role as @code{#$}, but is a reference to a
3846 native package build:
3847
3848 @example
3849 (gexp->derivation "vi"
3850 #~(begin
3851 (mkdir #$output)
3852 (system* (string-append #+coreutils "/bin/ln")
3853 "-s"
3854 (string-append #$emacs "/bin/emacs")
3855 (string-append #$output "/bin/vi")))
3856 #:target "mips64el-linux-gnu")
3857 @end example
3858
3859 @noindent
3860 In the example above, the native build of @var{coreutils} is used, so
3861 that @command{ln} can actually run on the host; but then the
3862 cross-compiled build of @var{emacs} is referenced.
3863
3864 @cindex imported modules, for gexps
3865 @findex with-imported-modules
3866 Another gexp feature is @dfn{imported modules}: sometimes you want to be
3867 able to use certain Guile modules from the ``host environment'' in the
3868 gexp, so those modules should be imported in the ``build environment''.
3869 The @code{with-imported-modules} form allows you to express that:
3870
3871 @example
3872 (let ((build (with-imported-modules '((guix build utils))
3873 #~(begin
3874 (use-modules (guix build utils))
3875 (mkdir-p (string-append #$output "/bin"))))))
3876 (gexp->derivation "empty-dir"
3877 #~(begin
3878 #$build
3879 (display "success!\n")
3880 #t)))
3881 @end example
3882
3883 @noindent
3884 In this example, the @code{(guix build utils)} module is automatically
3885 pulled into the isolated build environment of our gexp, such that
3886 @code{(use-modules (guix build utils))} works as expected.
3887
3888 @cindex module closure
3889 @findex source-module-closure
3890 Usually you want the @emph{closure} of the module to be imported---i.e.,
3891 the module itself and all the modules it depends on---rather than just
3892 the module; failing to do that, attempts to use the module will fail
3893 because of missing dependent modules. The @code{source-module-closure}
3894 procedure computes the closure of a module by looking at its source file
3895 headers, which comes in handy in this case:
3896
3897 @example
3898 (use-modules (guix modules)) ;for 'source-module-closure'
3899
3900 (with-imported-modules (source-module-closure
3901 '((guix build utils)
3902 (gnu build vm)))
3903 (gexp->derivation "something-with-vms"
3904 #~(begin
3905 (use-modules (guix build utils)
3906 (gnu build vm))
3907 @dots{})))
3908 @end example
3909
3910 The syntactic form to construct gexps is summarized below.
3911
3912 @deffn {Scheme Syntax} #~@var{exp}
3913 @deffnx {Scheme Syntax} (gexp @var{exp})
3914 Return a G-expression containing @var{exp}. @var{exp} may contain one
3915 or more of the following forms:
3916
3917 @table @code
3918 @item #$@var{obj}
3919 @itemx (ungexp @var{obj})
3920 Introduce a reference to @var{obj}. @var{obj} may have one of the
3921 supported types, for example a package or a
3922 derivation, in which case the @code{ungexp} form is replaced by its
3923 output file name---e.g., @code{"/gnu/store/@dots{}-coreutils-8.22}.
3924
3925 If @var{obj} is a list, it is traversed and references to supported
3926 objects are substituted similarly.
3927
3928 If @var{obj} is another gexp, its contents are inserted and its
3929 dependencies are added to those of the containing gexp.
3930
3931 If @var{obj} is another kind of object, it is inserted as is.
3932
3933 @item #$@var{obj}:@var{output}
3934 @itemx (ungexp @var{obj} @var{output})
3935 This is like the form above, but referring explicitly to the
3936 @var{output} of @var{obj}---this is useful when @var{obj} produces
3937 multiple outputs (@pxref{Packages with Multiple Outputs}).
3938
3939 @item #+@var{obj}
3940 @itemx #+@var{obj}:output
3941 @itemx (ungexp-native @var{obj})
3942 @itemx (ungexp-native @var{obj} @var{output})
3943 Same as @code{ungexp}, but produces a reference to the @emph{native}
3944 build of @var{obj} when used in a cross compilation context.
3945
3946 @item #$output[:@var{output}]
3947 @itemx (ungexp output [@var{output}])
3948 Insert a reference to derivation output @var{output}, or to the main
3949 output when @var{output} is omitted.
3950
3951 This only makes sense for gexps passed to @code{gexp->derivation}.
3952
3953 @item #$@@@var{lst}
3954 @itemx (ungexp-splicing @var{lst})
3955 Like the above, but splices the contents of @var{lst} inside the
3956 containing list.
3957
3958 @item #+@@@var{lst}
3959 @itemx (ungexp-native-splicing @var{lst})
3960 Like the above, but refers to native builds of the objects listed in
3961 @var{lst}.
3962
3963 @end table
3964
3965 G-expressions created by @code{gexp} or @code{#~} are run-time objects
3966 of the @code{gexp?} type (see below.)
3967 @end deffn
3968
3969 @deffn {Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}
3970 Mark the gexps defined in @var{body}@dots{} as requiring @var{modules}
3971 in their execution environment. @var{modules} must be a list of Guile
3972 module names, such as @code{'((guix build utils) (guix build gremlin))}.
3973
3974 This form has @emph{lexical} scope: it has an effect on the gexps
3975 directly defined in @var{body}@dots{}, but not on those defined, say, in
3976 procedures called from @var{body}@dots{}.
3977 @end deffn
3978
3979 @deffn {Scheme Procedure} gexp? @var{obj}
3980 Return @code{#t} if @var{obj} is a G-expression.
3981 @end deffn
3982
3983 G-expressions are meant to be written to disk, either as code building
3984 some derivation, or as plain files in the store. The monadic procedures
3985 below allow you to do that (@pxref{The Store Monad}, for more
3986 information about monads.)
3987
3988 @deffn {Monadic Procedure} gexp->derivation @var{name} @var{exp} @
3989 [#:system (%current-system)] [#:target #f] [#:graft? #t] @
3990 [#:hash #f] [#:hash-algo #f] @
3991 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
3992 [#:module-path @var{%load-path}] @
3993 [#:references-graphs #f] [#:allowed-references #f] @
3994 [#:disallowed-references #f] @
3995 [#:leaked-env-vars #f] @
3996 [#:script-name (string-append @var{name} "-builder")] @
3997 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
3998 Return a derivation @var{name} that runs @var{exp} (a gexp) with
3999 @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is
4000 stored in a file called @var{script-name}. When @var{target} is true,
4001 it is used as the cross-compilation target triplet for packages referred
4002 to by @var{exp}.
4003
4004 @var{modules} is deprecated in favor of @code{with-imported-modules}.
4005 Its meaning is to
4006 make @var{modules} available in the evaluation context of @var{exp};
4007 @var{modules} is a list of names of Guile modules searched in
4008 @var{module-path} to be copied in the store, compiled, and made available in
4009 the load path during the execution of @var{exp}---e.g., @code{((guix
4010 build utils) (guix build gnu-build-system))}.
4011
4012 @var{graft?} determines whether packages referred to by @var{exp} should be grafted when
4013 applicable.
4014
4015 When @var{references-graphs} is true, it must be a list of tuples of one of the
4016 following forms:
4017
4018 @example
4019 (@var{file-name} @var{package})
4020 (@var{file-name} @var{package} @var{output})
4021 (@var{file-name} @var{derivation})
4022 (@var{file-name} @var{derivation} @var{output})
4023 (@var{file-name} @var{store-item})
4024 @end example
4025
4026 The right-hand-side of each element of @var{references-graphs} is automatically made
4027 an input of the build process of @var{exp}. In the build environment, each
4028 @var{file-name} contains the reference graph of the corresponding item, in a simple
4029 text format.
4030
4031 @var{allowed-references} must be either @code{#f} or a list of output names and packages.
4032 In the latter case, the list denotes store items that the result is allowed to
4033 refer to. Any reference to another store item will lead to a build error.
4034 Similarly for @var{disallowed-references}, which can list items that must not be
4035 referenced by the outputs.
4036
4037 The other arguments are as for @code{derivation} (@pxref{Derivations}).
4038 @end deffn
4039
4040 @cindex file-like objects
4041 The @code{local-file}, @code{plain-file}, @code{computed-file},
4042 @code{program-file}, and @code{scheme-file} procedures below return
4043 @dfn{file-like objects}. That is, when unquoted in a G-expression,
4044 these objects lead to a file in the store. Consider this G-expression:
4045
4046 @example
4047 #~(system* #$(file-append glibc "/sbin/nscd") "-f"
4048 #$(local-file "/tmp/my-nscd.conf"))
4049 @end example
4050
4051 The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it
4052 to the store. Once expanded, for instance @i{via}
4053 @code{gexp->derivation}, the G-expression refers to that copy under
4054 @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp}
4055 does not have any effect on what the G-expression does.
4056 @code{plain-file} can be used similarly; it differs in that the file
4057 content is directly passed as a string.
4058
4059 @deffn {Scheme Procedure} local-file @var{file} [@var{name}] @
4060 [#:recursive? #f] [#:select? (const #t)]
4061 Return an object representing local file @var{file} to add to the store; this
4062 object can be used in a gexp. If @var{file} is a relative file name, it is looked
4063 up relative to the source file where this form appears. @var{file} will be added to
4064 the store under @var{name}--by default the base name of @var{file}.
4065
4066 When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file}
4067 designates a flat file and @var{recursive?} is true, its contents are added, and its
4068 permission bits are kept.
4069
4070 When @var{recursive?} is true, call @code{(@var{select?} @var{file}
4071 @var{stat})} for each directory entry, where @var{file} is the entry's
4072 absolute file name and @var{stat} is the result of @code{lstat}; exclude
4073 entries for which @var{select?} does not return true.
4074
4075 This is the declarative counterpart of the @code{interned-file} monadic
4076 procedure (@pxref{The Store Monad, @code{interned-file}}).
4077 @end deffn
4078
4079 @deffn {Scheme Procedure} plain-file @var{name} @var{content}
4080 Return an object representing a text file called @var{name} with the given
4081 @var{content} (a string) to be added to the store.
4082
4083 This is the declarative counterpart of @code{text-file}.
4084 @end deffn
4085
4086 @deffn {Scheme Procedure} computed-file @var{name} @var{gexp} @
4087 [#:options '(#:local-build? #t)]
4088 Return an object representing the store item @var{name}, a file or
4089 directory computed by @var{gexp}. @var{options}
4090 is a list of additional arguments to pass to @code{gexp->derivation}.
4091
4092 This is the declarative counterpart of @code{gexp->derivation}.
4093 @end deffn
4094
4095 @deffn {Monadic Procedure} gexp->script @var{name} @var{exp}
4096 Return an executable script @var{name} that runs @var{exp} using
4097 @var{guile}, with @var{exp}'s imported modules in its search path.
4098
4099 The example below builds a script that simply invokes the @command{ls}
4100 command:
4101
4102 @example
4103 (use-modules (guix gexp) (gnu packages base))
4104
4105 (gexp->script "list-files"
4106 #~(execl #$(file-append coreutils "/bin/ls")
4107 "ls"))
4108 @end example
4109
4110 When ``running'' it through the store (@pxref{The Store Monad,
4111 @code{run-with-store}}), we obtain a derivation that produces an
4112 executable file @file{/gnu/store/@dots{}-list-files} along these lines:
4113
4114 @example
4115 #!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds
4116 !#
4117 (execl "/gnu/store/@dots{}-coreutils-8.22"/bin/ls" "ls")
4118 @end example
4119 @end deffn
4120
4121 @deffn {Scheme Procedure} program-file @var{name} @var{exp} @
4122 [#:guile #f]
4123 Return an object representing the executable store item @var{name} that
4124 runs @var{gexp}. @var{guile} is the Guile package used to execute that
4125 script.
4126
4127 This is the declarative counterpart of @code{gexp->script}.
4128 @end deffn
4129
4130 @deffn {Monadic Procedure} gexp->file @var{name} @var{exp} @
4131 [#:set-load-path? #t]
4132 Return a derivation that builds a file @var{name} containing @var{exp}.
4133 When @var{set-load-path?} is true, emit code in the resulting file to
4134 set @code{%load-path} and @code{%load-compiled-path} to honor
4135 @var{exp}'s imported modules.
4136
4137 The resulting file holds references to all the dependencies of @var{exp}
4138 or a subset thereof.
4139 @end deffn
4140
4141 @deffn {Scheme Procedure} scheme-file @var{name} @var{exp}
4142 Return an object representing the Scheme file @var{name} that contains
4143 @var{exp}.
4144
4145 This is the declarative counterpart of @code{gexp->file}.
4146 @end deffn
4147
4148 @deffn {Monadic Procedure} text-file* @var{name} @var{text} @dots{}
4149 Return as a monadic value a derivation that builds a text file
4150 containing all of @var{text}. @var{text} may list, in addition to
4151 strings, objects of any type that can be used in a gexp: packages,
4152 derivations, local file objects, etc. The resulting store file holds
4153 references to all these.
4154
4155 This variant should be preferred over @code{text-file} anytime the file
4156 to create will reference items from the store. This is typically the
4157 case when building a configuration file that embeds store file names,
4158 like this:
4159
4160 @example
4161 (define (profile.sh)
4162 ;; Return the name of a shell script in the store that
4163 ;; initializes the 'PATH' environment variable.
4164 (text-file* "profile.sh"
4165 "export PATH=" coreutils "/bin:"
4166 grep "/bin:" sed "/bin\n"))
4167 @end example
4168
4169 In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file
4170 will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby
4171 preventing them from being garbage-collected during its lifetime.
4172 @end deffn
4173
4174 @deffn {Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}
4175 Return an object representing store file @var{name} containing
4176 @var{text}. @var{text} is a sequence of strings and file-like objects,
4177 as in:
4178
4179 @example
4180 (mixed-text-file "profile"
4181 "export PATH=" coreutils "/bin:" grep "/bin")
4182 @end example
4183
4184 This is the declarative counterpart of @code{text-file*}.
4185 @end deffn
4186
4187 @deffn {Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}
4188 Return a file-like object that expands to the concatenation of @var{obj}
4189 and @var{suffix}, where @var{obj} is a lowerable object and each
4190 @var{suffix} is a string.
4191
4192 As an example, consider this gexp:
4193
4194 @example
4195 (gexp->script "run-uname"
4196 #~(system* #$(file-append coreutils
4197 "/bin/uname")))
4198 @end example
4199
4200 The same effect could be achieved with:
4201
4202 @example
4203 (gexp->script "run-uname"
4204 #~(system* (string-append #$coreutils
4205 "/bin/uname")))
4206 @end example
4207
4208 There is one difference though: in the @code{file-append} case, the
4209 resulting script contains the absolute file name as a string, whereas in
4210 the second case, the resulting script contains a @code{(string-append
4211 @dots{})} expression to construct the file name @emph{at run time}.
4212 @end deffn
4213
4214
4215 Of course, in addition to gexps embedded in ``host'' code, there are
4216 also modules containing build tools. To make it clear that they are
4217 meant to be used in the build stratum, these modules are kept in the
4218 @code{(guix build @dots{})} name space.
4219
4220 @cindex lowering, of high-level objects in gexps
4221 Internally, high-level objects are @dfn{lowered}, using their compiler,
4222 to either derivations or store items. For instance, lowering a package
4223 yields a derivation, and lowering a @code{plain-file} yields a store
4224 item. This is achieved using the @code{lower-object} monadic procedure.
4225
4226 @deffn {Monadic Procedure} lower-object @var{obj} [@var{system}] @
4227 [#:target #f]
4228 Return as a value in @var{%store-monad} the derivation or store item
4229 corresponding to @var{obj} for @var{system}, cross-compiling for
4230 @var{target} if @var{target} is true. @var{obj} must be an object that
4231 has an associated gexp compiler, such as a @code{<package>}.
4232 @end deffn
4233
4234
4235 @c *********************************************************************
4236 @node Utilities
4237 @chapter Utilities
4238
4239 This section describes Guix command-line utilities. Some of them are
4240 primarily targeted at developers and users who write new package
4241 definitions, while others are more generally useful. They complement
4242 the Scheme programming interface of Guix in a convenient way.
4243
4244 @menu
4245 * Invoking guix build:: Building packages from the command line.
4246 * Invoking guix edit:: Editing package definitions.
4247 * Invoking guix download:: Downloading a file and printing its hash.
4248 * Invoking guix hash:: Computing the cryptographic hash of a file.
4249 * Invoking guix import:: Importing package definitions.
4250 * Invoking guix refresh:: Updating package definitions.
4251 * Invoking guix lint:: Finding errors in package definitions.
4252 * Invoking guix size:: Profiling disk usage.
4253 * Invoking guix graph:: Visualizing the graph of packages.
4254 * Invoking guix environment:: Setting up development environments.
4255 * Invoking guix publish:: Sharing substitutes.
4256 * Invoking guix challenge:: Challenging substitute servers.
4257 * Invoking guix container:: Process isolation.
4258 @end menu
4259
4260 @node Invoking guix build
4261 @section Invoking @command{guix build}
4262
4263 The @command{guix build} command builds packages or derivations and
4264 their dependencies, and prints the resulting store paths. Note that it
4265 does not modify the user's profile---this is the job of the
4266 @command{guix package} command (@pxref{Invoking guix package}). Thus,
4267 it is mainly useful for distribution developers.
4268
4269 The general syntax is:
4270
4271 @example
4272 guix build @var{options} @var{package-or-derivation}@dots{}
4273 @end example
4274
4275 As an example, the following command builds the latest versions of Emacs
4276 and of Guile, displays their build logs, and finally displays the
4277 resulting directories:
4278
4279 @example
4280 guix build emacs guile
4281 @end example
4282
4283 Similarly, the following command builds all the available packages:
4284
4285 @example
4286 guix build --quiet --keep-going \
4287 `guix package -A | cut -f1,2 --output-delimiter=@@`
4288 @end example
4289
4290 @var{package-or-derivation} may be either the name of a package found in
4291 the software distribution such as @code{coreutils} or
4292 @code{coreutils-8.20}, or a derivation such as
4293 @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a
4294 package with the corresponding name (and optionally version) is searched
4295 for among the GNU distribution modules (@pxref{Package Modules}).
4296
4297 Alternatively, the @code{--expression} option may be used to specify a
4298 Scheme expression that evaluates to a package; this is useful when
4299 disambiguating among several same-named packages or package variants is
4300 needed.
4301
4302 There may be zero or more @var{options}. The available options are
4303 described in the subsections below.
4304
4305 @menu
4306 * Common Build Options:: Build options for most commands.
4307 * Package Transformation Options:: Creating variants of packages.
4308 * Additional Build Options:: Options specific to 'guix build'.
4309 @end menu
4310
4311 @node Common Build Options
4312 @subsection Common Build Options
4313
4314 A number of options that control the build process are common to
4315 @command{guix build} and other commands that can spawn builds, such as
4316 @command{guix package} or @command{guix archive}. These are the
4317 following:
4318
4319 @table @code
4320
4321 @item --load-path=@var{directory}
4322 @itemx -L @var{directory}
4323 Add @var{directory} to the front of the package module search path
4324 (@pxref{Package Modules}).
4325
4326 This allows users to define their own packages and make them visible to
4327 the command-line tools.
4328
4329 @item --keep-failed
4330 @itemx -K
4331 Keep the build tree of failed builds. Thus, if a build fails, its build
4332 tree is kept under @file{/tmp}, in a directory whose name is shown at
4333 the end of the build log. This is useful when debugging build issues.
4334
4335 @item --keep-going
4336 @itemx -k
4337 Keep going when some of the derivations fail to build; return only once
4338 all the builds have either completed or failed.
4339
4340 The default behavior is to stop as soon as one of the specified
4341 derivations has failed.
4342
4343 @item --dry-run
4344 @itemx -n
4345 Do not build the derivations.
4346
4347 @item --fallback
4348 When substituting a pre-built binary fails, fall back to building
4349 packages locally.
4350
4351 @item --substitute-urls=@var{urls}
4352 @anchor{client-substitute-urls}
4353 Consider @var{urls} the whitespace-separated list of substitute source
4354 URLs, overriding the default list of URLs of @command{guix-daemon}
4355 (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs}).
4356
4357 This means that substitutes may be downloaded from @var{urls}, provided
4358 they are signed by a key authorized by the system administrator
4359 (@pxref{Substitutes}).
4360
4361 When @var{urls} is the empty string, substitutes are effectively
4362 disabled.
4363
4364 @item --no-substitutes
4365 Do not use substitutes for build products. That is, always build things
4366 locally instead of allowing downloads of pre-built binaries
4367 (@pxref{Substitutes}).
4368
4369 @item --no-grafts
4370 Do not ``graft'' packages. In practice, this means that package updates
4371 available as grafts are not applied. @xref{Security Updates}, for more
4372 information on grafts.
4373
4374 @item --rounds=@var{n}
4375 Build each derivation @var{n} times in a row, and raise an error if
4376 consecutive build results are not bit-for-bit identical.
4377
4378 This is a useful way to detect non-deterministic builds processes.
4379 Non-deterministic build processes are a problem because they make it
4380 practically impossible for users to @emph{verify} whether third-party
4381 binaries are genuine. @xref{Invoking guix challenge}, for more.
4382
4383 Note that, currently, the differing build results are not kept around,
4384 so you will have to manually investigate in case of an error---e.g., by
4385 stashing one of the build results with @code{guix archive --export}
4386 (@pxref{Invoking guix archive}), then rebuilding, and finally comparing
4387 the two results.
4388
4389 @item --no-build-hook
4390 Do not attempt to offload builds @i{via} the ``build hook'' of the daemon
4391 (@pxref{Daemon Offload Setup}). That is, always build things locally
4392 instead of offloading builds to remote machines.
4393
4394 @item --max-silent-time=@var{seconds}
4395 When the build or substitution process remains silent for more than
4396 @var{seconds}, terminate it and report a build failure.
4397
4398 @item --timeout=@var{seconds}
4399 Likewise, when the build or substitution process lasts for more than
4400 @var{seconds}, terminate it and report a build failure.
4401
4402 By default there is no timeout. This behavior can be restored with
4403 @code{--timeout=0}.
4404
4405 @item --verbosity=@var{level}
4406 Use the given verbosity level. @var{level} must be an integer between 0
4407 and 5; higher means more verbose output. Setting a level of 4 or more
4408 may be helpful when debugging setup issues with the build daemon.
4409
4410 @item --cores=@var{n}
4411 @itemx -c @var{n}
4412 Allow the use of up to @var{n} CPU cores for the build. The special
4413 value @code{0} means to use as many CPU cores as available.
4414
4415 @item --max-jobs=@var{n}
4416 @itemx -M @var{n}
4417 Allow at most @var{n} build jobs in parallel. @xref{Invoking
4418 guix-daemon, @code{--max-jobs}}, for details about this option and the
4419 equivalent @command{guix-daemon} option.
4420
4421 @end table
4422
4423 Behind the scenes, @command{guix build} is essentially an interface to
4424 the @code{package-derivation} procedure of the @code{(guix packages)}
4425 module, and to the @code{build-derivations} procedure of the @code{(guix
4426 derivations)} module.
4427
4428 In addition to options explicitly passed on the command line,
4429 @command{guix build} and other @command{guix} commands that support
4430 building honor the @code{GUIX_BUILD_OPTIONS} environment variable.
4431
4432 @defvr {Environment Variable} GUIX_BUILD_OPTIONS
4433 Users can define this variable to a list of command line options that
4434 will automatically be used by @command{guix build} and other
4435 @command{guix} commands that can perform builds, as in the example
4436 below:
4437
4438 @example
4439 $ export GUIX_BUILD_OPTIONS="--no-substitutes -c 2 -L /foo/bar"
4440 @end example
4441
4442 These options are parsed independently, and the result is appended to
4443 the parsed command-line options.
4444 @end defvr
4445
4446
4447 @node Package Transformation Options
4448 @subsection Package Transformation Options
4449
4450 @cindex package variants
4451 Another set of command-line options supported by @command{guix build}
4452 and also @command{guix package} are @dfn{package transformation
4453 options}. These are options that make it possible to define @dfn{package
4454 variants}---for instance, packages built from different source code.
4455 This is a convenient way to create customized packages on the fly
4456 without having to type in the definitions of package variants
4457 (@pxref{Defining Packages}).
4458
4459 @table @code
4460
4461 @item --with-source=@var{source}
4462 Use @var{source} as the source of the corresponding package.
4463 @var{source} must be a file name or a URL, as for @command{guix
4464 download} (@pxref{Invoking guix download}).
4465
4466 The ``corresponding package'' is taken to be the one specified on the
4467 command line the name of which matches the base of @var{source}---e.g.,
4468 if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding
4469 package is @code{guile}. Likewise, the version string is inferred from
4470 @var{source}; in the previous example, it is @code{2.0.10}.
4471
4472 This option allows users to try out versions of packages other than the
4473 one provided by the distribution. The example below downloads
4474 @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for
4475 the @code{ed} package:
4476
4477 @example
4478 guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz
4479 @end example
4480
4481 As a developer, @code{--with-source} makes it easy to test release
4482 candidates:
4483
4484 @example
4485 guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz
4486 @end example
4487
4488 @dots{} or to build from a checkout in a pristine environment:
4489
4490 @example
4491 $ git clone git://git.sv.gnu.org/guix.git
4492 $ guix build guix --with-source=./guix
4493 @end example
4494
4495 @item --with-input=@var{package}=@var{replacement}
4496 Replace dependency on @var{package} by a dependency on
4497 @var{replacement}. @var{package} must be a package name, and
4498 @var{replacement} must be a package specification such as @code{guile}
4499 or @code{guile@@1.8}.
4500
4501 For instance, the following command builds Guix, but replaces its
4502 dependency on the current stable version of Guile with a dependency on
4503 the development version of Guile, @code{guile-next}:
4504
4505 @example
4506 guix build --with-input=guile=guile-next guix
4507 @end example
4508
4509 This is a recursive, deep replacement. So in this example, both
4510 @code{guix} and its dependency @code{guile-json} (which also depends on
4511 @code{guile}) get rebuilt against @code{guile-next}.
4512
4513 This is implemented using the @code{package-input-rewriting} Scheme
4514 procedure (@pxref{Defining Packages, @code{package-input-rewriting}}).
4515 @end table
4516
4517 @node Additional Build Options
4518 @subsection Additional Build Options
4519
4520 The command-line options presented below are specific to @command{guix
4521 build}.
4522
4523 @table @code
4524
4525 @item --quiet
4526 @itemx -q
4527 Build quietly, without displaying the build log. Upon completion, the
4528 build log is kept in @file{/var} (or similar) and can always be
4529 retrieved using the @option{--log-file} option.
4530
4531 @item --file=@var{file}
4532 @itemx -f @var{file}
4533
4534 Build the package or derivation that the code within @var{file}
4535 evaluates to.
4536
4537 As an example, @var{file} might contain a package definition like this
4538 (@pxref{Defining Packages}):
4539
4540 @example
4541 @verbatiminclude package-hello.scm
4542 @end example
4543
4544 @item --expression=@var{expr}
4545 @itemx -e @var{expr}
4546 Build the package or derivation @var{expr} evaluates to.
4547
4548 For example, @var{expr} may be @code{(@@ (gnu packages guile)
4549 guile-1.8)}, which unambiguously designates this specific variant of
4550 version 1.8 of Guile.
4551
4552 Alternatively, @var{expr} may be a G-expression, in which case it is used
4553 as a build program passed to @code{gexp->derivation}
4554 (@pxref{G-Expressions}).
4555
4556 Lastly, @var{expr} may refer to a zero-argument monadic procedure
4557 (@pxref{The Store Monad}). The procedure must return a derivation as a
4558 monadic value, which is then passed through @code{run-with-store}.
4559
4560 @item --source
4561 @itemx -S
4562 Build the source derivations of the packages, rather than the packages
4563 themselves.
4564
4565 For instance, @code{guix build -S gcc} returns something like
4566 @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC
4567 source tarball.
4568
4569 The returned source tarball is the result of applying any patches and
4570 code snippets specified in the package @code{origin} (@pxref{Defining
4571 Packages}).
4572
4573 @item --sources
4574 Fetch and return the source of @var{package-or-derivation} and all their
4575 dependencies, recursively. This is a handy way to obtain a local copy
4576 of all the source code needed to build @var{packages}, allowing you to
4577 eventually build them even without network access. It is an extension
4578 of the @code{--source} option and can accept one of the following
4579 optional argument values:
4580
4581 @table @code
4582 @item package
4583 This value causes the @code{--sources} option to behave in the same way
4584 as the @code{--source} option.
4585
4586 @item all
4587 Build the source derivations of all packages, including any source that
4588 might be listed as @code{inputs}. This is the default value.
4589
4590 @example
4591 $ guix build --sources tzdata
4592 The following derivations will be built:
4593 /gnu/store/@dots{}-tzdata2015b.tar.gz.drv
4594 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
4595 @end example
4596
4597 @item transitive
4598 Build the source derivations of all packages, as well of all transitive
4599 inputs to the packages. This can be used e.g. to
4600 prefetch package source for later offline building.
4601
4602 @example
4603 $ guix build --sources=transitive tzdata
4604 The following derivations will be built:
4605 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
4606 /gnu/store/@dots{}-findutils-4.4.2.tar.xz.drv
4607 /gnu/store/@dots{}-grep-2.21.tar.xz.drv
4608 /gnu/store/@dots{}-coreutils-8.23.tar.xz.drv
4609 /gnu/store/@dots{}-make-4.1.tar.xz.drv
4610 /gnu/store/@dots{}-bash-4.3.tar.xz.drv
4611 @dots{}
4612 @end example
4613
4614 @end table
4615
4616 @item --system=@var{system}
4617 @itemx -s @var{system}
4618 Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of
4619 the system type of the build host.
4620
4621 An example use of this is on Linux-based systems, which can emulate
4622 different personalities. For instance, passing
4623 @code{--system=i686-linux} on an @code{x86_64-linux} system allows users
4624 to build packages in a complete 32-bit environment.
4625
4626 @item --target=@var{triplet}
4627 @cindex cross-compilation
4628 Cross-build for @var{triplet}, which must be a valid GNU triplet, such
4629 as @code{"mips64el-linux-gnu"} (@pxref{Configuration Names, GNU
4630 configuration triplets,, configure, GNU Configure and Build System}).
4631
4632 @anchor{build-check}
4633 @item --check
4634 @cindex determinism, checking
4635 @cindex reproducibility, checking
4636 Rebuild @var{package-or-derivation}, which are already available in the
4637 store, and raise an error if the build results are not bit-for-bit
4638 identical.
4639
4640 This mechanism allows you to check whether previously installed
4641 substitutes are genuine (@pxref{Substitutes}), or whether the build result
4642 of a package is deterministic. @xref{Invoking guix challenge}, for more
4643 background information and tools.
4644
4645 When used in conjunction with @option{--keep-failed}, the differing
4646 output is kept in the store, under @file{/gnu/store/@dots{}-check}.
4647 This makes it easy to look for differences between the two results.
4648
4649 @item --derivations
4650 @itemx -d
4651 Return the derivation paths, not the output paths, of the given
4652 packages.
4653
4654 @item --root=@var{file}
4655 @itemx -r @var{file}
4656 Make @var{file} a symlink to the result, and register it as a garbage
4657 collector root.
4658
4659 @item --log-file
4660 Return the build log file names or URLs for the given
4661 @var{package-or-derivation}, or raise an error if build logs are
4662 missing.
4663
4664 This works regardless of how packages or derivations are specified. For
4665 instance, the following invocations are equivalent:
4666
4667 @example
4668 guix build --log-file `guix build -d guile`
4669 guix build --log-file `guix build guile`
4670 guix build --log-file guile
4671 guix build --log-file -e '(@@ (gnu packages guile) guile-2.0)'
4672 @end example
4673
4674 If a log is unavailable locally, and unless @code{--no-substitutes} is
4675 passed, the command looks for a corresponding log on one of the
4676 substitute servers (as specified with @code{--substitute-urls}.)
4677
4678 So for instance, imagine you want to see the build log of GDB on MIPS,
4679 but you are actually on an @code{x86_64} machine:
4680
4681 @example
4682 $ guix build --log-file gdb -s mips64el-linux
4683 https://hydra.gnu.org/log/@dots{}-gdb-7.10
4684 @end example
4685
4686 You can freely access a huge library of build logs!
4687 @end table
4688
4689
4690 @node Invoking guix edit
4691 @section Invoking @command{guix edit}
4692
4693 @cindex package definition, editing
4694 So many packages, so many source files! The @command{guix edit} command
4695 facilitates the life of users and packagers by pointing their editor at
4696 the source file containing the definition of the specified packages.
4697 For instance:
4698
4699 @example
4700 guix edit gcc@@4.9 vim
4701 @end example
4702
4703 @noindent
4704 launches the program specified in the @code{VISUAL} or in the
4705 @code{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3
4706 and that of Vim.
4707
4708 If you are using a Guix Git checkout (@pxref{Building from Git}), or
4709 have created your own packages on @code{GUIX_PACKAGE_PATH}
4710 (@pxref{Defining Packages}), you will be able to edit the package
4711 recipes. Otherwise, you will be able to examine the read-only recipes
4712 for packages currently in the store.
4713
4714 If you are using Emacs, note that the Emacs user interface provides the
4715 @kbd{M-x guix-edit} command and a similar functionality in the ``package
4716 info'' and ``package list'' buffers created by the @kbd{M-x
4717 guix-search-by-name} and similar commands (@pxref{Emacs Commands}).
4718
4719
4720 @node Invoking guix download
4721 @section Invoking @command{guix download}
4722
4723 When writing a package definition, developers typically need to download
4724 a source tarball, compute its SHA256 hash, and write that
4725 hash in the package definition (@pxref{Defining Packages}). The
4726 @command{guix download} tool helps with this task: it downloads a file
4727 from the given URI, adds it to the store, and prints both its file name
4728 in the store and its SHA256 hash.
4729
4730 The fact that the downloaded file is added to the store saves bandwidth:
4731 when the developer eventually tries to build the newly defined package
4732 with @command{guix build}, the source tarball will not have to be
4733 downloaded again because it is already in the store. It is also a
4734 convenient way to temporarily stash files, which may be deleted
4735 eventually (@pxref{Invoking guix gc}).
4736
4737 The @command{guix download} command supports the same URIs as used in
4738 package definitions. In particular, it supports @code{mirror://} URIs.
4739 @code{https} URIs (HTTP over TLS) are supported @emph{provided} the
4740 Guile bindings for GnuTLS are available in the user's environment; when
4741 they are not available, an error is raised. @xref{Guile Preparations,
4742 how to install the GnuTLS bindings for Guile,, gnutls-guile,
4743 GnuTLS-Guile}, for more information.
4744
4745 The following option is available:
4746
4747 @table @code
4748 @item --format=@var{fmt}
4749 @itemx -f @var{fmt}
4750 Write the hash in the format specified by @var{fmt}. For more
4751 information on the valid values for @var{fmt}, @pxref{Invoking guix hash}.
4752 @end table
4753
4754 @node Invoking guix hash
4755 @section Invoking @command{guix hash}
4756
4757 The @command{guix hash} command computes the SHA256 hash of a file.
4758 It is primarily a convenience tool for anyone contributing to the
4759 distribution: it computes the cryptographic hash of a file, which can be
4760 used in the definition of a package (@pxref{Defining Packages}).
4761
4762 The general syntax is:
4763
4764 @example
4765 guix hash @var{option} @var{file}
4766 @end example
4767
4768 @command{guix hash} has the following options:
4769
4770 @table @code
4771
4772 @item --format=@var{fmt}
4773 @itemx -f @var{fmt}
4774 Write the hash in the format specified by @var{fmt}.
4775
4776 Supported formats: @code{nix-base32}, @code{base32}, @code{base16}
4777 (@code{hex} and @code{hexadecimal} can be used as well).
4778
4779 If the @option{--format} option is not specified, @command{guix hash}
4780 will output the hash in @code{nix-base32}. This representation is used
4781 in the definitions of packages.
4782
4783 @item --recursive
4784 @itemx -r
4785 Compute the hash on @var{file} recursively.
4786
4787 In this case, the hash is computed on an archive containing @var{file},
4788 including its children if it is a directory. Some of the metadata of
4789 @var{file} is part of the archive; for instance, when @var{file} is a
4790 regular file, the hash is different depending on whether @var{file} is
4791 executable or not. Metadata such as time stamps has no impact on the
4792 hash (@pxref{Invoking guix archive}).
4793 @c FIXME: Replace xref above with xref to an ``Archive'' section when
4794 @c it exists.
4795
4796 @item --exclude-vcs
4797 @itemx -x
4798 When combined with @option{--recursive}, exclude version control system
4799 directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)
4800
4801 @vindex git-fetch
4802 As an example, here is how you would compute the hash of a Git checkout,
4803 which is useful when using the @code{git-fetch} method (@pxref{origin
4804 Reference}):
4805
4806 @example
4807 $ git clone http://example.org/foo.git
4808 $ cd foo
4809 $ guix hash -rx .
4810 @end example
4811 @end table
4812
4813 @node Invoking guix import
4814 @section Invoking @command{guix import}
4815
4816 @cindex importing packages
4817 @cindex package import
4818 @cindex package conversion
4819 The @command{guix import} command is useful for people who would like to
4820 add a package to the distribution with as little work as
4821 possible---a legitimate demand. The command knows of a few
4822 repositories from which it can ``import'' package metadata. The result
4823 is a package definition, or a template thereof, in the format we know
4824 (@pxref{Defining Packages}).
4825
4826 The general syntax is:
4827
4828 @example
4829 guix import @var{importer} @var{options}@dots{}
4830 @end example
4831
4832 @var{importer} specifies the source from which to import package
4833 metadata, and @var{options} specifies a package identifier and other
4834 options specific to @var{importer}. Currently, the available
4835 ``importers'' are:
4836
4837 @table @code
4838 @item gnu
4839 Import metadata for the given GNU package. This provides a template
4840 for the latest version of that GNU package, including the hash of its
4841 source tarball, and its canonical synopsis and description.
4842
4843 Additional information such as the package dependencies and its
4844 license needs to be figured out manually.
4845
4846 For example, the following command returns a package definition for
4847 GNU@tie{}Hello:
4848
4849 @example
4850 guix import gnu hello
4851 @end example
4852
4853 Specific command-line options are:
4854
4855 @table @code
4856 @item --key-download=@var{policy}
4857 As for @code{guix refresh}, specify the policy to handle missing OpenPGP
4858 keys when verifying the package signature. @xref{Invoking guix
4859 refresh, @code{--key-download}}.
4860 @end table
4861
4862 @item pypi
4863 @cindex pypi
4864 Import metadata from the @uref{https://pypi.python.org/, Python Package
4865 Index}@footnote{This functionality requires Guile-JSON to be installed.
4866 @xref{Requirements}.}. Information is taken from the JSON-formatted
4867 description available at @code{pypi.python.org} and usually includes all
4868 the relevant information, including package dependencies. For maximum
4869 efficiency, it is recommended to install the @command{unzip} utility, so
4870 that the importer can unzip Python wheels and gather data from them.
4871
4872 The command below imports metadata for the @code{itsdangerous} Python
4873 package:
4874
4875 @example
4876 guix import pypi itsdangerous
4877 @end example
4878
4879 @item gem
4880 @cindex gem
4881 Import metadata from @uref{https://rubygems.org/,
4882 RubyGems}@footnote{This functionality requires Guile-JSON to be
4883 installed. @xref{Requirements}.}. Information is taken from the
4884 JSON-formatted description available at @code{rubygems.org} and includes
4885 most relevant information, including runtime dependencies. There are
4886 some caveats, however. The metadata doesn't distinguish between
4887 synopses and descriptions, so the same string is used for both fields.
4888 Additionally, the details of non-Ruby dependencies required to build
4889 native extensions is unavailable and left as an exercise to the
4890 packager.
4891
4892 The command below imports metadata for the @code{rails} Ruby package:
4893
4894 @example
4895 guix import gem rails
4896 @end example
4897
4898 @item cpan
4899 @cindex CPAN
4900 Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}@footnote{This
4901 functionality requires Guile-JSON to be installed.
4902 @xref{Requirements}.}.
4903 Information is taken from the JSON-formatted metadata provided through
4904 @uref{https://api.metacpan.org/, MetaCPAN's API} and includes most
4905 relevant information, such as module dependencies. License information
4906 should be checked closely. If Perl is available in the store, then the
4907 @code{corelist} utility will be used to filter core modules out of the
4908 list of dependencies.
4909
4910 The command command below imports metadata for the @code{Acme::Boolean}
4911 Perl module:
4912
4913 @example
4914 guix import cpan Acme::Boolean
4915 @end example
4916
4917 @item cran
4918 @cindex CRAN
4919 @cindex Bioconductor
4920 Import metadata from @uref{http://cran.r-project.org/, CRAN}, the
4921 central repository for the @uref{http://r-project.org, GNU@tie{}R
4922 statistical and graphical environment}.
4923
4924 Information is extracted from the @code{DESCRIPTION} file of the package.
4925
4926 The command command below imports metadata for the @code{Cairo}
4927 R package:
4928
4929 @example
4930 guix import cran Cairo
4931 @end example
4932
4933 When @code{--archive=bioconductor} is added, metadata is imported from
4934 @uref{http://www.bioconductor.org/, Bioconductor}, a repository of R
4935 packages for for the analysis and comprehension of high-throughput
4936 genomic data in bioinformatics.
4937
4938 Information is extracted from the @code{DESCRIPTION} file of a package
4939 published on the web interface of the Bioconductor SVN repository.
4940
4941 The command below imports metadata for the @code{GenomicRanges}
4942 R package:
4943
4944 @example
4945 guix import cran --archive=bioconductor GenomicRanges
4946 @end example
4947
4948 @item nix
4949 Import metadata from a local copy of the source of the
4950 @uref{http://nixos.org/nixpkgs/, Nixpkgs distribution}@footnote{This
4951 relies on the @command{nix-instantiate} command of
4952 @uref{http://nixos.org/nix/, Nix}.}. Package definitions in Nixpkgs are
4953 typically written in a mixture of Nix-language and Bash code. This
4954 command only imports the high-level package structure that is written in
4955 the Nix language. It normally includes all the basic fields of a
4956 package definition.
4957
4958 When importing a GNU package, the synopsis and descriptions are replaced
4959 by their canonical upstream variant.
4960
4961 Usually, you will first need to do:
4962
4963 @example
4964 export NIX_REMOTE=daemon
4965 @end example
4966
4967 @noindent
4968 so that @command{nix-instantiate} does not try to open the Nix database.
4969
4970 As an example, the command below imports the package definition of
4971 LibreOffice (more precisely, it imports the definition of the package
4972 bound to the @code{libreoffice} top-level attribute):
4973
4974 @example
4975 guix import nix ~/path/to/nixpkgs libreoffice
4976 @end example
4977
4978 @item hackage
4979 @cindex hackage
4980 Import metadata from the Haskell community's central package archive
4981 @uref{https://hackage.haskell.org/, Hackage}. Information is taken from
4982 Cabal files and includes all the relevant information, including package
4983 dependencies.
4984
4985 Specific command-line options are:
4986
4987 @table @code
4988 @item --stdin
4989 @itemx -s
4990 Read a Cabal file from standard input.
4991 @item --no-test-dependencies
4992 @itemx -t
4993 Do not include dependencies required only by the test suites.
4994 @item --cabal-environment=@var{alist}
4995 @itemx -e @var{alist}
4996 @var{alist} is a Scheme alist defining the environment in which the
4997 Cabal conditionals are evaluated. The accepted keys are: @code{os},
4998 @code{arch}, @code{impl} and a string representing the name of a flag.
4999 The value associated with a flag has to be either the symbol
5000 @code{true} or @code{false}. The value associated with other keys
5001 has to conform to the Cabal file format definition. The default value
5002 associated with the keys @code{os}, @code{arch} and @code{impl} is
5003 @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively.
5004 @end table
5005
5006 The command below imports metadata for the latest version of the
5007 @code{HTTP} Haskell package without including test dependencies and
5008 specifying the value of the flag @samp{network-uri} as @code{false}:
5009
5010 @example
5011 guix import hackage -t -e "'((\"network-uri\" . false))" HTTP
5012 @end example
5013
5014 A specific package version may optionally be specified by following the
5015 package name by an at-sign and a version number as in the following example:
5016
5017 @example
5018 guix import hackage mtl@@2.1.3.1
5019 @end example
5020
5021 @item elpa
5022 @cindex elpa
5023 Import metadata from an Emacs Lisp Package Archive (ELPA) package
5024 repository (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
5025
5026 Specific command-line options are:
5027
5028 @table @code
5029 @item --archive=@var{repo}
5030 @itemx -a @var{repo}
5031 @var{repo} identifies the archive repository from which to retrieve the
5032 information. Currently the supported repositories and their identifiers
5033 are:
5034 @itemize -
5035 @item
5036 @uref{http://elpa.gnu.org/packages, GNU}, selected by the @code{gnu}
5037 identifier. This is the default.
5038
5039 @item
5040 @uref{http://stable.melpa.org/packages, MELPA-Stable}, selected by the
5041 @code{melpa-stable} identifier.
5042
5043 @item
5044 @uref{http://melpa.org/packages, MELPA}, selected by the @code{melpa}
5045 identifier.
5046 @end itemize
5047 @end table
5048 @end table
5049
5050 The structure of the @command{guix import} code is modular. It would be
5051 useful to have more importers for other package formats, and your help
5052 is welcome here (@pxref{Contributing}).
5053
5054 @node Invoking guix refresh
5055 @section Invoking @command{guix refresh}
5056
5057 The primary audience of the @command{guix refresh} command is developers
5058 of the GNU software distribution. By default, it reports any packages
5059 provided by the distribution that are outdated compared to the latest
5060 upstream version, like this:
5061
5062 @example
5063 $ guix refresh
5064 gnu/packages/gettext.scm:29:13: gettext would be upgraded from 0.18.1.1 to 0.18.2.1
5065 gnu/packages/glib.scm:77:12: glib would be upgraded from 2.34.3 to 2.37.0
5066 @end example
5067
5068 It does so by browsing the FTP directory of each package and determining
5069 the highest version number of the source tarballs therein. The command
5070 knows how to update specific types of packages: GNU packages, ELPA
5071 packages, etc.---see the documentation for @option{--type} below. The
5072 are many packages, though, for which it lacks a method to determine
5073 whether a new upstream release is available. However, the mechanism is
5074 extensible, so feel free to get in touch with us to add a new method!
5075
5076 When passed @code{--update}, it modifies distribution source files to
5077 update the version numbers and source tarball hashes of those package
5078 recipes (@pxref{Defining Packages}). This is achieved by downloading
5079 each package's latest source tarball and its associated OpenPGP
5080 signature, authenticating the downloaded tarball against its signature
5081 using @command{gpg}, and finally computing its hash. When the public
5082 key used to sign the tarball is missing from the user's keyring, an
5083 attempt is made to automatically retrieve it from a public key server;
5084 when this is successful, the key is added to the user's keyring; otherwise,
5085 @command{guix refresh} reports an error.
5086
5087 The following options are supported:
5088
5089 @table @code
5090
5091 @item --expression=@var{expr}
5092 @itemx -e @var{expr}
5093 Consider the package @var{expr} evaluates to.
5094
5095 This is useful to precisely refer to a package, as in this example:
5096
5097 @example
5098 guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'
5099 @end example
5100
5101 This command lists the dependents of the ``final'' libc (essentially all
5102 the packages.)
5103
5104 @item --update
5105 @itemx -u
5106 Update distribution source files (package recipes) in place. This is
5107 usually run from a checkout of the Guix source tree (@pxref{Running
5108 Guix Before It Is Installed}):
5109
5110 @example
5111 $ ./pre-inst-env guix refresh -s non-core
5112 @end example
5113
5114 @xref{Defining Packages}, for more information on package definitions.
5115
5116 @item --select=[@var{subset}]
5117 @itemx -s @var{subset}
5118 Select all the packages in @var{subset}, one of @code{core} or
5119 @code{non-core}.
5120
5121 The @code{core} subset refers to all the packages at the core of the
5122 distribution---i.e., packages that are used to build ``everything
5123 else''. This includes GCC, libc, Binutils, Bash, etc. Usually,
5124 changing one of these packages in the distribution entails a rebuild of
5125 all the others. Thus, such updates are an inconvenience to users in
5126 terms of build time or bandwidth used to achieve the upgrade.
5127
5128 The @code{non-core} subset refers to the remaining packages. It is
5129 typically useful in cases where an update of the core packages would be
5130 inconvenient.
5131
5132 @item --type=@var{updater}
5133 @itemx -t @var{updater}
5134 Select only packages handled by @var{updater} (may be a comma-separated
5135 list of updaters). Currently, @var{updater} may be one of:
5136
5137 @table @code
5138 @item gnu
5139 the updater for GNU packages;
5140 @item gnome
5141 the updater for GNOME packages;
5142 @item kde
5143 the updater for KDE packages;
5144 @item xorg
5145 the updater for X.org packages;
5146 @item elpa
5147 the updater for @uref{http://elpa.gnu.org/, ELPA} packages;
5148 @item cran
5149 the updater for @uref{http://cran.r-project.org/, CRAN} packages;
5150 @item bioconductor
5151 the updater for @uref{http://www.bioconductor.org/, Bioconductor} R packages;
5152 @item pypi
5153 the updater for @uref{https://pypi.python.org, PyPI} packages.
5154 @item gem
5155 the updater for @uref{https://rubygems.org, RubyGems} packages.
5156 @item github
5157 the updater for @uref{https://github.com, GitHub} packages.
5158 @item hackage
5159 the updater for @uref{https://hackage.haskell.org, Hackage} packages.
5160 @end table
5161
5162 For instance, the following command only checks for updates of Emacs
5163 packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:
5164
5165 @example
5166 $ guix refresh --type=elpa,cran
5167 gnu/packages/statistics.scm:819:13: r-testthat would be upgraded from 0.10.0 to 0.11.0
5168 gnu/packages/emacs.scm:856:13: emacs-auctex would be upgraded from 11.88.6 to 11.88.9
5169 @end example
5170
5171 @end table
5172
5173 In addition, @command{guix refresh} can be passed one or more package
5174 names, as in this example:
5175
5176 @example
5177 $ ./pre-inst-env guix refresh -u emacs idutils gcc-4.8.4
5178 @end example
5179
5180 @noindent
5181 The command above specifically updates the @code{emacs} and
5182 @code{idutils} packages. The @code{--select} option would have no
5183 effect in this case.
5184
5185 When considering whether to upgrade a package, it is sometimes
5186 convenient to know which packages would be affected by the upgrade and
5187 should be checked for compatibility. For this the following option may
5188 be used when passing @command{guix refresh} one or more package names:
5189
5190 @table @code
5191
5192 @item --list-updaters
5193 @itemx -L
5194 List available updaters and exit (see @option{--type} above.)
5195
5196 @item --list-dependent
5197 @itemx -l
5198 List top-level dependent packages that would need to be rebuilt as a
5199 result of upgrading one or more packages.
5200
5201 @end table
5202
5203 Be aware that the @code{--list-dependent} option only
5204 @emph{approximates} the rebuilds that would be required as a result of
5205 an upgrade. More rebuilds might be required under some circumstances.
5206
5207 @example
5208 $ guix refresh --list-dependent flex
5209 Building the following 120 packages would ensure 213 dependent packages are rebuilt:
5210 hop-2.4.0 geiser-0.4 notmuch-0.18 mu-0.9.9.5 cflow-1.4 idutils-4.6 @dots{}
5211 @end example
5212
5213 The command above lists a set of packages that could be built to check
5214 for compatibility with an upgraded @code{flex} package.
5215
5216 The following options can be used to customize GnuPG operation:
5217
5218 @table @code
5219
5220 @item --gpg=@var{command}
5221 Use @var{command} as the GnuPG 2.x command. @var{command} is searched
5222 for in @code{$PATH}.
5223
5224 @item --key-download=@var{policy}
5225 Handle missing OpenPGP keys according to @var{policy}, which may be one
5226 of:
5227
5228 @table @code
5229 @item always
5230 Always download missing OpenPGP keys from the key server, and add them
5231 to the user's GnuPG keyring.
5232
5233 @item never
5234 Never try to download missing OpenPGP keys. Instead just bail out.
5235
5236 @item interactive
5237 When a package signed with an unknown OpenPGP key is encountered, ask
5238 the user whether to download it or not. This is the default behavior.
5239 @end table
5240
5241 @item --key-server=@var{host}
5242 Use @var{host} as the OpenPGP key server when importing a public key.
5243
5244 @end table
5245
5246 The @code{github} updater uses the
5247 @uref{https://developer.github.com/v3/, GitHub API} to query for new
5248 releases. When used repeatedly e.g. when refreshing all packages,
5249 GitHub will eventually refuse to answer any further API requests. By
5250 default 60 API requests per hour are allowed, and a full refresh on all
5251 GitHub packages in Guix requires more than this. Authentication with
5252 GitHub through the use of an API token alleviates these limits. To use
5253 an API token, set the environment variable @code{GUIX_GITHUB_TOKEN} to a
5254 token procured from @uref{https://github.com/settings/tokens} or
5255 otherwise.
5256
5257
5258 @node Invoking guix lint
5259 @section Invoking @command{guix lint}
5260 The @command{guix lint} command is meant to help package developers avoid
5261 common errors and use a consistent style. It runs a number of checks on
5262 a given set of packages in order to find common mistakes in their
5263 definitions. Available @dfn{checkers} include (see
5264 @code{--list-checkers} for a complete list):
5265
5266 @table @code
5267 @item synopsis
5268 @itemx description
5269 Validate certain typographical and stylistic rules about package
5270 descriptions and synopses.
5271
5272 @item inputs-should-be-native
5273 Identify inputs that should most likely be native inputs.
5274
5275 @item source
5276 @itemx home-page
5277 @itemx source-file-name
5278 Probe @code{home-page} and @code{source} URLs and report those that are
5279 invalid. Check that the source file name is meaningful, e.g. is not
5280 just a version number or ``git-checkout'', without a declared
5281 @code{file-name} (@pxref{origin Reference}).
5282
5283 @item cve
5284 @cindex security vulnerabilities
5285 @cindex CVE, Common Vulnerabilities and Exposures
5286 Report known vulnerabilities found in the Common Vulnerabilities and
5287 Exposures (CVE) databases of the current and past year
5288 @uref{https://nvd.nist.gov/download.cfm#CVE_FEED, published by the US
5289 NIST}.
5290
5291 To view information about a particular vulnerability, visit pages such as:
5292
5293 @itemize
5294 @item
5295 @indicateurl{https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD}
5296 @item
5297 @indicateurl{https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD}
5298 @end itemize
5299
5300 @noindent
5301 where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g.,
5302 @code{CVE-2015-7554}.
5303
5304 Package developers can specify in package recipes the
5305 @uref{https://nvd.nist.gov/cpe.cfm,Common Platform Enumeration (CPE)}
5306 name and version of the package when they differ from the name that Guix
5307 uses, as in this example:
5308
5309 @example
5310 (package
5311 (name "grub")
5312 ;; @dots{}
5313 ;; CPE calls this package "grub2".
5314 (properties '((cpe-name . "grub2"))))
5315 @end example
5316
5317 @item formatting
5318 Warn about obvious source code formatting issues: trailing white space,
5319 use of tabulations, etc.
5320 @end table
5321
5322 The general syntax is:
5323
5324 @example
5325 guix lint @var{options} @var{package}@dots{}
5326 @end example
5327
5328 If no package is given on the command line, then all packages are checked.
5329 The @var{options} may be zero or more of the following:
5330
5331 @table @code
5332 @item --list-checkers
5333 @itemx -l
5334 List and describe all the available checkers that will be run on packages
5335 and exit.
5336
5337 @item --checkers
5338 @itemx -c
5339 Only enable the checkers specified in a comma-separated list using the
5340 names returned by @code{--list-checkers}.
5341
5342 @end table
5343
5344 @node Invoking guix size
5345 @section Invoking @command{guix size}
5346
5347 The @command{guix size} command helps package developers profile the
5348 disk usage of packages. It is easy to overlook the impact of an
5349 additional dependency added to a package, or the impact of using a
5350 single output for a package that could easily be split (@pxref{Packages
5351 with Multiple Outputs}). Such are the typical issues that
5352 @command{guix size} can highlight.
5353
5354 The command can be passed a package specification such as @code{gcc-4.8}
5355 or @code{guile:debug}, or a file name in the store. Consider this
5356 example:
5357
5358 @example
5359 $ guix size coreutils
5360 store item total self
5361 /gnu/store/@dots{}-coreutils-8.23 70.0 13.9 19.8%
5362 /gnu/store/@dots{}-gmp-6.0.0a 55.3 2.5 3.6%
5363 /gnu/store/@dots{}-acl-2.2.52 53.7 0.5 0.7%
5364 /gnu/store/@dots{}-attr-2.4.46 53.2 0.3 0.5%
5365 /gnu/store/@dots{}-gcc-4.8.4-lib 52.9 15.7 22.4%
5366 /gnu/store/@dots{}-glibc-2.21 37.2 37.2 53.1%
5367 @end example
5368
5369 @cindex closure
5370 The store items listed here constitute the @dfn{transitive closure} of
5371 Coreutils---i.e., Coreutils and all its dependencies, recursively---as
5372 would be returned by:
5373
5374 @example
5375 $ guix gc -R /gnu/store/@dots{}-coreutils-8.23
5376 @end example
5377
5378 Here the output shows three columns next to store items. The first column,
5379 labeled ``total'', shows the size in mebibytes (MiB) of the closure of
5380 the store item---that is, its own size plus the size of all its
5381 dependencies. The next column, labeled ``self'', shows the size of the
5382 item itself. The last column shows the ratio of the size of the item
5383 itself to the space occupied by all the items listed here.
5384
5385 In this example, we see that the closure of Coreutils weighs in at
5386 70@tie{}MiB, half of which is taken by libc. (That libc represents a
5387 large fraction of the closure is not a problem @i{per se} because it is
5388 always available on the system anyway.)
5389
5390 When the package passed to @command{guix size} is available in the
5391 store, @command{guix size} queries the daemon to determine its
5392 dependencies, and measures its size in the store, similar to @command{du
5393 -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU
5394 Coreutils}).
5395
5396 When the given package is @emph{not} in the store, @command{guix size}
5397 reports information based on the available substitutes
5398 (@pxref{Substitutes}). This makes it possible it to profile disk usage of
5399 store items that are not even on disk, only available remotely.
5400
5401 You can also specify several package names:
5402
5403 @example
5404 $ guix size coreutils grep sed bash
5405 store item total self
5406 /gnu/store/@dots{}-coreutils-8.24 77.8 13.8 13.4%
5407 /gnu/store/@dots{}-grep-2.22 73.1 0.8 0.8%
5408 /gnu/store/@dots{}-bash-4.3.42 72.3 4.7 4.6%
5409 /gnu/store/@dots{}-readline-6.3 67.6 1.2 1.2%
5410 @dots{}
5411 total: 102.3 MiB
5412 @end example
5413
5414 @noindent
5415 In this example we see that the combination of the four packages takes
5416 102.3@tie{}MiB in total, which is much less than the sum of each closure
5417 since they have a lot of dependencies in common.
5418
5419 The available options are:
5420
5421 @table @option
5422
5423 @item --substitute-urls=@var{urls}
5424 Use substitute information from @var{urls}.
5425 @xref{client-substitute-urls, the same option for @code{guix build}}.
5426
5427 @item --map-file=@var{file}
5428 Write a graphical map of disk usage in PNG format to @var{file}.
5429
5430 For the example above, the map looks like this:
5431
5432 @image{images/coreutils-size-map,5in,, map of Coreutils disk usage
5433 produced by @command{guix size}}
5434
5435 This option requires that
5436 @uref{http://wingolog.org/software/guile-charting/, Guile-Charting} be
5437 installed and visible in Guile's module search path. When that is not
5438 the case, @command{guix size} fails as it tries to load it.
5439
5440 @item --system=@var{system}
5441 @itemx -s @var{system}
5442 Consider packages for @var{system}---e.g., @code{x86_64-linux}.
5443
5444 @end table
5445
5446 @node Invoking guix graph
5447 @section Invoking @command{guix graph}
5448
5449 @cindex DAG
5450 Packages and their dependencies form a @dfn{graph}, specifically a
5451 directed acyclic graph (DAG). It can quickly become difficult to have a
5452 mental model of the package DAG, so the @command{guix graph} command
5453 provides a visual representation of the DAG. @command{guix graph}
5454 emits a DAG representation in the input format of
5455 @uref{http://www.graphviz.org/, Graphviz}, so its output can be passed
5456 directly to the @command{dot} command of Graphviz. The general
5457 syntax is:
5458
5459 @example
5460 guix graph @var{options} @var{package}@dots{}
5461 @end example
5462
5463 For example, the following command generates a PDF file representing the
5464 package DAG for the GNU@tie{}Core Utilities, showing its build-time
5465 dependencies:
5466
5467 @example
5468 guix graph coreutils | dot -Tpdf > dag.pdf
5469 @end example
5470
5471 The output looks like this:
5472
5473 @image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}
5474
5475 Nice little graph, no?
5476
5477 But there is more than one graph! The one above is concise: it is the
5478 graph of package objects, omitting implicit inputs such as GCC, libc,
5479 grep, etc. It is often useful to have such a concise graph, but
5480 sometimes one may want to see more details. @command{guix graph} supports
5481 several types of graphs, allowing you to choose the level of detail:
5482
5483 @table @code
5484 @item package
5485 This is the default type used in the example above. It shows the DAG of
5486 package objects, excluding implicit dependencies. It is concise, but
5487 filters out many details.
5488
5489 @item bag-emerged
5490 This is the package DAG, @emph{including} implicit inputs.
5491
5492 For instance, the following command:
5493
5494 @example
5495 guix graph --type=bag-emerged coreutils | dot -Tpdf > dag.pdf
5496 @end example
5497
5498 ... yields this bigger graph:
5499
5500 @image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}
5501
5502 At the bottom of the graph, we see all the implicit inputs of
5503 @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}}).
5504
5505 Now, note that the dependencies of these implicit inputs---that is, the
5506 @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown
5507 here, for conciseness.
5508
5509 @item bag
5510 Similar to @code{bag-emerged}, but this time including all the bootstrap
5511 dependencies.
5512
5513 @item bag-with-origins
5514 Similar to @code{bag}, but also showing origins and their dependencies.
5515
5516 @item derivations
5517 This is the most detailed representation: It shows the DAG of
5518 derivations (@pxref{Derivations}) and plain store items. Compared to
5519 the above representation, many additional nodes are visible, including
5520 build scripts, patches, Guile modules, etc.
5521
5522 For this type of graph, it is also possible to pass a @file{.drv} file
5523 name instead of a package name, as in:
5524
5525 @example
5526 guix graph -t derivation `guix system build -d my-config.scm`
5527 @end example
5528 @end table
5529
5530 All the types above correspond to @emph{build-time dependencies}. The
5531 following graph type represents the @emph{run-time dependencies}:
5532
5533 @table @code
5534 @item references
5535 This is the graph of @dfn{references} of a package output, as returned
5536 by @command{guix gc --references} (@pxref{Invoking guix gc}).
5537
5538 If the given package output is not available in the store, @command{guix
5539 graph} attempts to obtain dependency information from substitutes.
5540
5541 Here you can also pass a store file name instead of a package name. For
5542 example, the command below produces the reference graph of your profile
5543 (which can be big!):
5544
5545 @example
5546 guix graph -t references `readlink -f ~/.guix-profile`
5547 @end example
5548 @end table
5549
5550 The available options are the following:
5551
5552 @table @option
5553 @item --type=@var{type}
5554 @itemx -t @var{type}
5555 Produce a graph output of @var{type}, where @var{type} must be one of
5556 the values listed above.
5557
5558 @item --list-types
5559 List the supported graph types.
5560
5561 @item --expression=@var{expr}
5562 @itemx -e @var{expr}
5563 Consider the package @var{expr} evaluates to.
5564
5565 This is useful to precisely refer to a package, as in this example:
5566
5567 @example
5568 guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'
5569 @end example
5570 @end table
5571
5572
5573 @node Invoking guix environment
5574 @section Invoking @command{guix environment}
5575
5576 @cindex reproducible build environments
5577 @cindex development environments
5578 The purpose of @command{guix environment} is to assist hackers in
5579 creating reproducible development environments without polluting their
5580 package profile. The @command{guix environment} tool takes one or more
5581 packages, builds all of their inputs, and creates a shell
5582 environment to use them.
5583
5584 The general syntax is:
5585
5586 @example
5587 guix environment @var{options} @var{package}@dots{}
5588 @end example
5589
5590 The following example spawns a new shell set up for the development of
5591 GNU@tie{}Guile:
5592
5593 @example
5594 guix environment guile
5595 @end example
5596
5597 If the needed dependencies are not built yet, @command{guix environment}
5598 automatically builds them. The environment of the new shell is an augmented
5599 version of the environment that @command{guix environment} was run in.
5600 It contains the necessary search paths for building the given package
5601 added to the existing environment variables. To create a ``pure''
5602 environment, in which the original environment variables have been unset,
5603 use the @code{--pure} option@footnote{Users sometimes wrongfully augment
5604 environment variables such as @code{PATH} in their @file{~/.bashrc}
5605 file. As a consequence, when @code{guix environment} launches it, Bash
5606 may read @file{~/.bashrc}, thereby introducing ``impurities'' in these
5607 environment variables. It is an error to define such environment
5608 variables in @file{.bashrc}; instead, they should be defined in
5609 @file{.bash_profile}, which is sourced only by log-in shells.
5610 @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for
5611 details on Bash start-up files.}.
5612
5613 @vindex GUIX_ENVIRONMENT
5614 @command{guix environment} defines the @code{GUIX_ENVIRONMENT}
5615 variable in the shell it spawns; its value is the file name of the
5616 profile of this environment. This allows users to, say, define a
5617 specific prompt for development environments in their @file{.bashrc}
5618 (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):
5619
5620 @example
5621 if [ -n "$GUIX_ENVIRONMENT" ]
5622 then
5623 export PS1="\u@@\h \w [dev]\$ "
5624 fi
5625 @end example
5626
5627 @noindent
5628 ... or to browse the profile:
5629
5630 @example
5631 $ ls "$GUIX_ENVIRONMENT/bin"
5632 @end example
5633
5634 Additionally, more than one package may be specified, in which case the
5635 union of the inputs for the given packages are used. For example, the
5636 command below spawns a shell where all of the dependencies of both Guile
5637 and Emacs are available:
5638
5639 @example
5640 guix environment guile emacs
5641 @end example
5642
5643 Sometimes an interactive shell session is not desired. An arbitrary
5644 command may be invoked by placing the @code{--} token to separate the
5645 command from the rest of the arguments:
5646
5647 @example
5648 guix environment guile -- make -j4
5649 @end example
5650
5651 In other situations, it is more convenient to specify the list of
5652 packages needed in the environment. For example, the following command
5653 runs @command{python} from an environment containing Python@tie{}2.7 and
5654 NumPy:
5655
5656 @example
5657 guix environment --ad-hoc python2-numpy python-2.7 -- python
5658 @end example
5659
5660 Furthermore, one might want the dependencies of a package and also some
5661 additional packages that are not build-time or runtime dependencies, but
5662 are useful when developing nonetheless. Because of this, the
5663 @code{--ad-hoc} flag is positional. Packages appearing before
5664 @code{--ad-hoc} are interpreted as packages whose dependencies will be
5665 added to the environment. Packages appearing after are interpreted as
5666 packages that will be added to the environment directly. For example,
5667 the following command creates a Guix development environment that
5668 additionally includes Git and strace:
5669
5670 @example
5671 guix environment guix --ad-hoc git strace
5672 @end example
5673
5674 Sometimes it is desirable to isolate the environment as much as
5675 possible, for maximal purity and reproducibility. In particular, when
5676 using Guix on a host distro that is not GuixSD, it is desirable to
5677 prevent access to @file{/usr/bin} and other system-wide resources from
5678 the development environment. For example, the following command spawns
5679 a Guile REPL in a ``container'' where only the store and the current
5680 working directory are mounted:
5681
5682 @example
5683 guix environment --ad-hoc --container guile -- guile
5684 @end example
5685
5686 @quotation Note
5687 The @code{--container} option requires Linux-libre 3.19 or newer.
5688 @end quotation
5689
5690 The available options are summarized below.
5691
5692 @table @code
5693 @item --expression=@var{expr}
5694 @itemx -e @var{expr}
5695 Create an environment for the package or list of packages that
5696 @var{expr} evaluates to.
5697
5698 For example, running:
5699
5700 @example
5701 guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'
5702 @end example
5703
5704 starts a shell with the environment for this specific variant of the
5705 PETSc package.
5706
5707 Running:
5708
5709 @example
5710 guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'
5711 @end example
5712
5713 starts a shell with all the GuixSD base packages available.
5714
5715 The above commands only the use default output of the given packages.
5716 To select other outputs, two element tuples can be specified:
5717
5718 @example
5719 guix environment --ad-hoc -e '(list (@ (gnu packages bash) bash) "include")'
5720 @end example
5721
5722 @item --load=@var{file}
5723 @itemx -l @var{file}
5724 Create an environment for the package or list of packages that the code
5725 within @var{file} evaluates to.
5726
5727 As an example, @var{file} might contain a definition like this
5728 (@pxref{Defining Packages}):
5729
5730 @example
5731 @verbatiminclude environment-gdb.scm
5732 @end example
5733
5734 @item --ad-hoc
5735 Include all specified packages in the resulting environment, as if an
5736 @i{ad hoc} package were defined with them as inputs. This option is
5737 useful for quickly creating an environment without having to write a
5738 package expression to contain the desired inputs.
5739
5740 For instance, the command:
5741
5742 @example
5743 guix environment --ad-hoc guile guile-sdl -- guile
5744 @end example
5745
5746 runs @command{guile} in an environment where Guile and Guile-SDL are
5747 available.
5748
5749 Note that this example implicitly asks for the default output of
5750 @code{guile} and @code{guile-sdl}, but it is possible to ask for a
5751 specific output---e.g., @code{glib:bin} asks for the @code{bin} output
5752 of @code{glib} (@pxref{Packages with Multiple Outputs}).
5753
5754 This option may be composed with the default behavior of @command{guix
5755 environment}. Packages appearing before @code{--ad-hoc} are interpreted
5756 as packages whose dependencies will be added to the environment, the
5757 default behavior. Packages appearing after are interpreted as packages
5758 that will be added to the environment directly.
5759
5760 @item --pure
5761 Unset existing environment variables when building the new environment.
5762 This has the effect of creating an environment in which search paths
5763 only contain package inputs.
5764
5765 @item --search-paths
5766 Display the environment variable definitions that make up the
5767 environment.
5768
5769 @item --system=@var{system}
5770 @itemx -s @var{system}
5771 Attempt to build for @var{system}---e.g., @code{i686-linux}.
5772
5773 @item --container
5774 @itemx -C
5775 @cindex container
5776 Run @var{command} within an isolated container. The current working
5777 directory outside the container is mapped inside the container.
5778 Additionally, a dummy home directory is created that matches the current
5779 user's home directory, and @file{/etc/passwd} is configured accordingly.
5780 The spawned process runs as the current user outside the container, but
5781 has root privileges in the context of the container.
5782
5783 @item --network
5784 @itemx -N
5785 For containers, share the network namespace with the host system.
5786 Containers created without this flag only have access to the loopback
5787 device.
5788
5789 @item --expose=@var{source}[=@var{target}]
5790 For containers, expose the file system @var{source} from the host system
5791 as the read-only file system @var{target} within the container. If
5792 @var{target} is not specified, @var{source} is used as the target mount
5793 point in the container.
5794
5795 The example below spawns a Guile REPL in a container in which the user's
5796 home directory is accessible read-only via the @file{/exchange}
5797 directory:
5798
5799 @example
5800 guix environment --container --expose=$HOME=/exchange guile -- guile
5801 @end example
5802
5803 @item --share=@var{source}[=@var{target}]
5804 For containers, share the file system @var{source} from the host system
5805 as the writable file system @var{target} within the container. If
5806 @var{target} is not specified, @var{source} is used as the target mount
5807 point in the container.
5808
5809 The example below spawns a Guile REPL in a container in which the user's
5810 home directory is accessible for both reading and writing via the
5811 @file{/exchange} directory:
5812
5813 @example
5814 guix environment --container --share=$HOME=/exchange guile -- guile
5815 @end example
5816 @end table
5817
5818 It also supports all of the common build options that @command{guix
5819 build} supports (@pxref{Common Build Options}).
5820
5821 @node Invoking guix publish
5822 @section Invoking @command{guix publish}
5823
5824 The purpose of @command{guix publish} is to enable users to easily share
5825 their store with others, who can then use it as a substitute server
5826 (@pxref{Substitutes}).
5827
5828 When @command{guix publish} runs, it spawns an HTTP server which allows
5829 anyone with network access to obtain substitutes from it. This means
5830 that any machine running Guix can also act as if it were a build farm,
5831 since the HTTP interface is compatible with Hydra, the software behind
5832 the @code{hydra.gnu.org} build farm.
5833
5834 For security, each substitute is signed, allowing recipients to check
5835 their authenticity and integrity (@pxref{Substitutes}). Because
5836 @command{guix publish} uses the signing key of the system, which is only
5837 readable by the system administrator, it must be started as root; the
5838 @code{--user} option makes it drop root privileges early on.
5839
5840 The signing key pair must be generated before @command{guix publish} is
5841 launched, using @command{guix archive --generate-key} (@pxref{Invoking
5842 guix archive}).
5843
5844 The general syntax is:
5845
5846 @example
5847 guix publish @var{options}@dots{}
5848 @end example
5849
5850 Running @command{guix publish} without any additional arguments will
5851 spawn an HTTP server on port 8080:
5852
5853 @example
5854 guix publish
5855 @end example
5856
5857 Once a publishing server has been authorized (@pxref{Invoking guix
5858 archive}), the daemon may download substitutes from it:
5859
5860 @example
5861 guix-daemon --substitute-urls=http://example.org:8080
5862 @end example
5863
5864 As a bonus, @command{guix publish} also serves as a content-addressed
5865 mirror for source files referenced in @code{origin} records
5866 (@pxref{origin Reference}). For instance, assuming @command{guix
5867 publish} is running on @code{example.org}, the following URL returns the
5868 raw @file{hello-2.10.tar.gz} file with the given SHA256 hash
5869 (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):
5870
5871 @example
5872 http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i
5873 @end example
5874
5875 Obviously, these URLs only work for files that are in the store; in
5876 other cases, they return 404 (``Not Found'').
5877
5878 The following options are available:
5879
5880 @table @code
5881 @item --port=@var{port}
5882 @itemx -p @var{port}
5883 Listen for HTTP requests on @var{port}.
5884
5885 @item --listen=@var{host}
5886 Listen on the network interface for @var{host}. The default is to
5887 accept connections from any interface.
5888
5889 @item --user=@var{user}
5890 @itemx -u @var{user}
5891 Change privileges to @var{user} as soon as possible---i.e., once the
5892 server socket is open and the signing key has been read.
5893
5894 @item --compression[=@var{level}]
5895 @itemx -C [@var{level}]
5896 Compress data using the given @var{level}. When @var{level} is zero,
5897 disable compression. The range 1 to 9 corresponds to different gzip
5898 compression levels: 1 is the fastest, and 9 is the best (CPU-intensive).
5899 The default is 3.
5900
5901 Compression occurs on the fly and the compressed streams are not
5902 cached. Thus, to reduce load on the machine that runs @command{guix
5903 publish}, it may be a good idea to choose a low compression level, or to
5904 run @command{guix publish} behind a caching proxy.
5905
5906 @item --ttl=@var{ttl}
5907 Produce @code{Cache-Control} HTTP headers that advertise a time-to-live
5908 (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5
5909 days, @code{1m} means 1 month, and so on.
5910
5911 This allows the user's Guix to keep substitute information in cache for
5912 @var{ttl}. However, note that @code{guix publish} does not itself
5913 guarantee that the store items it provides will indeed remain available
5914 for as long as @var{ttl}.
5915
5916 @item --repl[=@var{port}]
5917 @itemx -r [@var{port}]
5918 Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile
5919 Reference Manual}) on @var{port} (37146 by default). This is used
5920 primarily for debugging a running @command{guix publish} server.
5921 @end table
5922
5923 Enabling @command{guix publish} on a GuixSD system is a one-liner: just
5924 add a call to @code{guix-publish-service} in the @code{services} field
5925 of the @code{operating-system} declaration (@pxref{guix-publish-service,
5926 @code{guix-publish-service}}).
5927
5928
5929 @node Invoking guix challenge
5930 @section Invoking @command{guix challenge}
5931
5932 @cindex reproducible builds
5933 @cindex verifiable builds
5934
5935 Do the binaries provided by this server really correspond to the source
5936 code it claims to build? Is a package build process deterministic?
5937 These are the questions the @command{guix challenge} command attempts to
5938 answer.
5939
5940 The former is obviously an important question: Before using a substitute
5941 server (@pxref{Substitutes}), one had better @emph{verify} that it
5942 provides the right binaries, and thus @emph{challenge} it. The latter
5943 is what enables the former: If package builds are deterministic, then
5944 independent builds of the package should yield the exact same result,
5945 bit for bit; if a server provides a binary different from the one
5946 obtained locally, it may be either corrupt or malicious.
5947
5948 We know that the hash that shows up in @file{/gnu/store} file names is
5949 the hash of all the inputs of the process that built the file or
5950 directory---compilers, libraries, build scripts,
5951 etc. (@pxref{Introduction}). Assuming deterministic build processes,
5952 one store file name should map to exactly one build output.
5953 @command{guix challenge} checks whether there is, indeed, a single
5954 mapping by comparing the build outputs of several independent builds of
5955 any given store item.
5956
5957 The command output looks like this:
5958
5959 @smallexample
5960 $ guix challenge --substitute-urls="https://hydra.gnu.org https://guix.example.org"
5961 updating list of substitutes from 'https://hydra.gnu.org'... 100.0%
5962 updating list of substitutes from 'https://guix.example.org'... 100.0%
5963 /gnu/store/@dots{}-openssl-1.0.2d contents differ:
5964 local hash: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
5965 https://hydra.gnu.org/nar/@dots{}-openssl-1.0.2d: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
5966 https://guix.example.org/nar/@dots{}-openssl-1.0.2d: 1zy4fmaaqcnjrzzajkdn3f5gmjk754b43qkq47llbyak9z0qjyim
5967 /gnu/store/@dots{}-git-2.5.0 contents differ:
5968 local hash: 00p3bmryhjxrhpn2gxs2fy0a15lnip05l97205pgbk5ra395hyha
5969 https://hydra.gnu.org/nar/@dots{}-git-2.5.0: 069nb85bv4d4a6slrwjdy8v1cn4cwspm3kdbmyb81d6zckj3nq9f
5970 https://guix.example.org/nar/@dots{}-git-2.5.0: 0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73
5971 /gnu/store/@dots{}-pius-2.1.1 contents differ:
5972 local hash: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
5973 https://hydra.gnu.org/nar/@dots{}-pius-2.1.1: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
5974 https://guix.example.org/nar/@dots{}-pius-2.1.1: 1cy25x1a4fzq5rk0pmvc8xhwyffnqz95h2bpvqsz2mpvlbccy0gs
5975 @end smallexample
5976
5977 @noindent
5978 In this example, @command{guix challenge} first scans the store to
5979 determine the set of locally-built derivations---as opposed to store
5980 items that were downloaded from a substitute server---and then queries
5981 all the substitute servers. It then reports those store items for which
5982 the servers obtained a result different from the local build.
5983
5984 @cindex non-determinism, in package builds
5985 As an example, @code{guix.example.org} always gets a different answer.
5986 Conversely, @code{hydra.gnu.org} agrees with local builds, except in the
5987 case of Git. This might indicate that the build process of Git is
5988 non-deterministic, meaning that its output varies as a function of
5989 various things that Guix does not fully control, in spite of building
5990 packages in isolated environments (@pxref{Features}). Most common
5991 sources of non-determinism include the addition of timestamps in build
5992 results, the inclusion of random numbers, and directory listings sorted
5993 by inode number. See @uref{https://reproducible-builds.org/docs/}, for
5994 more information.
5995
5996 To find out what is wrong with this Git binary, we can do something along
5997 these lines (@pxref{Invoking guix archive}):
5998
5999 @example
6000 $ wget -q -O - https://hydra.gnu.org/nar/@dots{}-git-2.5.0 \
6001 | guix archive -x /tmp/git
6002 $ diff -ur --no-dereference /gnu/store/@dots{}-git.2.5.0 /tmp/git
6003 @end example
6004
6005 This command shows the difference between the files resulting from the
6006 local build, and the files resulting from the build on
6007 @code{hydra.gnu.org} (@pxref{Overview, Comparing and Merging Files,,
6008 diffutils, Comparing and Merging Files}). The @command{diff} command
6009 works great for text files. When binary files differ, a better option
6010 is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps
6011 visualize differences for all kinds of files.
6012
6013 Once you have done that work, you can tell whether the differences are due
6014 to a non-deterministic build process or to a malicious server. We try
6015 hard to remove sources of non-determinism in packages to make it easier
6016 to verify substitutes, but of course, this is a process that
6017 involves not just Guix, but a large part of the free software community.
6018 In the meantime, @command{guix challenge} is one tool to help address
6019 the problem.
6020
6021 If you are writing packages for Guix, you are encouraged to check
6022 whether @code{hydra.gnu.org} and other substitute servers obtain the
6023 same build result as you did with:
6024
6025 @example
6026 $ guix challenge @var{package}
6027 @end example
6028
6029 @noindent
6030 where @var{package} is a package specification such as
6031 @code{guile@@2.0} or @code{glibc:debug}.
6032
6033 The general syntax is:
6034
6035 @example
6036 guix challenge @var{options} [@var{packages}@dots{}]
6037 @end example
6038
6039 When a difference is found between the hash of a locally-built item and
6040 that of a server-provided substitute, or among substitutes provided by
6041 different servers, the command displays it as in the example above and
6042 its exit code is 2 (other non-zero exit codes denote other kinds of
6043 errors.)
6044
6045 The one option that matters is:
6046
6047 @table @code
6048
6049 @item --substitute-urls=@var{urls}
6050 Consider @var{urls} the whitespace-separated list of substitute source
6051 URLs to compare to.
6052
6053 @end table
6054
6055
6056 @node Invoking guix container
6057 @section Invoking @command{guix container}
6058 @cindex container
6059
6060 @quotation Note
6061 As of version @value{VERSION}, this tool is experimental. The interface
6062 is subject to radical change in the future.
6063 @end quotation
6064
6065 The purpose of @command{guix container} is to manipulate processes
6066 running within an isolated environment, commonly known as a
6067 ``container'', typically created by the @command{guix environment}
6068 (@pxref{Invoking guix environment}) and @command{guix system container}
6069 (@pxref{Invoking guix system}) commands.
6070
6071 The general syntax is:
6072
6073 @example
6074 guix container @var{action} @var{options}@dots{}
6075 @end example
6076
6077 @var{action} specifies the operation to perform with a container, and
6078 @var{options} specifies the context-specific arguments for the action.
6079
6080 The following actions are available:
6081
6082 @table @code
6083 @item exec
6084 Execute a command within the context of a running container.
6085
6086 The syntax is:
6087
6088 @example
6089 guix container exec @var{pid} @var{program} @var{arguments}@dots{}
6090 @end example
6091
6092 @var{pid} specifies the process ID of the running container.
6093 @var{program} specifies an executable file name within the root file
6094 system of the container. @var{arguments} are the additional options that
6095 will be passed to @var{program}.
6096
6097 The following command launches an interactive login shell inside a
6098 GuixSD container, started by @command{guix system container}, and whose
6099 process ID is 9001:
6100
6101 @example
6102 guix container exec 9001 /run/current-system/profile/bin/bash --login
6103 @end example
6104
6105 Note that the @var{pid} cannot be the parent process of a container. It
6106 must be PID 1 of the container or one of its child processes.
6107
6108 @end table
6109
6110 @c *********************************************************************
6111 @node GNU Distribution
6112 @chapter GNU Distribution
6113
6114 @cindex Guix System Distribution
6115 @cindex GuixSD
6116 Guix comes with a distribution of the GNU system consisting entirely of
6117 free software@footnote{The term ``free'' here refers to the
6118 @url{http://www.gnu.org/philosophy/free-sw.html,freedom provided to
6119 users of that software}.}. The
6120 distribution can be installed on its own (@pxref{System Installation}),
6121 but it is also possible to install Guix as a package manager on top of
6122 an installed GNU/Linux system (@pxref{Installation}). To distinguish
6123 between the two, we refer to the standalone distribution as the Guix
6124 System Distribution, or GuixSD.
6125
6126 The distribution provides core GNU packages such as GNU libc, GCC, and
6127 Binutils, as well as many GNU and non-GNU applications. The complete
6128 list of available packages can be browsed
6129 @url{http://www.gnu.org/software/guix/packages,on-line} or by
6130 running @command{guix package} (@pxref{Invoking guix package}):
6131
6132 @example
6133 guix package --list-available
6134 @end example
6135
6136 Our goal is to provide a practical 100% free software distribution of
6137 Linux-based and other variants of GNU, with a focus on the promotion and
6138 tight integration of GNU components, and an emphasis on programs and
6139 tools that help users exert that freedom.
6140
6141 Packages are currently available on the following platforms:
6142
6143 @table @code
6144
6145 @item x86_64-linux
6146 Intel/AMD @code{x86_64} architecture, Linux-Libre kernel;
6147
6148 @item i686-linux
6149 Intel 32-bit architecture (IA32), Linux-Libre kernel;
6150
6151 @item armhf-linux
6152 ARMv7-A architecture with hard float, Thumb-2 and NEON,
6153 using the EABI hard-float application binary interface (ABI),
6154 and Linux-Libre kernel.
6155
6156 @item mips64el-linux
6157 little-endian 64-bit MIPS processors, specifically the Loongson series,
6158 n32 ABI, and Linux-Libre kernel.
6159
6160 @end table
6161
6162 GuixSD itself is currently only available on @code{i686} and @code{x86_64}.
6163
6164 @noindent
6165 For information on porting to other architectures or kernels,
6166 @pxref{Porting}.
6167
6168 @menu
6169 * System Installation:: Installing the whole operating system.
6170 * System Configuration:: Configuring the operating system.
6171 * Installing Debugging Files:: Feeding the debugger.
6172 * Security Updates:: Deploying security fixes quickly.
6173 * Package Modules:: Packages from the programmer's viewpoint.
6174 * Packaging Guidelines:: Growing the distribution.
6175 * Bootstrapping:: GNU/Linux built from scratch.
6176 * Porting:: Targeting another platform or kernel.
6177 @end menu
6178
6179 Building this distribution is a cooperative effort, and you are invited
6180 to join! @xref{Contributing}, for information about how you can help.
6181
6182 @node System Installation
6183 @section System Installation
6184
6185 @cindex Guix System Distribution
6186 This section explains how to install the Guix System Distribution (GuixSD)
6187 on a machine. The Guix package manager can
6188 also be installed on top of a running GNU/Linux system,
6189 @pxref{Installation}.
6190
6191 @ifinfo
6192 @quotation Note
6193 @c This paragraph is for people reading this from tty2 of the
6194 @c installation image.
6195 You are reading this documentation with an Info reader. For details on
6196 how to use it, hit the @key{RET} key (``return'' or ``enter'') on the
6197 link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU
6198 Info}. Hit @kbd{l} afterwards to come back here.
6199
6200 Alternately, run @command{info info} in another tty to keep the manual
6201 available.
6202 @end quotation
6203 @end ifinfo
6204
6205 @menu
6206 * Limitations:: What you can expect.
6207 * Hardware Considerations:: Supported hardware.
6208 * USB Stick Installation:: Preparing the installation medium.
6209 * Preparing for Installation:: Networking, partitioning, etc.
6210 * Proceeding with the Installation:: The real thing.
6211 * Installing GuixSD in a VM:: GuixSD playground.
6212 * Building the Installation Image:: How this comes to be.
6213 @end menu
6214
6215 @node Limitations
6216 @subsection Limitations
6217
6218 As of version @value{VERSION}, the Guix System Distribution (GuixSD) is
6219 not production-ready. It may contain bugs and lack important
6220 features. Thus, if you are looking for a stable production system that
6221 respects your freedom as a computer user, a good solution at this point
6222 is to consider @url{http://www.gnu.org/distros/free-distros.html, one of
6223 the more established GNU/Linux distributions}. We hope you can soon switch
6224 to the GuixSD without fear, of course. In the meantime, you can
6225 also keep using your distribution and try out the package manager on top
6226 of it (@pxref{Installation}).
6227
6228 Before you proceed with the installation, be aware of the following
6229 noteworthy limitations applicable to version @value{VERSION}:
6230
6231 @itemize
6232 @item
6233 The installation process does not include a graphical user interface and
6234 requires familiarity with GNU/Linux (see the following subsections to
6235 get a feel of what that means.)
6236
6237 @item
6238 Support for the Logical Volume Manager (LVM) is missing.
6239
6240 @item
6241 Few system services are currently supported out-of-the-box
6242 (@pxref{Services}).
6243
6244 @item
6245 More than 4,000 packages are available, but you may
6246 occasionally find that a useful package is missing.
6247
6248 @item
6249 GNOME, Xfce, and Enlightenment are available (@pxref{Desktop Services}),
6250 as well as a number of X11 window managers. However, some graphical
6251 applications may be missing, as well as KDE.
6252 @end itemize
6253
6254 You have been warned! But more than a disclaimer, this is an invitation
6255 to report issues (and success stories!), and to join us in improving it.
6256 @xref{Contributing}, for more info.
6257
6258
6259 @node Hardware Considerations
6260 @subsection Hardware Considerations
6261
6262 @cindex hardware support on GuixSD
6263 GNU@tie{}GuixSD focuses on respecting the user's computing freedom. It
6264 builds around the kernel Linux-libre, which means that only hardware for
6265 which free software drivers and firmware exist is supported. Nowadays,
6266 a wide range of off-the-shelf hardware is supported on
6267 GNU/Linux-libre---from keyboards to graphics cards to scanners and
6268 Ethernet controllers. Unfortunately, there are still areas where
6269 hardware vendors deny users control over their own computing, and such
6270 hardware is not supported on GuixSD.
6271
6272 @cindex WiFi, hardware support
6273 One of the main areas where free drivers or firmware are lacking is WiFi
6274 devices. WiFi devices known to work include those using Atheros chips
6275 (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre
6276 driver, and for which free firmware exists and is available
6277 out-of-the-box on GuixSD, as part of @var{%base-firmware}
6278 (@pxref{operating-system Reference, @code{firmware}}).
6279
6280 @cindex RYF, Respects Your Freedom
6281 The @uref{https://www.fsf.org/, Free Software Foundation} runs
6282 @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a
6283 certification program for hardware products that respect your freedom
6284 and your privacy and ensure that you have control over your device. We
6285 encourage you to check the list of RYF-certified devices.
6286
6287 Another useful resource is the @uref{https://www.h-node.org/, H-Node}
6288 web site. It contains a catalog of hardware devices with information
6289 about their support in GNU/Linux.
6290
6291
6292 @node USB Stick Installation
6293 @subsection USB Stick Installation
6294
6295 An installation image for USB sticks can be downloaded from
6296 @indicateurl{ftp://alpha.gnu.org/gnu/guix/guixsd-usb-install-@value{VERSION}.@var{system}.xz},
6297 where @var{system} is one of:
6298
6299 @table @code
6300 @item x86_64-linux
6301 for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;
6302
6303 @item i686-linux
6304 for a 32-bit GNU/Linux system on Intel-compatible CPUs.
6305 @end table
6306
6307 @c start duplication of authentication part from ``Binary Installation''
6308 Make sure to download the associated @file{.sig} file and to verify the
6309 authenticity of the image against it, along these lines:
6310
6311 @example
6312 $ wget ftp://alpha.gnu.org/gnu/guix/guixsd-usb-install-@value{VERSION}.@var{system}.xz.sig
6313 $ gpg --verify guixsd-usb-install-@value{VERSION}.@var{system}.xz.sig
6314 @end example
6315
6316 If that command fails because you do not have the required public key,
6317 then run this command to import it:
6318
6319 @example
6320 $ gpg --keyserver pgp.mit.edu --recv-keys @value{OPENPGP-SIGNING-KEY-ID}
6321 @end example
6322
6323 @noindent
6324 and rerun the @code{gpg --verify} command.
6325 @c end duplication
6326
6327 This image contains a single partition with the tools necessary for an
6328 installation. It is meant to be copied @emph{as is} to a large-enough
6329 USB stick.
6330
6331 To copy the image to a USB stick, follow these steps:
6332
6333 @enumerate
6334 @item
6335 Decompress the image using the @command{xz} command:
6336
6337 @example
6338 xz -d guixsd-usb-install-@value{VERSION}.@var{system}.xz
6339 @end example
6340
6341 @item
6342 Insert a USB stick of 1@tie{}GiB or more into your machine, and determine
6343 its device name. Assuming that the USB stick is known as @file{/dev/sdX},
6344 copy the image with:
6345
6346 @example
6347 dd if=guixsd-usb-install-@value{VERSION}.x86_64 of=/dev/sdX
6348 @end example
6349
6350 Access to @file{/dev/sdX} usually requires root privileges.
6351 @end enumerate
6352
6353 Once this is done, you should be able to reboot the system and boot from
6354 the USB stick. The latter usually requires you to get in the BIOS' boot
6355 menu, where you can choose to boot from the USB stick.
6356
6357 @xref{Installing GuixSD in a VM}, if, instead, you would like to install
6358 GuixSD in a virtual machine (VM).
6359
6360 @node Preparing for Installation
6361 @subsection Preparing for Installation
6362
6363 Once you have successfully booted the image on the USB stick, you should
6364 end up with a root prompt. Several console TTYs are configured and can
6365 be used to run commands as root. TTY2 shows this documentation,
6366 browsable using the Info reader commands (@pxref{Top,,, info-stnd,
6367 Stand-alone GNU Info}). The installation system runs the GPM mouse
6368 daemon, which allows you to select text with the left mouse button and
6369 to paste it with the middle button.
6370
6371 @quotation Note
6372 Installation requires access to the Internet so that any missing
6373 dependencies of your system configuration can be downloaded. See the
6374 ``Networking'' section below.
6375 @end quotation
6376
6377 The installation system includes many common tools needed for this task.
6378 But it is also a full-blown GuixSD system, which means that you can
6379 install additional packages, should you need it, using @command{guix
6380 package} (@pxref{Invoking guix package}).
6381
6382 @subsubsection Keyboard Layout
6383
6384 @cindex keyboard layout
6385 The installation image uses the US qwerty keyboard layout. If you want
6386 to change it, you can use the @command{loadkeys} command. For example,
6387 the following command selects the Dvorak keyboard layout:
6388
6389 @example
6390 loadkeys dvorak
6391 @end example
6392
6393 See the files under @file{/run/current-system/profile/share/keymaps} for
6394 a list of available keyboard layouts. Run @command{man loadkeys} for
6395 more information.
6396
6397 @subsubsection Networking
6398
6399 Run the following command see what your network interfaces are called:
6400
6401 @example
6402 ifconfig -a
6403 @end example
6404
6405 @noindent
6406 @dots{} or, using the GNU/Linux-specific @command{ip} command:
6407
6408 @example
6409 ip a
6410 @end example
6411
6412 @c http://cgit.freedesktop.org/systemd/systemd/tree/src/udev/udev-builtin-net_id.c#n20
6413 Wired interfaces have a name starting with @samp{e}; for example, the
6414 interface corresponding to the first on-board Ethernet controller is
6415 called @samp{eno1}. Wireless interfaces have a name starting with
6416 @samp{w}, like @samp{w1p2s0}.
6417
6418 @table @asis
6419 @item Wired connection
6420 To configure a wired network run the following command, substituting
6421 @var{interface} with the name of the wired interface you want to use.
6422
6423 @example
6424 ifconfig @var{interface} up
6425 @end example
6426
6427 @item Wireless connection
6428 To configure wireless networking, you can create a configuration file
6429 for the @command{wpa_supplicant} configuration tool (its location is not
6430 important) using one of the available text editors such as
6431 @command{zile}:
6432
6433 @example
6434 zile wpa_supplicant.conf
6435 @end example
6436
6437 As an example, the following stanza can go to this file and will work
6438 for many wireless networks, provided you give the actual SSID and
6439 passphrase for the network you are connecting to:
6440
6441 @example
6442 network=@{
6443 ssid="@var{my-ssid}"
6444 key_mgmt=WPA-PSK
6445 psk="the network's secret passphrase"
6446 @}
6447 @end example
6448
6449 Start the wireless service and run it in the background with the
6450 following command (substitute @var{interface} with the name of the
6451 network interface you want to use):
6452
6453 @example
6454 wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B
6455 @end example
6456
6457 Run @command{man wpa_supplicant} for more information.
6458 @end table
6459
6460 At this point, you need to acquire an IP address. On a network where IP
6461 addresses are automatically assigned @i{via} DHCP, you can run:
6462
6463 @example
6464 dhclient -v @var{interface}
6465 @end example
6466
6467 Try to ping a server to see if networking is up and running:
6468
6469 @example
6470 ping -c 3 gnu.org
6471 @end example
6472
6473 Setting up network access is almost always a requirement because the
6474 image does not contain all the software and tools that may be needed.
6475
6476 @subsubsection Disk Partitioning
6477
6478 Unless this has already been done, the next step is to partition, and
6479 then format the target partition(s).
6480
6481 The installation image includes several partitioning tools, including
6482 Parted (@pxref{Overview,,, parted, GNU Parted User Manual}),
6483 @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with
6484 the partition layout you want:
6485
6486 @example
6487 cfdisk
6488 @end example
6489
6490 Once you are done partitioning the target hard disk drive, you have to
6491 create a file system on the relevant partition(s)@footnote{Currently
6492 GuixSD pretty much assumes an ext4 file system. In particular, code
6493 that reads partition UUIDs and labels only works with ext4. This will
6494 be fixed in the future.}.
6495
6496 Preferably, assign partitions a label so that you can easily and
6497 reliably refer to them in @code{file-system} declarations (@pxref{File
6498 Systems}). This is typically done using the @code{-L} option of
6499 @command{mkfs.ext4} and related commands. So, assuming the target root
6500 partition lives at @file{/dev/sda1}, a file system with the label
6501 @code{my-root} can be created with:
6502
6503 @example
6504 mkfs.ext4 -L my-root /dev/sda1
6505 @end example
6506
6507 @c FIXME: Uncomment this once GRUB fully supports encrypted roots.
6508 @c A typical command sequence may be:
6509 @c
6510 @c @example
6511 @c # fdisk /dev/sdX
6512 @c @dots{} Create partitions etc.@dots{}
6513 @c # cryptsetup luksFormat /dev/sdX1
6514 @c # cryptsetup open --type luks /dev/sdX1 my-partition
6515 @c # mkfs.ext4 -L my-root /dev/mapper/my-partition
6516 @c @end example
6517
6518 In addition to e2fsprogs, the suite of tools to manipulate
6519 ext2/ext3/ext4 file systems, the installation image includes
6520 Cryptsetup/LUKS for disk encryption.
6521
6522 Once that is done, mount the target root partition under @file{/mnt}
6523 with a command like (again, assuming @file{/dev/sda1} is the root
6524 partition):
6525
6526 @example
6527 mount /dev/sda1 /mnt
6528 @end example
6529
6530 Finally, if you plan to use one or more swap partitions (@pxref{Memory
6531 Concepts, swap space,, libc, The GNU C Library Reference Manual}), make
6532 sure to initialize them with @command{mkswap}. Assuming you have one
6533 swap partition on @file{/dev/sda2}, you would run:
6534
6535 @example
6536 mkswap /dev/sda2
6537 @end example
6538
6539 @node Proceeding with the Installation
6540 @subsection Proceeding with the Installation
6541
6542 With the target partitions ready and the target root mounted on
6543 @file{/mnt}, we're ready to go. First, run:
6544
6545 @example
6546 herd start cow-store /mnt
6547 @end example
6548
6549 This makes @file{/gnu/store} copy-on-write, such that packages added to it
6550 during the installation phase are written to the target disk on @file{/mnt}
6551 rather than kept in memory. This is necessary because the first phase of
6552 the @command{guix system init} command (see below) entails downloads or
6553 builds to @file{/gnu/store} which, initially, is an in-memory file system.
6554
6555 Next, you have to edit a file and
6556 provide the declaration of the operating system to be installed. To
6557 that end, the installation system comes with three text editors: GNU nano
6558 (@pxref{Top,,, nano, GNU nano Manual}), GNU Zile (an Emacs clone), and
6559 nvi (a clone of the original BSD @command{vi} editor).
6560 We strongly recommend storing that file on the target root file system, say,
6561 as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your
6562 configuration file once you have rebooted into the newly-installed system.
6563
6564 @xref{Using the Configuration System}, for an overview of the
6565 configuration file. The example configurations discussed in that
6566 section are available under @file{/etc/configuration} in the
6567 installation image. Thus, to get started with a system configuration
6568 providing a graphical display server (a ``desktop'' system), you can run
6569 something along these lines:
6570
6571 @example
6572 # mkdir /mnt/etc
6573 # cp /etc/configuration/desktop.scm /mnt/etc/config.scm
6574 # zile /mnt/etc/config.scm
6575 @end example
6576
6577 You should pay attention to what your configuration file contains, and
6578 in particular:
6579
6580 @itemize
6581 @item
6582 Make sure the @code{grub-configuration} form refers to the device you
6583 want to install GRUB on.
6584
6585 @item
6586 Be sure that your partition labels match the value of their respective
6587 @code{device} fields in your @code{file-system} configuration, assuming
6588 your @code{file-system} configuration sets the value of @code{title} to
6589 @code{'label}.
6590 @end itemize
6591
6592 Once you are done preparing the configuration file, the new system must
6593 be initialized (remember that the target root file system is mounted
6594 under @file{/mnt}):
6595
6596 @example
6597 guix system init /mnt/etc/config.scm /mnt
6598 @end example
6599
6600 @noindent
6601 This copies all the necessary files and installs GRUB on
6602 @file{/dev/sdX}, unless you pass the @option{--no-grub} option. For
6603 more information, @pxref{Invoking guix system}. This command may trigger
6604 downloads or builds of missing packages, which can take some time.
6605
6606 Once that command has completed---and hopefully succeeded!---you can run
6607 @command{reboot} and boot into the new system. The @code{root} password
6608 in the new system is initially empty; other users' passwords need to be
6609 initialized by running the @command{passwd} command as @code{root},
6610 unless your configuration specifies otherwise
6611 (@pxref{user-account-password, user account passwords}).
6612
6613 Join us on @code{#guix} on the Freenode IRC network or on
6614 @file{guix-devel@@gnu.org} to share your experience---good or not so
6615 good.
6616
6617 @node Installing GuixSD in a VM
6618 @subsection Installing GuixSD in a Virtual Machine
6619
6620 @cindex virtual machine, GuixSD installation
6621 If you'd like to install GuixSD in a virtual machine (VM) rather than on
6622 your beloved machine, this section is for you.
6623
6624 To boot a @uref{http://qemu.org/,QEMU} VM for installing GuixSD in a
6625 disk image, follow these steps:
6626
6627 @enumerate
6628 @item
6629 First, retrieve the GuixSD installation image as described previously
6630 (@pxref{USB Stick Installation}).
6631
6632 @item
6633 Create a disk image that will hold the installed system. To make a
6634 qcow2-formatted disk image, use the @command{qemu-img} command:
6635
6636 @example
6637 qemu-img create -f qcow2 guixsd.img 5G
6638 @end example
6639
6640 This will create a 5GB file.
6641
6642 @item
6643 Boot the USB installation image in an VM:
6644
6645 @example
6646 qemu-system-x86_64 -m 1024 -smp 1 \
6647 -net default -net nic,model=virtio -boot menu=on \
6648 -drive file=guixsd.img \
6649 -drive file=guixsd-usb-install-@value{VERSION}.@var{system}
6650 @end example
6651
6652 In the VM console, quickly press the @kbd{F12} key to enter the boot
6653 menu. Then press the @kbd{2} key and the @kbd{RET} key to validate your
6654 selection.
6655
6656 @item
6657 You're now root in the VM, proceed with the installation process.
6658 @xref{Preparing for Installation}, and follow the instructions.
6659 @end enumerate
6660
6661 Once installation is complete, you can boot the system that's on your
6662 @file{guixsd.img} image. @xref{Running GuixSD in a VM}, for how to do
6663 that.
6664
6665 @node Building the Installation Image
6666 @subsection Building the Installation Image
6667
6668 The installation image described above was built using the @command{guix
6669 system} command, specifically:
6670
6671 @c FIXME: 1G is too much; see <http://bugs.gnu.org/23077>.
6672 @example
6673 guix system disk-image --image-size=1G gnu/system/install.scm
6674 @end example
6675
6676 Have a look at @file{gnu/system/install.scm} in the source tree,
6677 and see also @ref{Invoking guix system} for more information
6678 about the installation image.
6679
6680 @node System Configuration
6681 @section System Configuration
6682
6683 @cindex system configuration
6684 The Guix System Distribution supports a consistent whole-system configuration
6685 mechanism. By that we mean that all aspects of the global system
6686 configuration---such as the available system services, timezone and
6687 locale settings, user accounts---are declared in a single place. Such
6688 a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected.
6689
6690 One of the advantages of putting all the system configuration under the
6691 control of Guix is that it supports transactional system upgrades, and
6692 makes it possible to roll back to a previous system instantiation,
6693 should something go wrong with the new one (@pxref{Features}). Another
6694 advantage is that it makes it easy to replicate the exact same configuration
6695 across different machines, or at different points in time, without
6696 having to resort to additional administration tools layered on top of
6697 the own tools of the system.
6698 @c Yes, we're talking of Puppet, Chef, & co. here. ↑
6699
6700 This section describes this mechanism. First we focus on the system
6701 administrator's viewpoint---explaining how the system is configured and
6702 instantiated. Then we show how this mechanism can be extended, for
6703 instance to support new system services.
6704
6705 @menu
6706 * Using the Configuration System:: Customizing your GNU system.
6707 * operating-system Reference:: Detail of operating-system declarations.
6708 * File Systems:: Configuring file system mounts.
6709 * Mapped Devices:: Block device extra processing.
6710 * User Accounts:: Specifying user accounts.
6711 * Locales:: Language and cultural convention settings.
6712 * Services:: Specifying system services.
6713 * Setuid Programs:: Programs running with root privileges.
6714 * X.509 Certificates:: Authenticating HTTPS servers.
6715 * Name Service Switch:: Configuring libc's name service switch.
6716 * Initial RAM Disk:: Linux-Libre bootstrapping.
6717 * GRUB Configuration:: Configuring the boot loader.
6718 * Invoking guix system:: Instantiating a system configuration.
6719 * Running GuixSD in a VM:: How to run GuixSD in a virtual machine.
6720 * Defining Services:: Adding new service definitions.
6721 @end menu
6722
6723 @node Using the Configuration System
6724 @subsection Using the Configuration System
6725
6726 The operating system is configured by providing an
6727 @code{operating-system} declaration in a file that can then be passed to
6728 the @command{guix system} command (@pxref{Invoking guix system}). A
6729 simple setup, with the default system services, the default Linux-Libre
6730 kernel, initial RAM disk, and boot loader looks like this:
6731
6732 @findex operating-system
6733 @lisp
6734 @include os-config-bare-bones.texi
6735 @end lisp
6736
6737 This example should be self-describing. Some of the fields defined
6738 above, such as @code{host-name} and @code{bootloader}, are mandatory.
6739 Others, such as @code{packages} and @code{services}, can be omitted, in
6740 which case they get a default value.
6741
6742 Below we discuss the effect of some of the most important fields
6743 (@pxref{operating-system Reference}, for details about all the available
6744 fields), and how to @dfn{instantiate} the operating system using
6745 @command{guix system}.
6746
6747 @unnumberedsubsubsec Globally-Visible Packages
6748
6749 @vindex %base-packages
6750 The @code{packages} field lists packages that will be globally visible
6751 on the system, for all user accounts---i.e., in every user's @code{PATH}
6752 environment variable---in addition to the per-user profiles
6753 (@pxref{Invoking guix package}). The @var{%base-packages} variable
6754 provides all the tools one would expect for basic user and administrator
6755 tasks---including the GNU Core Utilities, the GNU Networking Utilities,
6756 the GNU Zile lightweight text editor, @command{find}, @command{grep},
6757 etc. The example above adds tcpdump to those, taken from the @code{(gnu
6758 packages admin)} module (@pxref{Package Modules}).
6759
6760 @findex specification->package
6761 Referring to packages by variable name, like @var{tcpdump} above, has
6762 the advantage of being unambiguous; it also allows typos and such to be
6763 diagnosed right away as ``unbound variables''. The downside is that one
6764 needs to know which module defines which package, and to augment the
6765 @code{use-package-modules} line accordingly. To avoid that, one can use
6766 the @code{specification->package} procedure of the @code{(gnu packages)}
6767 module, which returns the best package for a given name or name and
6768 version:
6769
6770 @lisp
6771 (use-modules (gnu packages))
6772
6773 (operating-system
6774 ;; ...
6775 (packages (append (map specification->package
6776 '("tcpdump" "htop" "gnupg@@2.0"))
6777 %base-packages)))
6778 @end lisp
6779
6780 @unnumberedsubsubsec System Services
6781
6782 @vindex %base-services
6783 The @code{services} field lists @dfn{system services} to be made
6784 available when the system starts (@pxref{Services}).
6785 The @code{operating-system} declaration above specifies that, in
6786 addition to the basic services, we want the @command{lshd} secure shell
6787 daemon listening on port 2222 (@pxref{Networking Services,
6788 @code{lsh-service}}). Under the hood,
6789 @code{lsh-service} arranges so that @code{lshd} is started with the
6790 right command-line options, possibly with supporting configuration files
6791 generated as needed (@pxref{Defining Services}).
6792
6793 @cindex customization, of services
6794 @findex modify-services
6795 Occasionally, instead of using the base services as is, you will want to
6796 customize them. To do this, use @code{modify-services} (@pxref{Service
6797 Reference, @code{modify-services}}) to modify the list.
6798
6799 For example, suppose you want to modify @code{guix-daemon} and Mingetty
6800 (the console log-in) in the @var{%base-services} list (@pxref{Base
6801 Services, @code{%base-services}}). To do that, you can write the
6802 following in your operating system declaration:
6803
6804 @lisp
6805 (define %my-services
6806 ;; My very own list of services.
6807 (modify-services %base-services
6808 (guix-service-type config =>
6809 (guix-configuration
6810 (inherit config)
6811 (use-substitutes? #f)
6812 (extra-options '("--gc-keep-derivations"))))
6813 (mingetty-service-type config =>
6814 (mingetty-configuration
6815 (inherit config)))))
6816
6817 (operating-system
6818 ;; @dots{}
6819 (services %my-services))
6820 @end lisp
6821
6822 This changes the configuration---i.e., the service parameters---of the
6823 @code{guix-service-type} instance, and that of all the
6824 @code{mingetty-service-type} instances in the @var{%base-services} list.
6825 Observe how this is accomplished: first, we arrange for the original
6826 configuration to be bound to the identifier @code{config} in the
6827 @var{body}, and then we write the @var{body} so that it evaluates to the
6828 desired configuration. In particular, notice how we use @code{inherit}
6829 to create a new configuration which has the same values as the old
6830 configuration, but with a few modifications.
6831
6832 The configuration for a typical ``desktop'' usage, with the X11 display
6833 server, GNOME and Xfce (users can choose which of these desktop
6834 environments to use at the log-in screen by pressing @kbd{F1}), network
6835 management, power management, and more, would look like this:
6836
6837 @lisp
6838 @include os-config-desktop.texi
6839 @end lisp
6840
6841 A graphical environment with a choice of lightweight window managers
6842 instead of full-blown desktop environments would look like this:
6843
6844 @lisp
6845 @include os-config-lightweight-desktop.texi
6846 @end lisp
6847
6848 @xref{Desktop Services}, for the exact list of services provided by
6849 @var{%desktop-services}. @xref{X.509 Certificates}, for background
6850 information about the @code{nss-certs} package that is used here.
6851
6852 Again, @var{%desktop-services} is just a list of service objects. If
6853 you want to remove services from there, you can do so using the
6854 procedures for list filtering (@pxref{SRFI-1 Filtering and
6855 Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the
6856 following expression returns a list that contains all the services in
6857 @var{%desktop-services} minus the Avahi service:
6858
6859 @example
6860 (remove (lambda (service)
6861 (eq? (service-kind service) avahi-service-type))
6862 %desktop-services)
6863 @end example
6864
6865 @unnumberedsubsubsec Instantiating the System
6866
6867 Assuming the @code{operating-system} declaration
6868 is stored in the @file{my-system-config.scm}
6869 file, the @command{guix system reconfigure my-system-config.scm} command
6870 instantiates that configuration, and makes it the default GRUB boot
6871 entry (@pxref{Invoking guix system}).
6872
6873 The normal way to change the system configuration is by updating this
6874 file and re-running @command{guix system reconfigure}. One should never
6875 have to touch files in @command{/etc} or to run commands that modify the
6876 system state such as @command{useradd} or @command{grub-install}. In
6877 fact, you must avoid that since that would not only void your warranty
6878 but also prevent you from rolling back to previous versions of your
6879 system, should you ever need to.
6880
6881 @cindex roll-back, of the operating system
6882 Speaking of roll-back, each time you run @command{guix system
6883 reconfigure}, a new @dfn{generation} of the system is created---without
6884 modifying or deleting previous generations. Old system generations get
6885 an entry in the GRUB boot menu, allowing you to boot them in case
6886 something went wrong with the latest generation. Reassuring, no? The
6887 @command{guix system list-generations} command lists the system
6888 generations available on disk.
6889
6890 @unnumberedsubsubsec The Programming Interface
6891
6892 At the Scheme level, the bulk of an @code{operating-system} declaration
6893 is instantiated with the following monadic procedure (@pxref{The Store
6894 Monad}):
6895
6896 @deffn {Monadic Procedure} operating-system-derivation os
6897 Return a derivation that builds @var{os}, an @code{operating-system}
6898 object (@pxref{Derivations}).
6899
6900 The output of the derivation is a single directory that refers to all
6901 the packages, configuration files, and other supporting files needed to
6902 instantiate @var{os}.
6903 @end deffn
6904
6905 This procedure is provided by the @code{(gnu system)} module. Along
6906 with @code{(gnu services)} (@pxref{Services}), this module contains the
6907 guts of GuixSD. Make sure to visit it!
6908
6909
6910 @node operating-system Reference
6911 @subsection @code{operating-system} Reference
6912
6913 This section summarizes all the options available in
6914 @code{operating-system} declarations (@pxref{Using the Configuration
6915 System}).
6916
6917 @deftp {Data Type} operating-system
6918 This is the data type representing an operating system configuration.
6919 By that, we mean all the global system configuration, not per-user
6920 configuration (@pxref{Using the Configuration System}).
6921
6922 @table @asis
6923 @item @code{kernel} (default: @var{linux-libre})
6924 The package object of the operating system kernel to use@footnote{Currently
6925 only the Linux-libre kernel is supported. In the future, it will be
6926 possible to use the GNU@tie{}Hurd.}.
6927
6928 @item @code{kernel-arguments} (default: @code{'()})
6929 List of strings or gexps representing additional arguments to pass on
6930 the command-line of the kernel---e.g., @code{("console=ttyS0")}.
6931
6932 @item @code{bootloader}
6933 The system bootloader configuration object. @xref{GRUB Configuration}.
6934
6935 @item @code{initrd} (default: @code{base-initrd})
6936 A two-argument monadic procedure that returns an initial RAM disk for
6937 the Linux kernel. @xref{Initial RAM Disk}.
6938
6939 @item @code{firmware} (default: @var{%base-firmware})
6940 @cindex firmware
6941 List of firmware packages loadable by the operating system kernel.
6942
6943 The default includes firmware needed for Atheros-based WiFi devices
6944 (Linux-libre module @code{ath9k}). @xref{Hardware Considerations}, for
6945 more info on supported hardware.
6946
6947 @item @code{host-name}
6948 The host name.
6949
6950 @item @code{hosts-file}
6951 @cindex hosts file
6952 A file-like object (@pxref{G-Expressions, file-like objects}) for use as
6953 @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library
6954 Reference Manual}). The default is a file with entries for
6955 @code{localhost} and @var{host-name}.
6956
6957 @item @code{mapped-devices} (default: @code{'()})
6958 A list of mapped devices. @xref{Mapped Devices}.
6959
6960 @item @code{file-systems}
6961 A list of file systems. @xref{File Systems}.
6962
6963 @item @code{swap-devices} (default: @code{'()})
6964 @cindex swap devices
6965 A list of strings identifying devices to be used for ``swap space''
6966 (@pxref{Memory Concepts,,, libc, The GNU C Library Reference Manual}).
6967 For example, @code{'("/dev/sda3")}.
6968
6969 @item @code{users} (default: @code{%base-user-accounts})
6970 @itemx @code{groups} (default: @var{%base-groups})
6971 List of user accounts and groups. @xref{User Accounts}.
6972
6973 @item @code{skeletons} (default: @code{(default-skeletons)})
6974 A list target file name/file-like object tuples (@pxref{G-Expressions,
6975 file-like objects}). These are the skeleton files that will be added to
6976 the home directory of newly-created user accounts.
6977
6978 For instance, a valid value may look like this:
6979
6980 @example
6981 `((".bashrc" ,(plain-file "bashrc" "echo Hello\n"))
6982 (".guile" ,(plain-file "guile"
6983 "(use-modules (ice-9 readline))
6984 (activate-readline)")))
6985 @end example
6986
6987 @item @code{issue} (default: @var{%default-issue})
6988 A string denoting the contents of the @file{/etc/issue} file, which is
6989 displayed when users log in on a text console.
6990
6991 @item @code{packages} (default: @var{%base-packages})
6992 The set of packages installed in the global profile, which is accessible
6993 at @file{/run/current-system/profile}.
6994
6995 The default set includes core utilities and it is good practice to
6996 install non-core utilities in user profiles (@pxref{Invoking guix
6997 package}).
6998
6999 @item @code{timezone}
7000 A timezone identifying string---e.g., @code{"Europe/Paris"}.
7001
7002 You can run the @command{tzselect} command to find out which timezone
7003 string corresponds to your region. Choosing an invalid timezone name
7004 causes @command{guix system} to fail.
7005
7006 @item @code{locale} (default: @code{"en_US.utf8"})
7007 The name of the default locale (@pxref{Locale Names,,, libc, The GNU C
7008 Library Reference Manual}). @xref{Locales}, for more information.
7009
7010 @item @code{locale-definitions} (default: @var{%default-locale-definitions})
7011 The list of locale definitions to be compiled and that may be used at
7012 run time. @xref{Locales}.
7013
7014 @item @code{locale-libcs} (default: @code{(list @var{glibc})})
7015 The list of GNU@tie{}libc packages whose locale data and tools are used
7016 to build the locale definitions. @xref{Locales}, for compatibility
7017 considerations that justify this option.
7018
7019 @item @code{name-service-switch} (default: @var{%default-nss})
7020 Configuration of the libc name service switch (NSS)---a
7021 @code{<name-service-switch>} object. @xref{Name Service Switch}, for
7022 details.
7023
7024 @item @code{services} (default: @var{%base-services})
7025 A list of service objects denoting system services. @xref{Services}.
7026
7027 @item @code{pam-services} (default: @code{(base-pam-services)})
7028 @cindex PAM
7029 @cindex pluggable authentication modules
7030 Linux @dfn{pluggable authentication module} (PAM) services.
7031 @c FIXME: Add xref to PAM services section.
7032
7033 @item @code{setuid-programs} (default: @var{%setuid-programs})
7034 List of string-valued G-expressions denoting setuid programs.
7035 @xref{Setuid Programs}.
7036
7037 @item @code{sudoers-file} (default: @var{%sudoers-specification})
7038 @cindex sudoers file
7039 The contents of the @file{/etc/sudoers} file as a file-like object
7040 (@pxref{G-Expressions, @code{local-file} and @code{plain-file}}).
7041
7042 This file specifies which users can use the @command{sudo} command, what
7043 they are allowed to do, and what privileges they may gain. The default
7044 is that only @code{root} and members of the @code{wheel} group may use
7045 @code{sudo}.
7046
7047 @end table
7048 @end deftp
7049
7050 @node File Systems
7051 @subsection File Systems
7052
7053 The list of file systems to be mounted is specified in the
7054 @code{file-systems} field of the operating system declaration
7055 (@pxref{Using the Configuration System}). Each file system is declared
7056 using the @code{file-system} form, like this:
7057
7058 @example
7059 (file-system
7060 (mount-point "/home")
7061 (device "/dev/sda3")
7062 (type "ext4"))
7063 @end example
7064
7065 As usual, some of the fields are mandatory---those shown in the example
7066 above---while others can be omitted. These are described below.
7067
7068 @deftp {Data Type} file-system
7069 Objects of this type represent file systems to be mounted. They
7070 contain the following members:
7071
7072 @table @asis
7073 @item @code{type}
7074 This is a string specifying the type of the file system---e.g.,
7075 @code{"ext4"}.
7076
7077 @item @code{mount-point}
7078 This designates the place where the file system is to be mounted.
7079
7080 @item @code{device}
7081 This names the ``source'' of the file system. By default it is the name
7082 of a node under @file{/dev}, but its meaning depends on the @code{title}
7083 field described below.
7084
7085 @item @code{title} (default: @code{'device})
7086 This is a symbol that specifies how the @code{device} field is to be
7087 interpreted.
7088
7089 When it is the symbol @code{device}, then the @code{device} field is
7090 interpreted as a file name; when it is @code{label}, then @code{device}
7091 is interpreted as a partition label name; when it is @code{uuid},
7092 @code{device} is interpreted as a partition unique identifier (UUID).
7093
7094 UUIDs may be converted from their string representation (as shown by the
7095 @command{tune2fs -l} command) using the @code{uuid} form@footnote{The
7096 @code{uuid} form expects 16-byte UUIDs as defined in
7097 @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the
7098 form of UUID used by the ext2 family of file systems and others, but it
7099 is different from ``UUIDs'' found in FAT file systems, for instance.},
7100 like this:
7101
7102 @example
7103 (file-system
7104 (mount-point "/home")
7105 (type "ext4")
7106 (title 'uuid)
7107 (device (uuid "4dab5feb-d176-45de-b287-9b0a6e4c01cb")))
7108 @end example
7109
7110 The @code{label} and @code{uuid} options offer a way to refer to disk
7111 partitions without having to hard-code their actual device
7112 name@footnote{Note that, while it is tempting to use
7113 @file{/dev/disk/by-uuid} and similar device names to achieve the same
7114 result, this is not recommended: These special device nodes are created
7115 by the udev daemon and may be unavailable at the time the device is
7116 mounted.}.
7117
7118 However, when the source of a file system is a mapped device (@pxref{Mapped
7119 Devices}), its @code{device} field @emph{must} refer to the mapped
7120 device name---e.g., @file{/dev/mapper/root-partition}---and consequently
7121 @code{title} must be set to @code{'device}. This is required so that
7122 the system knows that mounting the file system depends on having the
7123 corresponding device mapping established.
7124
7125 @item @code{flags} (default: @code{'()})
7126 This is a list of symbols denoting mount flags. Recognized flags
7127 include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow
7128 access to special files), @code{no-suid} (ignore setuid and setgid
7129 bits), and @code{no-exec} (disallow program execution.)
7130
7131 @item @code{options} (default: @code{#f})
7132 This is either @code{#f}, or a string denoting mount options.
7133
7134 @item @code{mount?} (default: @code{#t})
7135 This value indicates whether to automatically mount the file system when
7136 the system is brought up. When set to @code{#f}, the file system gets
7137 an entry in @file{/etc/fstab} (read by the @command{mount} command) but
7138 is not automatically mounted.
7139
7140 @item @code{needed-for-boot?} (default: @code{#f})
7141 This Boolean value indicates whether the file system is needed when
7142 booting. If that is true, then the file system is mounted when the
7143 initial RAM disk (initrd) is loaded. This is always the case, for
7144 instance, for the root file system.
7145
7146 @item @code{check?} (default: @code{#t})
7147 This Boolean indicates whether the file system needs to be checked for
7148 errors before being mounted.
7149
7150 @item @code{create-mount-point?} (default: @code{#f})
7151 When true, the mount point is created if it does not exist yet.
7152
7153 @item @code{dependencies} (default: @code{'()})
7154 This is a list of @code{<file-system>} objects representing file systems
7155 that must be mounted before (and unmounted after) this one.
7156
7157 As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is
7158 a dependency of @file{/sys/fs/cgroup/cpu} and
7159 @file{/sys/fs/cgroup/memory}.
7160
7161 @end table
7162 @end deftp
7163
7164 The @code{(gnu system file-systems)} exports the following useful
7165 variables.
7166
7167 @defvr {Scheme Variable} %base-file-systems
7168 These are essential file systems that are required on normal systems,
7169 such as @var{%pseudo-terminal-file-system} and @var{%immutable-store} (see
7170 below.) Operating system declarations should always contain at least
7171 these.
7172 @end defvr
7173
7174 @defvr {Scheme Variable} %pseudo-terminal-file-system
7175 This is the file system to be mounted as @file{/dev/pts}. It supports
7176 @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar
7177 functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference
7178 Manual}). Pseudo-terminals are used by terminal emulators such as
7179 @command{xterm}.
7180 @end defvr
7181
7182 @defvr {Scheme Variable} %shared-memory-file-system
7183 This file system is mounted as @file{/dev/shm} and is used to support
7184 memory sharing across processes (@pxref{Memory-mapped I/O,
7185 @code{shm_open},, libc, The GNU C Library Reference Manual}).
7186 @end defvr
7187
7188 @defvr {Scheme Variable} %immutable-store
7189 This file system performs a read-only ``bind mount'' of
7190 @file{/gnu/store}, making it read-only for all the users including
7191 @code{root}. This prevents against accidental modification by software
7192 running as @code{root} or by system administrators.
7193
7194 The daemon itself is still able to write to the store: it remounts it
7195 read-write in its own ``name space.''
7196 @end defvr
7197
7198 @defvr {Scheme Variable} %binary-format-file-system
7199 The @code{binfmt_misc} file system, which allows handling of arbitrary
7200 executable file types to be delegated to user space. This requires the
7201 @code{binfmt.ko} kernel module to be loaded.
7202 @end defvr
7203
7204 @defvr {Scheme Variable} %fuse-control-file-system
7205 The @code{fusectl} file system, which allows unprivileged users to mount
7206 and unmount user-space FUSE file systems. This requires the
7207 @code{fuse.ko} kernel module to be loaded.
7208 @end defvr
7209
7210 @node Mapped Devices
7211 @subsection Mapped Devices
7212
7213 @cindex device mapping
7214 @cindex mapped devices
7215 The Linux kernel has a notion of @dfn{device mapping}: a block device,
7216 such as a hard disk partition, can be @dfn{mapped} into another device,
7217 usually in @code{/dev/mapper/},
7218 with additional processing over the data that flows through
7219 it@footnote{Note that the GNU@tie{}Hurd makes no difference between the
7220 concept of a ``mapped device'' and that of a file system: both boil down
7221 to @emph{translating} input/output operations made on a file to
7222 operations on its backing store. Thus, the Hurd implements mapped
7223 devices, like file systems, using the generic @dfn{translator} mechanism
7224 (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A
7225 typical example is encryption device mapping: all writes to the mapped
7226 device are encrypted, and all reads are deciphered, transparently.
7227 Guix extends this notion by considering any device or set of devices that
7228 are @dfn{transformed} in some way to create a new device; for instance,
7229 RAID devices are obtained by @dfn{assembling} several other devices, such
7230 as hard disks or partitions, into a new one that behaves as one partition.
7231 Other examples, not yet implemented, are LVM logical volumes.
7232
7233 Mapped devices are declared using the @code{mapped-device} form,
7234 defined as follows; for examples, see below.
7235
7236 @deftp {Data Type} mapped-device
7237 Objects of this type represent device mappings that will be made when
7238 the system boots up.
7239
7240 @table @code
7241 @item source
7242 This is either a string specifying the name of the block device to be mapped,
7243 such as @code{"/dev/sda3"}, or a list of such strings when several devices
7244 need to be assembled for creating a new one.
7245
7246 @item target
7247 This string specifies the name of the resulting mapped device. For
7248 kernel mappers such as encrypted devices of type @code{luks-device-mapping},
7249 specifying @code{"my-partition"} leads to the creation of
7250 the @code{"/dev/mapper/my-partition"} device.
7251 For RAID devices of type @code{raid-device-mapping}, the full device name
7252 such as @code{"/dev/md0"} needs to be given.
7253
7254 @item type
7255 This must be a @code{mapped-device-kind} object, which specifies how
7256 @var{source} is mapped to @var{target}.
7257 @end table
7258 @end deftp
7259
7260 @defvr {Scheme Variable} luks-device-mapping
7261 This defines LUKS block device encryption using the @command{cryptsetup}
7262 command from the package with the same name. It relies on the
7263 @code{dm-crypt} Linux kernel module.
7264 @end defvr
7265
7266 @defvr {Scheme Variable} raid-device-mapping
7267 This defines a RAID device, which is assembled using the @code{mdadm}
7268 command from the package with the same name. It requires a Linux kernel
7269 module for the appropriate RAID level to be loaded, such as @code{raid456}
7270 for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10.
7271 @end defvr
7272
7273 @cindex disk encryption
7274 @cindex LUKS
7275 The following example specifies a mapping from @file{/dev/sda3} to
7276 @file{/dev/mapper/home} using LUKS---the
7277 @url{http://code.google.com/p/cryptsetup,Linux Unified Key Setup}, a
7278 standard mechanism for disk encryption.
7279 The @file{/dev/mapper/home}
7280 device can then be used as the @code{device} of a @code{file-system}
7281 declaration (@pxref{File Systems}).
7282
7283 @example
7284 (mapped-device
7285 (source "/dev/sda3")
7286 (target "home")
7287 (type luks-device-mapping))
7288 @end example
7289
7290 Alternatively, to become independent of device numbering, one may obtain
7291 the LUKS UUID (@dfn{unique identifier}) of the source device by a
7292 command like:
7293
7294 @example
7295 cryptsetup luksUUID /dev/sda3
7296 @end example
7297
7298 and use it as follows:
7299
7300 @example
7301 (mapped-device
7302 (source (uuid "cb67fc72-0d54-4c88-9d4b-b225f30b0f44"))
7303 (target "home")
7304 (type luks-device-mapping))
7305 @end example
7306
7307 A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1}
7308 may be declared as follows:
7309
7310 @example
7311 (mapped-device
7312 (source (list "/dev/sda1" "/dev/sdb1"))
7313 (target "/dev/md0")
7314 (type raid-device-mapping))
7315 @end example
7316
7317 The @file{/dev/md0} device can then be used as the @code{device} of a
7318 @code{file-system} declaration (@pxref{File Systems}).
7319 Note that the RAID level need not be given; it is chosen during the
7320 initial creation and formatting of the RAID device and is determined
7321 automatically later.
7322
7323
7324 @node User Accounts
7325 @subsection User Accounts
7326
7327 User accounts and groups are entirely managed through the
7328 @code{operating-system} declaration. They are specified with the
7329 @code{user-account} and @code{user-group} forms:
7330
7331 @example
7332 (user-account
7333 (name "alice")
7334 (group "users")
7335 (supplementary-groups '("wheel" ;allow use of sudo, etc.
7336 "audio" ;sound card
7337 "video" ;video devices such as webcams
7338 "cdrom")) ;the good ol' CD-ROM
7339 (comment "Bob's sister")
7340 (home-directory "/home/alice"))
7341 @end example
7342
7343 When booting or upon completion of @command{guix system reconfigure},
7344 the system ensures that only the user accounts and groups specified in
7345 the @code{operating-system} declaration exist, and with the specified
7346 properties. Thus, account or group creations or modifications made by
7347 directly invoking commands such as @command{useradd} are lost upon
7348 reconfiguration or reboot. This ensures that the system remains exactly
7349 as declared.
7350
7351 @deftp {Data Type} user-account
7352 Objects of this type represent user accounts. The following members may
7353 be specified:
7354
7355 @table @asis
7356 @item @code{name}
7357 The name of the user account.
7358
7359 @item @code{group}
7360 This is the name (a string) or identifier (a number) of the user group
7361 this account belongs to.
7362
7363 @item @code{supplementary-groups} (default: @code{'()})
7364 Optionally, this can be defined as a list of group names that this
7365 account belongs to.
7366
7367 @item @code{uid} (default: @code{#f})
7368 This is the user ID for this account (a number), or @code{#f}. In the
7369 latter case, a number is automatically chosen by the system when the
7370 account is created.
7371
7372 @item @code{comment} (default: @code{""})
7373 A comment about the account, such as the account owner's full name.
7374
7375 @item @code{home-directory}
7376 This is the name of the home directory for the account.
7377
7378 @item @code{create-home-directory?} (default: @code{#t})
7379 Indicates whether the home directory of this account should be created
7380 if it does not exist yet.
7381
7382 @item @code{shell} (default: Bash)
7383 This is a G-expression denoting the file name of a program to be used as
7384 the shell (@pxref{G-Expressions}).
7385
7386 @item @code{system?} (default: @code{#f})
7387 This Boolean value indicates whether the account is a ``system''
7388 account. System accounts are sometimes treated specially; for instance,
7389 graphical login managers do not list them.
7390
7391 @anchor{user-account-password}
7392 @item @code{password} (default: @code{#f})
7393 You would normally leave this field to @code{#f}, initialize user
7394 passwords as @code{root} with the @command{passwd} command, and then let
7395 users change it with @command{passwd}. Passwords set with
7396 @command{passwd} are of course preserved across reboot and
7397 reconfiguration.
7398
7399 If you @emph{do} want to have a preset password for an account, then
7400 this field must contain the encrypted password, as a string.
7401 @xref{crypt,,, libc, The GNU C Library Reference Manual}, for more information
7402 on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference
7403 Manual}, for information on Guile's @code{crypt} procedure.
7404
7405 @end table
7406 @end deftp
7407
7408 User group declarations are even simpler:
7409
7410 @example
7411 (user-group (name "students"))
7412 @end example
7413
7414 @deftp {Data Type} user-group
7415 This type is for, well, user groups. There are just a few fields:
7416
7417 @table @asis
7418 @item @code{name}
7419 The name of the group.
7420
7421 @item @code{id} (default: @code{#f})
7422 The group identifier (a number). If @code{#f}, a new number is
7423 automatically allocated when the group is created.
7424
7425 @item @code{system?} (default: @code{#f})
7426 This Boolean value indicates whether the group is a ``system'' group.
7427 System groups have low numerical IDs.
7428
7429 @item @code{password} (default: @code{#f})
7430 What, user groups can have a password? Well, apparently yes. Unless
7431 @code{#f}, this field specifies the password of the group.
7432
7433 @end table
7434 @end deftp
7435
7436 For convenience, a variable lists all the basic user groups one may
7437 expect:
7438
7439 @defvr {Scheme Variable} %base-groups
7440 This is the list of basic user groups that users and/or packages expect
7441 to be present on the system. This includes groups such as ``root'',
7442 ``wheel'', and ``users'', as well as groups used to control access to
7443 specific devices such as ``audio'', ``disk'', and ``cdrom''.
7444 @end defvr
7445
7446 @defvr {Scheme Variable} %base-user-accounts
7447 This is the list of basic system accounts that programs may expect to
7448 find on a GNU/Linux system, such as the ``nobody'' account.
7449
7450 Note that the ``root'' account is not included here. It is a
7451 special-case and is automatically added whether or not it is specified.
7452 @end defvr
7453
7454 @node Locales
7455 @subsection Locales
7456
7457 @cindex locale
7458 A @dfn{locale} defines cultural conventions for a particular language
7459 and region of the world (@pxref{Locales,,, libc, The GNU C Library
7460 Reference Manual}). Each locale has a name that typically has the form
7461 @code{@var{language}_@var{territory}.@var{codeset}}---e.g.,
7462 @code{fr_LU.utf8} designates the locale for the French language, with
7463 cultural conventions from Luxembourg, and using the UTF-8 encoding.
7464
7465 @cindex locale definition
7466 Usually, you will want to specify the default locale for the machine
7467 using the @code{locale} field of the @code{operating-system} declaration
7468 (@pxref{operating-system Reference, @code{locale}}).
7469
7470 The selected locale is automatically added to the @dfn{locale
7471 definitions} known to the system if needed, with its codeset inferred
7472 from its name---e.g., @code{bo_CN.utf8} will be assumed to use the
7473 @code{UTF-8} codeset. Additional locale definitions can be specified in
7474 the @code{locale-definitions} slot of @code{operating-system}---this is
7475 useful, for instance, if the codeset could not be inferred from the
7476 locale name. The default set of locale definitions includes some widely
7477 used locales, but not all the available locales, in order to save space.
7478
7479 For instance, to add the North Frisian locale for Germany, the value of
7480 that field may be:
7481
7482 @example
7483 (cons (locale-definition
7484 (name "fy_DE.utf8") (source "fy_DE"))
7485 %default-locale-definitions)
7486 @end example
7487
7488 Likewise, to save space, one might want @code{locale-definitions} to
7489 list only the locales that are actually used, as in:
7490
7491 @example
7492 (list (locale-definition
7493 (name "ja_JP.eucjp") (source "ja_JP")
7494 (charset "EUC-JP")))
7495 @end example
7496
7497 @vindex LOCPATH
7498 The compiled locale definitions are available at
7499 @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc
7500 version, which is the default location where the GNU@tie{}libc provided
7501 by Guix looks for locale data. This can be overridden using the
7502 @code{LOCPATH} environment variable (@pxref{locales-and-locpath,
7503 @code{LOCPATH} and locale packages}).
7504
7505 The @code{locale-definition} form is provided by the @code{(gnu system
7506 locale)} module. Details are given below.
7507
7508 @deftp {Data Type} locale-definition
7509 This is the data type of a locale definition.
7510
7511 @table @asis
7512
7513 @item @code{name}
7514 The name of the locale. @xref{Locale Names,,, libc, The GNU C Library
7515 Reference Manual}, for more information on locale names.
7516
7517 @item @code{source}
7518 The name of the source for that locale. This is typically the
7519 @code{@var{language}_@var{territory}} part of the locale name.
7520
7521 @item @code{charset} (default: @code{"UTF-8"})
7522 The ``character set'' or ``code set'' for that locale,
7523 @uref{http://www.iana.org/assignments/character-sets, as defined by
7524 IANA}.
7525
7526 @end table
7527 @end deftp
7528
7529 @defvr {Scheme Variable} %default-locale-definitions
7530 A list of commonly used UTF-8 locales, used as the default
7531 value of the @code{locale-definitions} field of @code{operating-system}
7532 declarations.
7533
7534 @cindex locale name
7535 @cindex normalized codeset in locale names
7536 These locale definitions use the @dfn{normalized codeset} for the part
7537 that follows the dot in the name (@pxref{Using gettextized software,
7538 normalized codeset,, libc, The GNU C Library Reference Manual}). So for
7539 instance it has @code{uk_UA.utf8} but @emph{not}, say,
7540 @code{uk_UA.UTF-8}.
7541 @end defvr
7542
7543 @subsubsection Locale Data Compatibility Considerations
7544
7545 @cindex incompatibility, of locale data
7546 @code{operating-system} declarations provide a @code{locale-libcs} field
7547 to specify the GNU@tie{}libc packages that are used to compile locale
7548 declarations (@pxref{operating-system Reference}). ``Why would I
7549 care?'', you may ask. Well, it turns out that the binary format of
7550 locale data is occasionally incompatible from one libc version to
7551 another.
7552
7553 @c See <https://sourceware.org/ml/libc-alpha/2015-09/msg00575.html>
7554 @c and <https://lists.gnu.org/archive/html/guix-devel/2015-08/msg00737.html>.
7555 For instance, a program linked against libc version 2.21 is unable to
7556 read locale data produced with libc 2.22; worse, that program
7557 @emph{aborts} instead of simply ignoring the incompatible locale
7558 data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip
7559 the incompatible locale data, which is already an improvement.}.
7560 Similarly, a program linked against libc 2.22 can read most, but not
7561 all, of the locale data from libc 2.21 (specifically, @code{LC_COLLATE}
7562 data is incompatible); thus calls to @code{setlocale} may fail, but
7563 programs will not abort.
7564
7565 The ``problem'' in GuixSD is that users have a lot of freedom: They can
7566 choose whether and when to upgrade software in their profiles, and might
7567 be using a libc version different from the one the system administrator
7568 used to build the system-wide locale data.
7569
7570 Fortunately, unprivileged users can also install their own locale data
7571 and define @var{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath,
7572 @code{GUIX_LOCPATH} and locale packages}).
7573
7574 Still, it is best if the system-wide locale data at
7575 @file{/run/current-system/locale} is built for all the libc versions
7576 actually in use on the system, so that all the programs can access
7577 it---this is especially crucial on a multi-user system. To do that, the
7578 administrator can specify several libc packages in the
7579 @code{locale-libcs} field of @code{operating-system}:
7580
7581 @example
7582 (use-package-modules base)
7583
7584 (operating-system
7585 ;; @dots{}
7586 (locale-libcs (list glibc-2.21 (canonical-package glibc))))
7587 @end example
7588
7589 This example would lead to a system containing locale definitions for
7590 both libc 2.21 and the current version of libc in
7591 @file{/run/current-system/locale}.
7592
7593
7594 @node Services
7595 @subsection Services
7596
7597 @cindex system services
7598 An important part of preparing an @code{operating-system} declaration is
7599 listing @dfn{system services} and their configuration (@pxref{Using the
7600 Configuration System}). System services are typically daemons launched
7601 when the system boots, or other actions needed at that time---e.g.,
7602 configuring network access.
7603
7604 GuixSD has a broad definition of ``service'' (@pxref{Service
7605 Composition}), but many services are managed by the GNU@tie{}Shepherd
7606 (@pxref{Shepherd Services}). On a running system, the @command{herd}
7607 command allows you to list the available services, show their status,
7608 start and stop them, or do other specific operations (@pxref{Jump
7609 Start,,, shepherd, The GNU Shepherd Manual}). For example:
7610
7611 @example
7612 # herd status
7613 @end example
7614
7615 The above command, run as @code{root}, lists the currently defined
7616 services. The @command{herd doc} command shows a synopsis of the given
7617 service:
7618
7619 @example
7620 # herd doc nscd
7621 Run libc's name service cache daemon (nscd).
7622 @end example
7623
7624 The @command{start}, @command{stop}, and @command{restart} sub-commands
7625 have the effect you would expect. For instance, the commands below stop
7626 the nscd service and restart the Xorg display server:
7627
7628 @example
7629 # herd stop nscd
7630 Service nscd has been stopped.
7631 # herd restart xorg-server
7632 Service xorg-server has been stopped.
7633 Service xorg-server has been started.
7634 @end example
7635
7636 The following sections document the available services, starting with
7637 the core services, that may be used in an @code{operating-system}
7638 declaration.
7639
7640 @menu
7641 * Base Services:: Essential system services.
7642 * Scheduled Job Execution:: The mcron service.
7643 * Log Rotation:: The rottlog service.
7644 * Networking Services:: Network setup, SSH daemon, etc.
7645 * X Window:: Graphical display.
7646 * Desktop Services:: D-Bus and desktop services.
7647 * Database Services:: SQL databases.
7648 * Mail Services:: IMAP, POP3, SMTP, and all that.
7649 * Web Services:: Web servers.
7650 * Miscellaneous Services:: Other services.
7651 @end menu
7652
7653 @node Base Services
7654 @subsubsection Base Services
7655
7656 The @code{(gnu services base)} module provides definitions for the basic
7657 services that one expects from the system. The services exported by
7658 this module are listed below.
7659
7660 @defvr {Scheme Variable} %base-services
7661 This variable contains a list of basic services (@pxref{Service Types
7662 and Services}, for more information on service objects) one would
7663 expect from the system: a login service (mingetty) on each tty, syslogd,
7664 the libc name service cache daemon (nscd), the udev device manager, and
7665 more.
7666
7667 This is the default value of the @code{services} field of
7668 @code{operating-system} declarations. Usually, when customizing a
7669 system, you will want to append services to @var{%base-services}, like
7670 this:
7671
7672 @example
7673 (cons* (avahi-service) (lsh-service) %base-services)
7674 @end example
7675 @end defvr
7676
7677 @deffn {Scheme Procedure} host-name-service @var{name}
7678 Return a service that sets the host name to @var{name}.
7679 @end deffn
7680
7681 @deffn {Scheme Procedure} login-service @var{config}
7682 Return a service to run login according to @var{config}, a
7683 @code{<login-configuration>} object, which specifies the message of the day,
7684 among other things.
7685 @end deffn
7686
7687 @deftp {Data Type} login-configuration
7688 This is the data type representing the configuration of login.
7689
7690 @table @asis
7691
7692 @item @code{motd}
7693 A file-like object containing the ``message of the day''.
7694
7695 @item @code{allow-empty-passwords?} (default: @code{#t})
7696 Allow empty passwords by default so that first-time users can log in when
7697 the 'root' account has just been created.
7698
7699 @end table
7700 @end deftp
7701
7702 @deffn {Scheme Procedure} mingetty-service @var{config}
7703 Return a service to run mingetty according to @var{config}, a
7704 @code{<mingetty-configuration>} object, which specifies the tty to run, among
7705 other things.
7706 @end deffn
7707
7708 @deftp {Data Type} mingetty-configuration
7709 This is the data type representing the configuration of Mingetty, which
7710 implements console log-in.
7711
7712 @table @asis
7713
7714 @item @code{tty}
7715 The name of the console this Mingetty runs on---e.g., @code{"tty1"}.
7716
7717 @item @code{auto-login} (default: @code{#f})
7718 When true, this field must be a string denoting the user name under
7719 which the system automatically logs in. When it is @code{#f}, a
7720 user name and password must be entered to log in.
7721
7722 @item @code{login-program} (default: @code{#f})
7723 This must be either @code{#f}, in which case the default log-in program
7724 is used (@command{login} from the Shadow tool suite), or a gexp denoting
7725 the name of the log-in program.
7726
7727 @item @code{login-pause?} (default: @code{#f})
7728 When set to @code{#t} in conjunction with @var{auto-login}, the user
7729 will have to press a key before the log-in shell is launched.
7730
7731 @item @code{mingetty} (default: @var{mingetty})
7732 The Mingetty package to use.
7733
7734 @end table
7735 @end deftp
7736
7737 @deffn {Scheme Procedure} kmscon-service-type @var{config}
7738 Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon}
7739 according to @var{config}, a @code{<kmscon-configuration>} object, which
7740 specifies the tty to run, among other things.
7741 @end deffn
7742
7743 @deftp {Data Type} kmscon-configuration
7744 This is the data type representing the configuration of Kmscon, which
7745 implements console log-in.
7746
7747 @table @asis
7748
7749 @item @code{virtual-terminal}
7750 The name of the console this Kmscon runs on---e.g., @code{"tty1"}.
7751
7752 @item @code{login-program} (default: @code{#~(string-append #$shadow "/bin/login")})
7753 A gexp denoting the name of the log-in program. The default log-in program is
7754 @command{login} from the Shadow tool suite.
7755
7756 @item @code{login-arguments} (default: @code{'("-p")})
7757 A list of arguments to pass to @command{login}.
7758
7759 @item @code{hardware-acceleration?} (default: #f)
7760 Whether to use hardware acceleration.
7761
7762 @item @code{kmscon} (default: @var{kmscon})
7763 The Kmscon package to use.
7764
7765 @end table
7766 @end deftp
7767
7768 @cindex name service cache daemon
7769 @cindex nscd
7770 @deffn {Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @
7771 [#:name-services '()]
7772 Return a service that runs the libc name service cache daemon (nscd) with the
7773 given @var{config}---an @code{<nscd-configuration>} object. @xref{Name
7774 Service Switch}, for an example.
7775 @end deffn
7776
7777 @defvr {Scheme Variable} %nscd-default-configuration
7778 This is the default @code{<nscd-configuration>} value (see below) used
7779 by @code{nscd-service}. It uses the caches defined by
7780 @var{%nscd-default-caches}; see below.
7781 @end defvr
7782
7783 @deftp {Data Type} nscd-configuration
7784 This is the data type representing the name service cache daemon (nscd)
7785 configuration.
7786
7787 @table @asis
7788
7789 @item @code{name-services} (default: @code{'()})
7790 List of packages denoting @dfn{name services} that must be visible to
7791 the nscd---e.g., @code{(list @var{nss-mdns})}.
7792
7793 @item @code{glibc} (default: @var{glibc})
7794 Package object denoting the GNU C Library providing the @command{nscd}
7795 command.
7796
7797 @item @code{log-file} (default: @code{"/var/log/nscd.log"})
7798 Name of the nscd log file. This is where debugging output goes when
7799 @code{debug-level} is strictly positive.
7800
7801 @item @code{debug-level} (default: @code{0})
7802 Integer denoting the debugging levels. Higher numbers mean that more
7803 debugging output is logged.
7804
7805 @item @code{caches} (default: @var{%nscd-default-caches})
7806 List of @code{<nscd-cache>} objects denoting things to be cached; see
7807 below.
7808
7809 @end table
7810 @end deftp
7811
7812 @deftp {Data Type} nscd-cache
7813 Data type representing a cache database of nscd and its parameters.
7814
7815 @table @asis
7816
7817 @item @code{database}
7818 This is a symbol representing the name of the database to be cached.
7819 Valid values are @code{passwd}, @code{group}, @code{hosts}, and
7820 @code{services}, which designate the corresponding NSS database
7821 (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual}).
7822
7823 @item @code{positive-time-to-live}
7824 @itemx @code{negative-time-to-live} (default: @code{20})
7825 A number representing the number of seconds during which a positive or
7826 negative lookup result remains in cache.
7827
7828 @item @code{check-files?} (default: @code{#t})
7829 Whether to check for updates of the files corresponding to
7830 @var{database}.
7831
7832 For instance, when @var{database} is @code{hosts}, setting this flag
7833 instructs nscd to check for updates in @file{/etc/hosts} and to take
7834 them into account.
7835
7836 @item @code{persistent?} (default: @code{#t})
7837 Whether the cache should be stored persistently on disk.
7838
7839 @item @code{shared?} (default: @code{#t})
7840 Whether the cache should be shared among users.
7841
7842 @item @code{max-database-size} (default: 32@tie{}MiB)
7843 Maximum size in bytes of the database cache.
7844
7845 @c XXX: 'suggested-size' and 'auto-propagate?' seem to be expert
7846 @c settings, so leave them out.
7847
7848 @end table
7849 @end deftp
7850
7851 @defvr {Scheme Variable} %nscd-default-caches
7852 List of @code{<nscd-cache>} objects used by default by
7853 @code{nscd-configuration} (see above).
7854
7855 It enables persistent and aggressive caching of service and host name
7856 lookups. The latter provides better host name lookup performance,
7857 resilience in the face of unreliable name servers, and also better
7858 privacy---often the result of host name lookups is in local cache, so
7859 external name servers do not even need to be queried.
7860 @end defvr
7861
7862 @anchor{syslog-configuration-type}
7863 @deftp {Data Type} syslog-configuration
7864 This data type represents the configuration of the syslog daemon.
7865
7866 @table @asis
7867 @item @code{syslogd} (default: @code{#~(string-append #$inetutils "/libexec/syslogd")})
7868 The syslog daemon to use.
7869
7870 @item @code{config-file} (default: @code{%default-syslog.conf})
7871 The syslog configuration file to use.
7872
7873 @end table
7874 @end deftp
7875
7876 @anchor{syslog-service}
7877 @deffn {Scheme Procedure} syslog-service @var{config}
7878 Return a service that runs a syslog daemon according to @var{config}.
7879
7880 @xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more
7881 information on the configuration file syntax.
7882 @end deffn
7883
7884 @anchor{guix-configuration-type}
7885 @deftp {Data Type} guix-configuration
7886 This data type represents the configuration of the Guix build daemon.
7887 @xref{Invoking guix-daemon}, for more information.
7888
7889 @table @asis
7890 @item @code{guix} (default: @var{guix})
7891 The Guix package to use.
7892
7893 @item @code{build-group} (default: @code{"guixbuild"})
7894 Name of the group for build user accounts.
7895
7896 @item @code{build-accounts} (default: @code{10})
7897 Number of build user accounts to create.
7898
7899 @item @code{authorize-key?} (default: @code{#t})
7900 Whether to authorize the substitute keys listed in
7901 @code{authorized-keys}---by default that of @code{hydra.gnu.org}
7902 (@pxref{Substitutes}).
7903
7904 @vindex %default-authorized-guix-keys
7905 @item @code{authorized-keys} (default: @var{%default-authorized-guix-keys})
7906 The list of authorized key files for archive imports, as a list of
7907 string-valued gexps (@pxref{Invoking guix archive}). By default, it
7908 contains that of @code{hydra.gnu.org} (@pxref{Substitutes}).
7909
7910 @item @code{use-substitutes?} (default: @code{#t})
7911 Whether to use substitutes.
7912
7913 @item @code{substitute-urls} (default: @var{%default-substitute-urls})
7914 The list of URLs where to look for substitutes by default.
7915
7916 @item @code{extra-options} (default: @code{'()})
7917 List of extra command-line options for @command{guix-daemon}.
7918
7919 @item @code{lsof} (default: @var{lsof})
7920 @itemx @code{lsh} (default: @var{lsh})
7921 The lsof and lsh packages to use.
7922
7923 @end table
7924 @end deftp
7925
7926 @deffn {Scheme Procedure} guix-service @var{config}
7927 Return a service that runs the Guix build daemon according to
7928 @var{config}.
7929 @end deffn
7930
7931 @deffn {Scheme Procedure} udev-service [#:udev udev]
7932 Run @var{udev}, which populates the @file{/dev} directory dynamically.
7933 @end deffn
7934
7935 @deffn {Scheme Procedure} urandom-seed-service @var{#f}
7936 Save some entropy in @var{%random-seed-file} to seed @file{/dev/urandom}
7937 when rebooting.
7938 @end deffn
7939
7940 @defvr {Scheme Variable} %random-seed-file
7941 This is the name of the file where some random bytes are saved by
7942 @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting.
7943 It defaults to @file{/var/lib/random-seed}.
7944 @end defvr
7945
7946 @deffn {Scheme Procedure} console-keymap-service @var{files} ...
7947 @cindex keyboard layout
7948 Return a service to load console keymaps from @var{files} using
7949 @command{loadkeys} command. Most likely, you want to load some default
7950 keymap, which can be done like this:
7951
7952 @example
7953 (console-keymap-service "dvorak")
7954 @end example
7955
7956 Or, for example, for a Swedish keyboard, you may need to combine
7957 the following keymaps:
7958 @example
7959 (console-keymap-service "se-lat6" "se-fi-lat6")
7960 @end example
7961
7962 Also you can specify a full file name (or file names) of your keymap(s).
7963 See @code{man loadkeys} for details.
7964
7965 @end deffn
7966
7967 @deffn {Scheme Procedure} gpm-service [#:gpm @var{gpm}] @
7968 [#:options]
7969 Run @var{gpm}, the general-purpose mouse daemon, with the given
7970 command-line @var{options}. GPM allows users to use the mouse in the console,
7971 notably to select, copy, and paste text. The default value of @var{options}
7972 uses the @code{ps2} protocol, which works for both USB and PS/2 mice.
7973
7974 This service is not part of @var{%base-services}.
7975 @end deffn
7976
7977 @anchor{guix-publish-service}
7978 @deffn {Scheme Procedure} guix-publish-service [#:guix @var{guix}] @
7979 [#:port 80] [#:host "localhost"]
7980 Return a service that runs @command{guix publish} listening on @var{host}
7981 and @var{port} (@pxref{Invoking guix publish}).
7982
7983 This assumes that @file{/etc/guix} already contains a signing key pair as
7984 created by @command{guix archive --generate-key} (@pxref{Invoking guix
7985 archive}). If that is not the case, the service will fail to start.
7986 @end deffn
7987
7988 @anchor{rngd-service}
7989 @deffn {Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @
7990 [#:device "/dev/hwrng"]
7991 Return a service that runs the @command{rngd} program from @var{rng-tools}
7992 to add @var{device} to the kernel's entropy pool. The service will fail if
7993 @var{device} does not exist.
7994 @end deffn
7995
7996 @anchor{pam-limits-service}
7997 @cindex session limits
7998 @cindex ulimit
7999 @cindex priority
8000 @deffn {Scheme Procedure} pam-limits-service [#:limits @var{limits}]
8001
8002 Return a service that installs a configuration file for the
8003 @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html,
8004 @code{pam_limits} module}. The procedure optionally takes a list of
8005 @code{pam-limits-entry} values, which can be used to specify
8006 @code{ulimit} limits and nice priority limits to user sessions.
8007
8008 The following limits definition sets two hard and soft limits for all
8009 login sessions of users in the @code{realtime} group:
8010
8011 @example
8012 (pam-limits-service
8013 (list
8014 (pam-limits-entry "@@realtime" 'both 'rtprio 99)
8015 (pam-limits-entry "@@realtime" 'both 'memlock 'unlimited)))
8016 @end example
8017
8018 The first entry increases the maximum realtime priority for
8019 non-privileged processes; the second entry lifts any restriction of the
8020 maximum address space that can be locked in memory. These settings are
8021 commonly used for real-time audio systems.
8022 @end deffn
8023
8024 @node Scheduled Job Execution
8025 @subsubsection Scheduled Job Execution
8026
8027 @cindex cron
8028 @cindex scheduling jobs
8029 The @code{(gnu services mcron)} module provides an interface to
8030 GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,,
8031 mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional
8032 Unix @command{cron} daemon; the main difference is that it is
8033 implemented in Guile Scheme, which provides a lot of flexibility when
8034 specifying the scheduling of jobs and their actions.
8035
8036 The example below defines an operating system that runs the
8037 @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files})
8038 and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as
8039 well as the @command{mkid} command on behalf of an unprivileged user
8040 (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses
8041 gexps to introduce job definitions that are passed to mcron
8042 (@pxref{G-Expressions}).
8043
8044 @lisp
8045 (use-modules (guix) (gnu) (gnu services mcron))
8046 (use-package-modules base idutils)
8047
8048 (define updatedb-job
8049 ;; Run 'updatedb' at 3AM every day. Here we write the
8050 ;; job's action as a Scheme procedure.
8051 #~(job '(next-hour '(3))
8052 (lambda ()
8053 (execl (string-append #$findutils "/bin/updatedb")
8054 "updatedb"
8055 "--prunepaths=/tmp /var/tmp /gnu/store"))))
8056
8057 (define garbage-collector-job
8058 ;; Collect garbage 5 minutes after midnight every day.
8059 ;; The job's action is a shell command.
8060 #~(job "5 0 * * *" ;Vixie cron syntax
8061 "guix gc -F 1G"))
8062
8063 (define idutils-job
8064 ;; Update the index database as user "charlie" at 12:15PM
8065 ;; and 19:15PM. This runs from the user's home directory.
8066 #~(job '(next-minute-from (next-hour '(12 19)) '(15))
8067 (string-append #$idutils "/bin/mkid src")
8068 #:user "charlie"))
8069
8070 (operating-system
8071 ;; @dots{}
8072 (services (cons (mcron-service (list garbage-collector-job
8073 updatedb-job
8074 idutils-job))
8075 %base-services)))
8076 @end lisp
8077
8078 @xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron},
8079 for more information on mcron job specifications. Below is the
8080 reference of the mcron service.
8081
8082 @deffn {Scheme Procedure} mcron-service @var{jobs} [#:mcron @var{mcron2}]
8083 Return an mcron service running @var{mcron} that schedules @var{jobs}, a
8084 list of gexps denoting mcron job specifications.
8085
8086 This is a shorthand for:
8087 @example
8088 (service mcron-service-type
8089 (mcron-configuration (mcron mcron) (jobs jobs)))
8090 @end example
8091 @end deffn
8092
8093 @defvr {Scheme Variable} mcron-service-type
8094 This is the type of the @code{mcron} service, whose value is an
8095 @code{mcron-configuration} object.
8096
8097 This service type can be the target of a service extension that provides
8098 it additional job specifications (@pxref{Service Composition}). In
8099 other words, it is possible to define services that provide additional
8100 mcron jobs to run.
8101 @end defvr
8102
8103 @deftp {Data Type} mcron-configuration
8104 Data type representing the configuration of mcron.
8105
8106 @table @asis
8107 @item @code{mcron} (default: @var{mcron2})
8108 The mcron package to use.
8109
8110 @item @code{jobs}
8111 This is a list of gexps (@pxref{G-Expressions}), where each gexp
8112 corresponds to an mcron job specification (@pxref{Syntax, mcron job
8113 specifications,, mcron, GNU@tie{}mcron}).
8114 @end table
8115 @end deftp
8116
8117
8118 @node Log Rotation
8119 @subsubsection Log Rotation
8120
8121 @cindex rottlog
8122 @cindex log rotation
8123 Log files such as those found in @file{/var/log} tend to grow endlessly,
8124 so it's a good idea to @dfn{rotate} them once in a while---i.e., archive
8125 their contents in separate files, possibly compressed. The @code{(gnu
8126 services admin)} module provides an interface to GNU@tie{}Rot[t]log, a
8127 log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual}).
8128
8129 The example below defines an operating system that provides log rotation
8130 with the default settings.
8131
8132 @lisp
8133 (use-modules (guix) (gnu))
8134 (use-service-modules admin mcron)
8135 (use-package-modules base idutils)
8136
8137 (operating-system
8138 ;; @dots{}
8139 (services (cons* (mcron-service)
8140 (service rottlog-service-type (rottlog-configuration))
8141 %base-services)))
8142 @end lisp
8143
8144 @defvr {Scheme Variable} rottlog-service-type
8145 This is the type of the Rottlog service, whose value is a
8146 @code{rottlog-configuration} object.
8147
8148 This service type can define mcron jobs (@pxref{Scheduled Job
8149 Execution}) to run the rottlog service.
8150 @end defvr
8151
8152 @deftp {Data Type} rottlog-configuration
8153 Data type representing the configuration of rottlog.
8154
8155 @table @asis
8156 @item @code{rottlog} (default: @code{rottlog})
8157 The Rottlog package to use.
8158
8159 @item @code{rc-file} (default: @code{(file-append rottlog "/etc/rc")})
8160 The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,,
8161 rottlog, GNU Rot[t]log Manual}).
8162
8163 @item @code{periodic-rotations} (default: @code{`(("weekly" %default-rotatations))})
8164 A list of Rottlog period-name/period-config tuples.
8165
8166 For example, taking an example from the Rottlog manual (@pxref{Period
8167 Related File Examples,,, rottlog, GNU Rot[t]log Manual}), a valid tuple
8168 might be:
8169
8170 @example
8171 ("daily" ,(plain-file "daily"
8172 "\
8173 /var/log/apache/* @{
8174 storedir apache-archives
8175 rotate 6
8176 notifempty
8177 nocompress
8178 @}"))
8179 @end example
8180
8181 @item @code{jobs}
8182 This is a list of gexps where each gexp corresponds to an mcron job
8183 specification (@pxref{Scheduled Job Execution}).
8184 @end table
8185 @end deftp
8186
8187 @defvr {Scheme Variable} %default-rotations
8188 Specifies weekly rotation of @var{%rotated-files} and
8189 @code{"/var/log/shepherd.log"}.
8190 @end defvr
8191
8192 @defvr {Scheme Variable} %rotated-files
8193 The list of syslog-controlled files to be rotated. By default it is:
8194 @code{'("/var/log/messages" "/var/log/secure")}.
8195 @end defvr
8196
8197 @node Networking Services
8198 @subsubsection Networking Services
8199
8200 The @code{(gnu services networking)} module provides services to configure
8201 the network interface.
8202
8203 @cindex DHCP, networking service
8204 @deffn {Scheme Procedure} dhcp-client-service [#:dhcp @var{isc-dhcp}]
8205 Return a service that runs @var{dhcp}, a Dynamic Host Configuration
8206 Protocol (DHCP) client, on all the non-loopback network interfaces.
8207 @end deffn
8208
8209 @deffn {Scheme Procedure} static-networking-service @var{interface} @var{ip} @
8210 [#:gateway #f] [#:name-servers @code{'()}]
8211 Return a service that starts @var{interface} with address @var{ip}. If
8212 @var{gateway} is true, it must be a string specifying the default network
8213 gateway.
8214 @end deffn
8215
8216 @cindex wicd
8217 @cindex network management
8218 @deffn {Scheme Procedure} wicd-service [#:wicd @var{wicd}]
8219 Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network
8220 management daemon that aims to simplify wired and wireless networking.
8221
8222 This service adds the @var{wicd} package to the global profile, providing
8223 several commands to interact with the daemon and configure networking:
8224 @command{wicd-client}, a graphical user interface, and the @command{wicd-cli}
8225 and @command{wicd-curses} user interfaces.
8226 @end deffn
8227
8228 @cindex NetworkManager
8229 @deffn {Scheme Procedure} network-manager-service @
8230 [#:network-manager @var{network-manager}]
8231 Return a service that runs NetworkManager, a network connection manager
8232 attempting to keep network connectivity active when available.
8233 @end deffn
8234
8235 @cindex Connman
8236 @deffn {Scheme Procedure} connman-service @
8237 [#:connman @var{connman}]
8238 Return a service that runs @url{https://01.org/connman,Connman}, a network
8239 connection manager.
8240
8241 This service adds the @var{connman} package to the global profile, providing
8242 several the @command{connmanctl} command to interact with the daemon and
8243 configure networking."
8244 @end deffn
8245
8246 @deffn {Scheme Procedure} ntp-service [#:ntp @var{ntp}] @
8247 [#:servers @var{%ntp-servers}]
8248 Return a service that runs the daemon from @var{ntp}, the
8249 @uref{http://www.ntp.org, Network Time Protocol package}. The daemon will
8250 keep the system clock synchronized with that of @var{servers}.
8251 @end deffn
8252
8253 @defvr {Scheme Variable} %ntp-servers
8254 List of host names used as the default NTP servers.
8255 @end defvr
8256
8257 @deffn {Scheme Procedure} tor-service [@var{config-file}] [#:tor @var{tor}]
8258 Return a service to run the @uref{https://torproject.org, Tor} anonymous
8259 networking daemon.
8260
8261 The daemon runs as the @code{tor} unprivileged user. It is passed
8262 @var{config-file}, a file-like object, with an additional @code{User tor} line
8263 and lines for hidden services added via @code{tor-hidden-service}. Run
8264 @command{man tor} for information about the configuration file.
8265 @end deffn
8266
8267 @cindex hidden service
8268 @deffn {Scheme Procedure} tor-hidden-service @var{name} @var{mapping}
8269 Define a new Tor @dfn{hidden service} called @var{name} and implementing
8270 @var{mapping}. @var{mapping} is a list of port/host tuples, such as:
8271
8272 @example
8273 '((22 "127.0.0.1:22")
8274 (80 "127.0.0.1:8080"))
8275 @end example
8276
8277 In this example, port 22 of the hidden service is mapped to local port 22, and
8278 port 80 is mapped to local port 8080.
8279
8280 This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where
8281 the @file{hostname} file contains the @code{.onion} host name for the hidden
8282 service.
8283
8284 See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor
8285 project's documentation} for more information.
8286 @end deffn
8287
8288 @deffn {Scheme Procedure} bitlbee-service [#:bitlbee bitlbee] @
8289 [#:interface "127.0.0.1"] [#:port 6667] @
8290 [#:extra-settings ""]
8291 Return a service that runs @url{http://bitlbee.org,BitlBee}, a daemon that
8292 acts as a gateway between IRC and chat networks.
8293
8294 The daemon will listen to the interface corresponding to the IP address
8295 specified in @var{interface}, on @var{port}. @code{127.0.0.1} means that only
8296 local clients can connect, whereas @code{0.0.0.0} means that connections can
8297 come from any networking interface.
8298
8299 In addition, @var{extra-settings} specifies a string to append to the
8300 configuration file.
8301 @end deffn
8302
8303 Furthermore, @code{(gnu services ssh)} provides the following services.
8304
8305 @deffn {Scheme Procedure} lsh-service [#:host-key "/etc/lsh/host-key"] @
8306 [#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @
8307 [#:allow-empty-passwords? #f] [#:root-login? #f] @
8308 [#:syslog-output? #t] [#:x11-forwarding? #t] @
8309 [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @
8310 [#:public-key-authentication? #t] [#:initialize? #t]
8311 Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}.
8312 @var{host-key} must designate a file containing the host key, and readable
8313 only by root.
8314
8315 When @var{daemonic?} is true, @command{lshd} will detach from the
8316 controlling terminal and log its output to syslogd, unless one sets
8317 @var{syslog-output?} to false. Obviously, it also makes lsh-service
8318 depend on existence of syslogd service. When @var{pid-file?} is true,
8319 @command{lshd} writes its PID to the file called @var{pid-file}.
8320
8321 When @var{initialize?} is true, automatically create the seed and host key
8322 upon service activation if they do not exist yet. This may take long and
8323 require interaction.
8324
8325 When @var{initialize?} is false, it is up to the user to initialize the
8326 randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create
8327 a key pair with the private key stored in file @var{host-key} (@pxref{lshd
8328 basics,,, lsh, LSH Manual}).
8329
8330 When @var{interfaces} is empty, lshd listens for connections on all the
8331 network interfaces; otherwise, @var{interfaces} must be a list of host names
8332 or addresses.
8333
8334 @var{allow-empty-passwords?} specifies whether to accept log-ins with empty
8335 passwords, and @var{root-login?} specifies whether to accept log-ins as
8336 root.
8337
8338 The other options should be self-descriptive.
8339 @end deffn
8340
8341 @deffn {Scheme Variable} openssh-service-type
8342 This is the type for the @uref{http://www.openssh.org, OpenSSH} secure
8343 shell daemon, @command{sshd}. Its value must be an
8344 @code{openssh-configuration} record as in this example:
8345
8346 @example
8347 (service openssh-service-type
8348 (openssh-configuration
8349 (x11-forwarding? #t)
8350 (permit-root-login 'without-password)))
8351 @end example
8352
8353 See below for details about @code{openssh-configuration}.
8354 @end deffn
8355
8356 @deftp {Data Type} openssh-configuration
8357 This is the configuration record for OpenSSH's @command{sshd}.
8358
8359 @table @asis
8360 @item @code{pid-file} (default: @code{"/var/run/sshd.pid"})
8361 Name of the file where @command{sshd} writes its PID.
8362
8363 @item @code{port-number} (default: @code{22})
8364 TCP port on which @command{sshd} listens for incoming connections.
8365
8366 @item @code{permit-root-login} (default: @code{#f})
8367 This field determines whether and when to allow logins as root. If
8368 @code{#f}, root logins are disallowed; if @code{#t}, they are allowed.
8369 If it's the symbol @code{'without-password}, then root logins are
8370 permitted but not with password-based authentication.
8371
8372 @item @code{allow-empty-passwords?} (default: @code{#f})
8373 When true, users with empty passwords may log in. When false, they may
8374 not.
8375
8376 @item @code{password-authentication?} (default: @code{#t})
8377 When true, users may log in with their password. When false, they have
8378 other authentication methods.
8379
8380 @item @code{public-key-authentication?} (default: @code{#t})
8381 When true, users may log in using public key authentication. When
8382 false, users have to use other authentication method.
8383
8384 Authorized public keys are stored in @file{~/.ssh/authorized_keys}.
8385 This is used only by protocol version 2.
8386
8387 @item @code{rsa-authentication?} (default: @code{#t})
8388 When true, users may log in using pure RSA authentication. When false,
8389 users have to use other means of authentication. This is used only by
8390 protocol 1.
8391
8392 @item @code{x11-forwarding?} (default: @code{#f})
8393 When true, forwarding of X11 graphical client connections is
8394 enabled---in other words, @command{ssh} options @option{-X} and
8395 @option{-Y} will work.
8396
8397 @item @code{protocol-number} (default: @code{2})
8398 The SSH protocol number to use.
8399 @end table
8400 @end deftp
8401
8402 @deffn {Scheme Procedure} dropbear-service [@var{config}]
8403 Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH
8404 daemon} with the given @var{config}, a @code{<dropbear-configuration>}
8405 object.
8406
8407 For example, to specify a Dropbear service listening on port 1234, add
8408 this call to the operating system's @code{services} field:
8409
8410 @example
8411 (dropbear-service (dropbear-configuration
8412 (port-number 1234)))
8413 @end example
8414 @end deffn
8415
8416 @deftp {Data Type} dropbear-configuration
8417 This data type represents the configuration of a Dropbear SSH daemon.
8418
8419 @table @asis
8420 @item @code{dropbear} (default: @var{dropbear})
8421 The Dropbear package to use.
8422
8423 @item @code{port-number} (default: 22)
8424 The TCP port where the daemon waits for incoming connections.
8425
8426 @item @code{syslog-output?} (default: @code{#t})
8427 Whether to enable syslog output.
8428
8429 @item @code{pid-file} (default: @code{"/var/run/dropbear.pid"})
8430 File name of the daemon's PID file.
8431
8432 @item @code{root-login?} (default: @code{#f})
8433 Whether to allow @code{root} logins.
8434
8435 @item @code{allow-empty-passwords?} (default: @code{#f})
8436 Whether to allow empty passwords.
8437
8438 @item @code{password-authentication?} (default: @code{#t})
8439 Whether to enable password-based authentication.
8440 @end table
8441 @end deftp
8442
8443 @defvr {Scheme Variable} %facebook-host-aliases
8444 This variable contains a string for use in @file{/etc/hosts}
8445 (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each
8446 line contains a entry that maps a known server name of the Facebook
8447 on-line service---e.g., @code{www.facebook.com}---to the local
8448 host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}.
8449
8450 This variable is typically used in the @code{hosts-file} field of an
8451 @code{operating-system} declaration (@pxref{operating-system Reference,
8452 @file{/etc/hosts}}):
8453
8454 @example
8455 (use-modules (gnu) (guix))
8456
8457 (operating-system
8458 (host-name "mymachine")
8459 ;; ...
8460 (hosts-file
8461 ;; Create a /etc/hosts file with aliases for "localhost"
8462 ;; and "mymachine", as well as for Facebook servers.
8463 (plain-file "hosts"
8464 (string-append (local-host-aliases host-name)
8465 %facebook-host-aliases))))
8466 @end example
8467
8468 This mechanism can prevent programs running locally, such as Web
8469 browsers, from accessing Facebook.
8470 @end defvr
8471
8472 The @code{(gnu services avahi)} provides the following definition.
8473
8474 @deffn {Scheme Procedure} avahi-service [#:avahi @var{avahi}] @
8475 [#:host-name #f] [#:publish? #t] [#:ipv4? #t] @
8476 [#:ipv6? #t] [#:wide-area? #f] @
8477 [#:domains-to-browse '()] [#:debug? #f]
8478 Return a service that runs @command{avahi-daemon}, a system-wide
8479 mDNS/DNS-SD responder that allows for service discovery and
8480 "zero-configuration" host name lookups (see @uref{http://avahi.org/}), and
8481 extends the name service cache daemon (nscd) so that it can resolve
8482 @code{.local} host names using
8483 @uref{http://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. Additionally,
8484 add the @var{avahi} package to the system profile so that commands such as
8485 @command{avahi-browse} are directly usable.
8486
8487 If @var{host-name} is different from @code{#f}, use that as the host name to
8488 publish for this machine; otherwise, use the machine's actual host name.
8489
8490 When @var{publish?} is true, publishing of host names and services is allowed;
8491 in particular, avahi-daemon will publish the machine's host name and IP
8492 address via mDNS on the local network.
8493
8494 When @var{wide-area?} is true, DNS-SD over unicast DNS is enabled.
8495
8496 Boolean values @var{ipv4?} and @var{ipv6?} determine whether to use IPv4/IPv6
8497 sockets.
8498 @end deffn
8499
8500
8501 @node X Window
8502 @subsubsection X Window
8503
8504 Support for the X Window graphical display system---specifically
8505 Xorg---is provided by the @code{(gnu services xorg)} module. Note that
8506 there is no @code{xorg-service} procedure. Instead, the X server is
8507 started by the @dfn{login manager}, currently SLiM.
8508
8509 @deftp {Data Type} sddm-configuration
8510 This is the data type representing the sddm service configuration.
8511
8512 @table @asis
8513 @item @code{display-server} (default: "x11")
8514 Select display server to use for the greeter. Valid values are "x11"
8515 or "wayland".
8516
8517 @item @code{numlock} (default: "on")
8518 Valid values are "on", "off" or "none".
8519
8520 @item @code{halt-command} (default @code{#~(string-apppend #$shepherd "/sbin/halt")})
8521 Command to run when halting.
8522
8523 @item @code{reboot-command} (default @code{#~(string-append #$shepherd "/sbin/reboot")})
8524 Command to run when rebooting.
8525
8526 @item @code{theme} (default "maldives")
8527 Theme to use. Default themes provided by SDDM are "elarun" or "maldives".
8528
8529 @item @code{themes-directory} (default "/run/current-system/profile/share/sddm/themes")
8530 Directory to look for themes.
8531
8532 @item @code{faces-directory} (default "/run/current-system/profile/share/sddm/faces")
8533 Directory to look for faces.
8534
8535 @item @code{default-path} (default "/run/current-system/profile/bin")
8536 Default PATH to use.
8537
8538 @item @code{minimum-uid} (default 1000)
8539 Minimum UID to display in SDDM.
8540
8541 @item @code{maximum-uid} (default 2000)
8542 Maximum UID to display in SDDM
8543
8544 @item @code{remember-last-user?} (default #t)
8545 Remember last user.
8546
8547 @item @code{remember-last-session?} (default #t)
8548 Remember last session.
8549
8550 @item @code{hide-users} (default "")
8551 Usernames to hide from SDDM greeter.
8552
8553 @item @code{hide-shells} (default @code{#~(string-append #$shadow "/sbin/nologin")})
8554 Users with shells listed will be hidden from the SDDM greeter.
8555
8556 @item @code{session-command} (default @code{#~(string-append #$sddm "/share/sddm/scripts/wayland-session")})
8557 Script to run before starting a wayland session.
8558
8559 @item @code{sessions-directory} (default "/run/current-system/profile/share/wayland-sessions")
8560 Directory to look for desktop files starting wayland sessions.
8561
8562 @item @code{xorg-server-path} (default @code{xorg-start-command})
8563 Path to xorg-server.
8564
8565 @item @code{xauth-path} (default @code{#~(string-append #$xauth "/bin/xauth")})
8566 Path to xauth.
8567
8568 @item @code{xephyr-path} (default @code{#~(string-append #$xorg-server "/bin/Xephyr")})
8569 Path to Xephyr.
8570
8571 @item @code{xdisplay-start} (default @code{#~(string-append #$sddm "/share/sddm/scripts/Xsetup")})
8572 Script to run after starting xorg-server.
8573
8574 @item @code{xdisplay-stop} (default @code{#~(string-append #$sddm "/share/sddm/scripts/Xstop")})
8575 Script to run before stopping xorg-server.
8576
8577 @item @code{xsession-command} (default: @code{xinitr })
8578 Script to run before starting a X session.
8579
8580 @item @code{xsessions-directory} (default: "/run/current-system/profile/share/xsessions")
8581 Directory to look for desktop files starting X sessions.
8582
8583 @item @code{minimum-vt} (default: 7)
8584 Minimum VT to use.
8585
8586 @item @code{xserver-arguments} (default "-nolisten tcp")
8587 Arguments to pass to xorg-server.
8588
8589 @item @code{auto-login-user} (default "")
8590 User to use for auto-login.
8591
8592 @item @code{auto-login-session} (default "")
8593 Desktop file to use for auto-login.
8594
8595 @item @code{relogin?} (default #f)
8596 Relogin after logout.
8597
8598 @end table
8599 @end deftp
8600
8601 @deffn {Scheme Procedure} sddm-service config
8602 Return a service that spawns the SDDM graphical login manager for config of
8603 type @code{<sddm-configuration>}.
8604
8605 @example
8606 (sddm-service (sddm-configuration
8607 (auto-login-user "Alice")
8608 (auto-login-session "xfce.desktop")))
8609 @end example
8610 @end deffn
8611
8612 @deffn {Scheme Procedure} slim-service [#:allow-empty-passwords? #f] @
8613 [#:auto-login? #f] [#:default-user ""] [#:startx] @
8614 [#:theme @var{%default-slim-theme}] @
8615 [#:theme-name @var{%default-slim-theme-name}]
8616 Return a service that spawns the SLiM graphical login manager, which in
8617 turn starts the X display server with @var{startx}, a command as returned by
8618 @code{xorg-start-command}.
8619
8620 @cindex X session
8621
8622 SLiM automatically looks for session types described by the @file{.desktop}
8623 files in @file{/run/current-system/profile/share/xsessions} and allows users
8624 to choose a session from the log-in screen using @kbd{F1}. Packages such as
8625 @var{xfce}, @var{sawfish}, and @var{ratpoison} provide @file{.desktop} files;
8626 adding them to the system-wide set of packages automatically makes them
8627 available at the log-in screen.
8628
8629 In addition, @file{~/.xsession} files are honored. When available,
8630 @file{~/.xsession} must be an executable that starts a window manager
8631 and/or other X clients.
8632
8633 When @var{allow-empty-passwords?} is true, allow logins with an empty
8634 password. When @var{auto-login?} is true, log in automatically as
8635 @var{default-user}.
8636
8637 If @var{theme} is @code{#f}, use the default log-in theme; otherwise
8638 @var{theme} must be a gexp denoting the name of a directory containing the
8639 theme to use. In that case, @var{theme-name} specifies the name of the
8640 theme.
8641 @end deffn
8642
8643 @defvr {Scheme Variable} %default-theme
8644 @defvrx {Scheme Variable} %default-theme-name
8645 The G-Expression denoting the default SLiM theme and its name.
8646 @end defvr
8647
8648 @deffn {Scheme Procedure} xorg-start-command [#:guile] @
8649 [#:configuration-file #f] [#:xorg-server @var{xorg-server}]
8650 Return a derivation that builds a @var{guile} script to start the X server
8651 from @var{xorg-server}. @var{configuration-file} is the server configuration
8652 file or a derivation that builds it; when omitted, the result of
8653 @code{xorg-configuration-file} is used.
8654
8655 Usually the X server is started by a login manager.
8656 @end deffn
8657
8658 @deffn {Scheme Procedure} xorg-configuration-file @
8659 [#:drivers '()] [#:resolutions '()] [#:extra-config '()]
8660 Return a configuration file for the Xorg server containing search paths for
8661 all the common drivers.
8662
8663 @var{drivers} must be either the empty list, in which case Xorg chooses a
8664 graphics driver automatically, or a list of driver names that will be tried in
8665 this order---e.g., @code{(\"modesetting\" \"vesa\")}.
8666
8667 Likewise, when @var{resolutions} is the empty list, Xorg chooses an
8668 appropriate screen resolution; otherwise, it must be a list of
8669 resolutions---e.g., @code{((1024 768) (640 480))}.
8670
8671 Last, @var{extra-config} is a list of strings or objects appended to the
8672 @code{text-file*} argument list. It is used to pass extra text to be added
8673 verbatim to the configuration file.
8674 @end deffn
8675
8676 @deffn {Scheme Procedure} screen-locker-service @var{package} [@var{name}]
8677 Add @var{package}, a package for a screen-locker or screen-saver whose
8678 command is @var{program}, to the set of setuid programs and add a PAM entry
8679 for it. For example:
8680
8681 @lisp
8682 (screen-locker-service xlockmore "xlock")
8683 @end lisp
8684
8685 makes the good ol' XlockMore usable.
8686 @end deffn
8687
8688
8689 @node Desktop Services
8690 @subsubsection Desktop Services
8691
8692 The @code{(gnu services desktop)} module provides services that are
8693 usually useful in the context of a ``desktop'' setup---that is, on a
8694 machine running a graphical display server, possibly with graphical user
8695 interfaces, etc. It also defines services that provide specific desktop
8696 environments like GNOME and XFCE.
8697
8698 To simplify things, the module defines a variable containing the set of
8699 services that users typically expect on a machine with a graphical
8700 environment and networking:
8701
8702 @defvr {Scheme Variable} %desktop-services
8703 This is a list of services that builds upon @var{%base-services} and
8704 adds or adjusts services for a typical ``desktop'' setup.
8705
8706 In particular, it adds a graphical login manager (@pxref{X Window,
8707 @code{slim-service}}), screen lockers,
8708 a network management tool (@pxref{Networking
8709 Services, @code{wicd-service}}), energy and color management services,
8710 the @code{elogind} login and seat manager, the Polkit privilege service,
8711 the GeoClue location service, an NTP client (@pxref{Networking
8712 Services}), the Avahi daemon, and has the name service switch service
8713 configured to be able to use @code{nss-mdns} (@pxref{Name Service
8714 Switch, mDNS}).
8715 @end defvr
8716
8717 The @var{%desktop-services} variable can be used as the @code{services}
8718 field of an @code{operating-system} declaration (@pxref{operating-system
8719 Reference, @code{services}}).
8720
8721 Additionally, the @code{gnome-desktop-service} and
8722 @code{xfce-desktop-service} procedures can add GNOME and/or XFCE to a
8723 system. To ``add GNOME'' means that system-level services like the
8724 backlight adjustment helpers and the power management utilities are
8725 added to the system, extending @code{polkit} and @code{dbus}
8726 appropriately, allowing GNOME to operate with elevated privileges on a
8727 limited number of special-purpose system interfaces. Additionally,
8728 adding a service made by @code{gnome-desktop-service} adds the GNOME
8729 metapackage to the system profile. Likewise, adding the XFCE service
8730 not only adds the @code{xfce} metapackage to the system profile, but it
8731 also gives the Thunar file manager the ability to open a ``root-mode''
8732 file management window, if the user authenticates using the
8733 administrator's password via the standard polkit graphical interface.
8734
8735 @deffn {Scheme Procedure} gnome-desktop-service
8736 Return a service that adds the @code{gnome} package to the system
8737 profile, and extends polkit with the actions from
8738 @code{gnome-settings-daemon}.
8739 @end deffn
8740
8741 @deffn {Scheme Procedure} xfce-desktop-service
8742 Return a service that adds the @code{xfce} package to the system profile,
8743 and extends polkit with the ability for @code{thunar} to manipulate the
8744 file system as root from within a user session, after the user has
8745 authenticated with the administrator's password.
8746 @end deffn
8747
8748 Because the GNOME and XFCE desktop services pull in so many packages,
8749 the default @code{%desktop-services} variable doesn't include either of
8750 them by default. To add GNOME or XFCE, just @code{cons} them onto
8751 @code{%desktop-services} in the @code{services} field of your
8752 @code{operating-system}:
8753
8754 @example
8755 (use-modules (gnu))
8756 (use-service-modules desktop)
8757 (operating-system
8758 ...
8759 ;; cons* adds items to the list given as its last argument.
8760 (services (cons* (gnome-desktop-service)
8761 (xfce-desktop-service)
8762 %desktop-services))
8763 ...)
8764 @end example
8765
8766 These desktop environments will then be available as options in the
8767 graphical login window.
8768
8769 The actual service definitions included in @code{%desktop-services} and
8770 provided by @code{(gnu services dbus)} and @code{(gnu services desktop)}
8771 are described below.
8772
8773 @deffn {Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]
8774 Return a service that runs the ``system bus'', using @var{dbus}, with
8775 support for @var{services}.
8776
8777 @uref{http://dbus.freedesktop.org/, D-Bus} is an inter-process communication
8778 facility. Its system bus is used to allow system services to communicate
8779 and to be notified of system-wide events.
8780
8781 @var{services} must be a list of packages that provide an
8782 @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration
8783 and policy files. For example, to allow avahi-daemon to use the system bus,
8784 @var{services} must be equal to @code{(list avahi)}.
8785 @end deffn
8786
8787 @deffn {Scheme Procedure} elogind-service [#:config @var{config}]
8788 Return a service that runs the @code{elogind} login and
8789 seat management daemon. @uref{https://github.com/andywingo/elogind,
8790 Elogind} exposes a D-Bus interface that can be used to know which users
8791 are logged in, know what kind of sessions they have open, suspend the
8792 system, inhibit system suspend, reboot the system, and other tasks.
8793
8794 Elogind handles most system-level power events for a computer, for
8795 example suspending the system when a lid is closed, or shutting it down
8796 when the power button is pressed.
8797
8798 The @var{config} keyword argument specifies the configuration for
8799 elogind, and should be the result of an @code{(elogind-configuration
8800 (@var{parameter} @var{value})...)} invocation. Available parameters and
8801 their default values are:
8802
8803 @table @code
8804 @item kill-user-processes?
8805 @code{#f}
8806 @item kill-only-users
8807 @code{()}
8808 @item kill-exclude-users
8809 @code{("root")}
8810 @item inhibit-delay-max-seconds
8811 @code{5}
8812 @item handle-power-key
8813 @code{poweroff}
8814 @item handle-suspend-key
8815 @code{suspend}
8816 @item handle-hibernate-key
8817 @code{hibernate}
8818 @item handle-lid-switch
8819 @code{suspend}
8820 @item handle-lid-switch-docked
8821 @code{ignore}
8822 @item power-key-ignore-inhibited?
8823 @code{#f}
8824 @item suspend-key-ignore-inhibited?
8825 @code{#f}
8826 @item hibernate-key-ignore-inhibited?
8827 @code{#f}
8828 @item lid-switch-ignore-inhibited?
8829 @code{#t}
8830 @item holdoff-timeout-seconds
8831 @code{30}
8832 @item idle-action
8833 @code{ignore}
8834 @item idle-action-seconds
8835 @code{(* 30 60)}
8836 @item runtime-directory-size-percent
8837 @code{10}
8838 @item runtime-directory-size
8839 @code{#f}
8840 @item remove-ipc?
8841 @code{#t}
8842 @item suspend-state
8843 @code{("mem" "standby" "freeze")}
8844 @item suspend-mode
8845 @code{()}
8846 @item hibernate-state
8847 @code{("disk")}
8848 @item hibernate-mode
8849 @code{("platform" "shutdown")}
8850 @item hybrid-sleep-state
8851 @code{("disk")}
8852 @item hybrid-sleep-mode
8853 @code{("suspend" "platform" "shutdown")}
8854 @end table
8855 @end deffn
8856
8857 @deffn {Scheme Procedure} polkit-service @
8858 [#:polkit @var{polkit}]
8859 Return a service that runs the
8860 @uref{http://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege
8861 management service}, which allows system administrators to grant access to
8862 privileged operations in a structured way. By querying the Polkit service, a
8863 privileged system component can know when it should grant additional
8864 capabilities to ordinary users. For example, an ordinary user can be granted
8865 the capability to suspend the system if the user is logged in locally.
8866 @end deffn
8867
8868 @deffn {Scheme Procedure} upower-service [#:upower @var{upower}] @
8869 [#:watts-up-pro? #f] @
8870 [#:poll-batteries? #t] @
8871 [#:ignore-lid? #f] @
8872 [#:use-percentage-for-policy? #f] @
8873 [#:percentage-low 10] @
8874 [#:percentage-critical 3] @
8875 [#:percentage-action 2] @
8876 [#:time-low 1200] @
8877 [#:time-critical 300] @
8878 [#:time-action 120] @
8879 [#:critical-power-action 'hybrid-sleep]
8880 Return a service that runs @uref{http://upower.freedesktop.org/,
8881 @command{upowerd}}, a system-wide monitor for power consumption and battery
8882 levels, with the given configuration settings. It implements the
8883 @code{org.freedesktop.UPower} D-Bus interface, and is notably used by
8884 GNOME.
8885 @end deffn
8886
8887 @deffn {Scheme Procedure} udisks-service [#:udisks @var{udisks}]
8888 Return a service for @uref{http://udisks.freedesktop.org/docs/latest/,
8889 UDisks}, a @dfn{disk management} daemon that provides user interfaces with
8890 notifications and ways to mount/unmount disks. Programs that talk to UDisks
8891 include the @command{udisksctl} command, part of UDisks, and GNOME Disks.
8892 @end deffn
8893
8894 @deffn {Scheme Procedure} colord-service [#:colord @var{colord}]
8895 Return a service that runs @command{colord}, a system service with a D-Bus
8896 interface to manage the color profiles of input and output devices such as
8897 screens and scanners. It is notably used by the GNOME Color Manager graphical
8898 tool. See @uref{http://www.freedesktop.org/software/colord/, the colord web
8899 site} for more information.
8900 @end deffn
8901
8902 @deffn {Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]
8903 Return a configuration allowing an application to access GeoClue
8904 location data. @var{name} is the Desktop ID of the application, without
8905 the @code{.desktop} part. If @var{allowed?} is true, the application
8906 will have access to location information by default. The boolean
8907 @var{system?} value indicates whether an application is a system component
8908 or not. Finally @var{users} is a list of UIDs of all users for which
8909 this application is allowed location info access. An empty users list
8910 means that all users are allowed.
8911 @end deffn
8912
8913 @defvr {Scheme Variable} %standard-geoclue-applications
8914 The standard list of well-known GeoClue application configurations,
8915 granting authority to the GNOME date-and-time utility to ask for the
8916 current location in order to set the time zone, and allowing the
8917 IceCat and Epiphany web browsers to request location information.
8918 IceCat and Epiphany both query the user before allowing a web page to
8919 know the user's location.
8920 @end defvr
8921
8922 @deffn {Scheme Procedure} geoclue-service [#:colord @var{colord}] @
8923 [#:whitelist '()] @
8924 [#:wifi-geolocation-url "https://location.services.mozilla.com/v1/geolocate?key=geoclue"] @
8925 [#:submit-data? #f]
8926 [#:wifi-submission-url "https://location.services.mozilla.com/v1/submit?key=geoclue"] @
8927 [#:submission-nick "geoclue"] @
8928 [#:applications %standard-geoclue-applications]
8929 Return a service that runs the GeoClue location service. This service
8930 provides a D-Bus interface to allow applications to request access to a
8931 user's physical location, and optionally to add information to online
8932 location databases. See
8933 @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue
8934 web site} for more information.
8935 @end deffn
8936
8937 @deffn {Scheme Procedure} bluetooth-service [#:bluez @var{bluez}]
8938 Return a service that runs the @command{bluetoothd} daemon, which manages
8939 all the Bluetooth devices and provides a number of D-Bus interfaces.
8940
8941 Users need to be in the @code{lp} group to access the D-Bus service.
8942 @end deffn
8943
8944 @node Database Services
8945 @subsubsection Database Services
8946
8947 The @code{(gnu services databases)} module provides the following services.
8948
8949 @deffn {Scheme Procedure} postgresql-service [#:postgresql postgresql] @
8950 [#:config-file] [#:data-directory ``/var/lib/postgresql/data'']
8951 Return a service that runs @var{postgresql}, the PostgreSQL database
8952 server.
8953
8954 The PostgreSQL daemon loads its runtime configuration from
8955 @var{config-file} and stores the database cluster in
8956 @var{data-directory}.
8957 @end deffn
8958
8959 @deffn {Scheme Procedure} mysql-service [#:config (mysql-configuration)]
8960 Return a service that runs @command{mysqld}, the MySQL or MariaDB
8961 database server.
8962
8963 The optional @var{config} argument specifies the configuration for
8964 @command{mysqld}, which should be a @code{<mysql-configuraiton>} object.
8965 @end deffn
8966
8967 @deftp {Data Type} mysql-configuration
8968 Data type representing the configuration of @var{mysql-service}.
8969
8970 @table @asis
8971 @item @code{mysql} (default: @var{mariadb})
8972 Package object of the MySQL database server, can be either @var{mariadb}
8973 or @var{mysql}.
8974
8975 For MySQL, a temporary root password will be displayed at activation time.
8976 For MariaDB, the root password is empty.
8977 @end table
8978 @end deftp
8979
8980 @node Mail Services
8981 @subsubsection Mail Services
8982
8983 The @code{(gnu services mail)} module provides Guix service definitions
8984 for mail services. Currently the only implemented service is Dovecot,
8985 an IMAP, POP3, and LMTP server.
8986
8987 Guix does not yet have a mail transfer agent (MTA), although for some
8988 lightweight purposes the @code{esmtp} relay-only MTA may suffice. Help
8989 is needed to properly integrate a full MTA, such as Postfix. Patches
8990 welcome!
8991
8992 To add an IMAP/POP3 server to a GuixSD system, add a
8993 @code{dovecot-service} to the operating system definition:
8994
8995 @deffn {Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]
8996 Return a service that runs the Dovecot IMAP/POP3/LMTP mail server.
8997 @end deffn
8998
8999 By default, Dovecot does not need much configuration; the default
9000 configuration object created by @code{(dovecot-configuration)} will
9001 suffice if your mail is delivered to @code{~/Maildir}. A self-signed
9002 certificate will be generated for TLS-protected connections, though
9003 Dovecot will also listen on cleartext ports by default. There are a
9004 number of options, though, which mail administrators might need to change,
9005 and as is the case with other services, Guix allows the system
9006 administrator to specify these parameters via a uniform Scheme interface.
9007
9008 For example, to specify that mail is located at @code{maildir~/.mail},
9009 one would instantiate the Dovecot service like this:
9010
9011 @example
9012 (dovecot-service #:config
9013 (dovecot-configuration
9014 (mail-location "maildir:~/.mail")))
9015 @end example
9016
9017 The available configuration parameters follow. Each parameter
9018 definition is preceded by its type; for example, @samp{string-list foo}
9019 indicates that the @code{foo} parameter should be specified as a list of
9020 strings. There is also a way to specify the configuration as a string,
9021 if you have an old @code{dovecot.conf} file that you want to port over
9022 from some other system; see the end for more details.
9023
9024 @c The following documentation was initially generated by
9025 @c (generate-documentation) in (gnu services mail). Manually maintained
9026 @c documentation is better, so we shouldn't hesitate to edit below as
9027 @c needed. However if the change you want to make to this documentation
9028 @c can be done in an automated way, it's probably easier to change
9029 @c (generate-documentation) than to make it below and have to deal with
9030 @c the churn as dovecot updates.
9031
9032 Available @code{dovecot-configuration} fields are:
9033
9034 @deftypevr {@code{dovecot-configuration} parameter} package dovecot
9035 The dovecot package.
9036 @end deftypevr
9037
9038 @deftypevr {@code{dovecot-configuration} parameter} comma-separated-string-list listen
9039 A list of IPs or hosts where to listen for connections. @samp{*}
9040 listens on all IPv4 interfaces, @samp{::} listens on all IPv6
9041 interfaces. If you want to specify non-default ports or anything more
9042 complex, customize the address and port fields of the
9043 @samp{inet-listener} of the specific services you are interested in.
9044 @end deftypevr
9045
9046 @deftypevr {@code{dovecot-configuration} parameter} protocol-configuration-list protocols
9047 List of protocols we want to serve. Available protocols include
9048 @samp{imap}, @samp{pop3}, and @samp{lmtp}.
9049
9050 Available @code{protocol-configuration} fields are:
9051
9052 @deftypevr {@code{protocol-configuration} parameter} string name
9053 The name of the protocol.
9054 @end deftypevr
9055
9056 @deftypevr {@code{protocol-configuration} parameter} string auth-socket-path
9057 UNIX socket path to the master authentication server to find users.
9058 This is used by imap (for shared users) and lda.
9059 It defaults to @samp{"/var/run/dovecot/auth-userdb"}.
9060 @end deftypevr
9061
9062 @deftypevr {@code{protocol-configuration} parameter} space-separated-string-list mail-plugins
9063 Space separated list of plugins to load.
9064 @end deftypevr
9065
9066 @deftypevr {@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections
9067 Maximum number of IMAP connections allowed for a user from each IP
9068 address. NOTE: The username is compared case-sensitively.
9069 Defaults to @samp{10}.
9070 @end deftypevr
9071
9072 @end deftypevr
9073
9074 @deftypevr {@code{dovecot-configuration} parameter} service-configuration-list services
9075 List of services to enable. Available services include @samp{imap},
9076 @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and
9077 @samp{lmtp}.
9078
9079 Available @code{service-configuration} fields are:
9080
9081 @deftypevr {@code{service-configuration} parameter} string kind
9082 The service kind. Valid values include @code{director},
9083 @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap},
9084 @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict},
9085 @code{tcpwrap}, @code{quota-warning}, or anything else.
9086 @end deftypevr
9087
9088 @deftypevr {@code{service-configuration} parameter} listener-configuration-list listeners
9089 Listeners for the service. A listener is either a
9090 @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or
9091 an @code{inet-listener-configuration}.
9092 Defaults to @samp{()}.
9093
9094 Available @code{unix-listener-configuration} fields are:
9095
9096 @deftypevr {@code{unix-listener-configuration} parameter} file-name path
9097 The file name on which to listen.
9098 @end deftypevr
9099
9100 @deftypevr {@code{unix-listener-configuration} parameter} string mode
9101 The access mode for the socket.
9102 Defaults to @samp{"0600"}.
9103 @end deftypevr
9104
9105 @deftypevr {@code{unix-listener-configuration} parameter} string user
9106 The user to own the socket.
9107 Defaults to @samp{""}.
9108 @end deftypevr
9109
9110 @deftypevr {@code{unix-listener-configuration} parameter} string group
9111 The group to own the socket.
9112 Defaults to @samp{""}.
9113 @end deftypevr
9114
9115
9116 Available @code{fifo-listener-configuration} fields are:
9117
9118 @deftypevr {@code{fifo-listener-configuration} parameter} file-name path
9119 The file name on which to listen.
9120 @end deftypevr
9121
9122 @deftypevr {@code{fifo-listener-configuration} parameter} string mode
9123 The access mode for the socket.
9124 Defaults to @samp{"0600"}.
9125 @end deftypevr
9126
9127 @deftypevr {@code{fifo-listener-configuration} parameter} string user
9128 The user to own the socket.
9129 Defaults to @samp{""}.
9130 @end deftypevr
9131
9132 @deftypevr {@code{fifo-listener-configuration} parameter} string group
9133 The group to own the socket.
9134 Defaults to @samp{""}.
9135 @end deftypevr
9136
9137
9138 Available @code{inet-listener-configuration} fields are:
9139
9140 @deftypevr {@code{inet-listener-configuration} parameter} string protocol
9141 The protocol to listen for.
9142 @end deftypevr
9143
9144 @deftypevr {@code{inet-listener-configuration} parameter} string address
9145 The address on which to listen, or empty for all addresses.
9146 Defaults to @samp{""}.
9147 @end deftypevr
9148
9149 @deftypevr {@code{inet-listener-configuration} parameter} non-negative-integer port
9150 The port on which to listen.
9151 @end deftypevr
9152
9153 @deftypevr {@code{inet-listener-configuration} parameter} boolean ssl?
9154 Whether to use SSL for this service; @samp{yes}, @samp{no}, or
9155 @samp{required}.
9156 Defaults to @samp{#t}.
9157 @end deftypevr
9158
9159 @end deftypevr
9160
9161 @deftypevr {@code{service-configuration} parameter} non-negative-integer service-count
9162 Number of connections to handle before starting a new process.
9163 Typically the only useful values are 0 (unlimited) or 1. 1 is more
9164 secure, but 0 is faster. <doc/wiki/LoginProcess.txt>.
9165 Defaults to @samp{1}.
9166 @end deftypevr
9167
9168 @deftypevr {@code{service-configuration} parameter} non-negative-integer process-min-avail
9169 Number of processes to always keep waiting for more connections.
9170 Defaults to @samp{0}.
9171 @end deftypevr
9172
9173 @deftypevr {@code{service-configuration} parameter} non-negative-integer vsz-limit
9174 If you set @samp{service-count 0}, you probably need to grow
9175 this.
9176 Defaults to @samp{256000000}.
9177 @end deftypevr
9178
9179 @end deftypevr
9180
9181 @deftypevr {@code{dovecot-configuration} parameter} dict-configuration dict
9182 Dict configuration, as created by the @code{dict-configuration}
9183 constructor.
9184
9185 Available @code{dict-configuration} fields are:
9186
9187 @deftypevr {@code{dict-configuration} parameter} free-form-fields entries
9188 A list of key-value pairs that this dict should hold.
9189 Defaults to @samp{()}.
9190 @end deftypevr
9191
9192 @end deftypevr
9193
9194 @deftypevr {@code{dovecot-configuration} parameter} passdb-configuration-list passdbs
9195 A list of passdb configurations, each one created by the
9196 @code{passdb-configuration} constructor.
9197
9198 Available @code{passdb-configuration} fields are:
9199
9200 @deftypevr {@code{passdb-configuration} parameter} string driver
9201 The driver that the passdb should use. Valid values include
9202 @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and
9203 @samp{static}.
9204 Defaults to @samp{"pam"}.
9205 @end deftypevr
9206
9207 @deftypevr {@code{passdb-configuration} parameter} free-form-args args
9208 A list of key-value args to the passdb driver.
9209 Defaults to @samp{()}.
9210 @end deftypevr
9211
9212 @end deftypevr
9213
9214 @deftypevr {@code{dovecot-configuration} parameter} userdb-configuration-list userdbs
9215 List of userdb configurations, each one created by the
9216 @code{userdb-configuration} constructor.
9217
9218 Available @code{userdb-configuration} fields are:
9219
9220 @deftypevr {@code{userdb-configuration} parameter} string driver
9221 The driver that the userdb should use. Valid values include
9222 @samp{passwd} and @samp{static}.
9223 Defaults to @samp{"passwd"}.
9224 @end deftypevr
9225
9226 @deftypevr {@code{userdb-configuration} parameter} free-form-args args
9227 A list of key-value args to the userdb driver.
9228 Defaults to @samp{()}.
9229 @end deftypevr
9230
9231 @deftypevr {@code{userdb-configuration} parameter} free-form-args override-fields
9232 Override fields from passwd.
9233 Defaults to @samp{()}.
9234 @end deftypevr
9235
9236 @end deftypevr
9237
9238 @deftypevr {@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration
9239 Plug-in configuration, created by the @code{plugin-configuration}
9240 constructor.
9241 @end deftypevr
9242
9243 @deftypevr {@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces
9244 List of namespaces. Each item in the list is created by the
9245 @code{namespace-configuration} constructor.
9246
9247 Available @code{namespace-configuration} fields are:
9248
9249 @deftypevr {@code{namespace-configuration} parameter} string name
9250 Name for this namespace.
9251 @end deftypevr
9252
9253 @deftypevr {@code{namespace-configuration} parameter} string type
9254 Namespace type: @samp{private}, @samp{shared} or @samp{public}.
9255 Defaults to @samp{"private"}.
9256 @end deftypevr
9257
9258 @deftypevr {@code{namespace-configuration} parameter} string separator
9259 Hierarchy separator to use. You should use the same separator for
9260 all namespaces or some clients get confused. @samp{/} is usually a good
9261 one. The default however depends on the underlying mail storage
9262 format.
9263 Defaults to @samp{""}.
9264 @end deftypevr
9265
9266 @deftypevr {@code{namespace-configuration} parameter} string prefix
9267 Prefix required to access this namespace. This needs to be
9268 different for all namespaces. For example @samp{Public/}.
9269 Defaults to @samp{""}.
9270 @end deftypevr
9271
9272 @deftypevr {@code{namespace-configuration} parameter} string location
9273 Physical location of the mailbox. This is in the same format as
9274 mail_location, which is also the default for it.
9275 Defaults to @samp{""}.
9276 @end deftypevr
9277
9278 @deftypevr {@code{namespace-configuration} parameter} boolean inbox?
9279 There can be only one INBOX, and this setting defines which
9280 namespace has it.
9281 Defaults to @samp{#f}.
9282 @end deftypevr
9283
9284 @deftypevr {@code{namespace-configuration} parameter} boolean hidden?
9285 If namespace is hidden, it's not advertised to clients via NAMESPACE
9286 extension. You'll most likely also want to set @samp{list? #f}. This is mostly
9287 useful when converting from another server with different namespaces
9288 which you want to deprecate but still keep working. For example you can
9289 create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/}
9290 and @samp{mail/}.
9291 Defaults to @samp{#f}.
9292 @end deftypevr
9293
9294 @deftypevr {@code{namespace-configuration} parameter} boolean list?
9295 Show the mailboxes under this namespace with the LIST command. This
9296 makes the namespace visible for clients that do not support the NAMESPACE
9297 extension. The special @code{children} value lists child mailboxes, but
9298 hides the namespace prefix.
9299 Defaults to @samp{#t}.
9300 @end deftypevr
9301
9302 @deftypevr {@code{namespace-configuration} parameter} boolean subscriptions?
9303 Namespace handles its own subscriptions. If set to @code{#f}, the
9304 parent namespace handles them. The empty prefix should always have this
9305 as @code{#t}).
9306 Defaults to @samp{#t}.
9307 @end deftypevr
9308
9309 @deftypevr {@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes
9310 List of predefined mailboxes in this namespace.
9311 Defaults to @samp{()}.
9312
9313 Available @code{mailbox-configuration} fields are:
9314
9315 @deftypevr {@code{mailbox-configuration} parameter} string name
9316 Name for this mailbox.
9317 @end deftypevr
9318
9319 @deftypevr {@code{mailbox-configuration} parameter} string auto
9320 @samp{create} will automatically create this mailbox.
9321 @samp{subscribe} will both create and subscribe to the mailbox.
9322 Defaults to @samp{"no"}.
9323 @end deftypevr
9324
9325 @deftypevr {@code{mailbox-configuration} parameter} space-separated-string-list special-use
9326 List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154.
9327 Valid values are @code{\All}, @code{\Archive}, @code{\Drafts},
9328 @code{\Flagged}, @code{\Junk}, @code{\Sent}, and @code{\Trash}.
9329 Defaults to @samp{()}.
9330 @end deftypevr
9331
9332 @end deftypevr
9333
9334 @end deftypevr
9335
9336 @deftypevr {@code{dovecot-configuration} parameter} file-name base-dir
9337 Base directory where to store runtime data.
9338 Defaults to @samp{"/var/run/dovecot/"}.
9339 @end deftypevr
9340
9341 @deftypevr {@code{dovecot-configuration} parameter} string login-greeting
9342 Greeting message for clients.
9343 Defaults to @samp{"Dovecot ready."}.
9344 @end deftypevr
9345
9346 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks
9347 List of trusted network ranges. Connections from these IPs are
9348 allowed to override their IP addresses and ports (for logging and for
9349 authentication checks). @samp{disable-plaintext-auth} is also ignored
9350 for these networks. Typically you would specify your IMAP proxy servers
9351 here.
9352 Defaults to @samp{()}.
9353 @end deftypevr
9354
9355 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets
9356 List of login access check sockets (e.g. tcpwrap).
9357 Defaults to @samp{()}.
9358 @end deftypevr
9359
9360 @deftypevr {@code{dovecot-configuration} parameter} boolean verbose-proctitle?
9361 Show more verbose process titles (in ps). Currently shows user name
9362 and IP address. Useful for seeing who is actually using the IMAP
9363 processes (e.g. shared mailboxes or if the same uid is used for multiple
9364 accounts).
9365 Defaults to @samp{#f}.
9366 @end deftypevr
9367
9368 @deftypevr {@code{dovecot-configuration} parameter} boolean shutdown-clients?
9369 Should all processes be killed when Dovecot master process shuts down.
9370 Setting this to @code{#f} means that Dovecot can be upgraded without
9371 forcing existing client connections to close (although that could also
9372 be a problem if the upgrade is e.g. due to a security fix).
9373 Defaults to @samp{#t}.
9374 @end deftypevr
9375
9376 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count
9377 If non-zero, run mail commands via this many connections to doveadm
9378 server, instead of running them directly in the same process.
9379 Defaults to @samp{0}.
9380 @end deftypevr
9381
9382 @deftypevr {@code{dovecot-configuration} parameter} string doveadm-socket-path
9383 UNIX socket or host:port used for connecting to doveadm server.
9384 Defaults to @samp{"doveadm-server"}.
9385 @end deftypevr
9386
9387 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list import-environment
9388 List of environment variables that are preserved on Dovecot startup
9389 and passed down to all of its child processes. You can also give
9390 key=value pairs to always set specific settings.
9391 @end deftypevr
9392
9393 @deftypevr {@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?
9394 Disable LOGIN command and all other plaintext authentications unless
9395 SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP
9396 matches the local IP (i.e. you're connecting from the same computer),
9397 the connection is considered secure and plaintext authentication is
9398 allowed. See also ssl=required setting.
9399 Defaults to @samp{#t}.
9400 @end deftypevr
9401
9402 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size
9403 Authentication cache size (e.g. @samp{#e10e6}). 0 means it's disabled.
9404 Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set
9405 for caching to be used.
9406 Defaults to @samp{0}.
9407 @end deftypevr
9408
9409 @deftypevr {@code{dovecot-configuration} parameter} string auth-cache-ttl
9410 Time to live for cached data. After TTL expires the cached record
9411 is no longer used, *except* if the main database lookup returns internal
9412 failure. We also try to handle password changes automatically: If
9413 user's previous authentication was successful, but this one wasn't, the
9414 cache isn't used. For now this works only with plaintext
9415 authentication.
9416 Defaults to @samp{"1 hour"}.
9417 @end deftypevr
9418
9419 @deftypevr {@code{dovecot-configuration} parameter} string auth-cache-negative-ttl
9420 TTL for negative hits (user not found, password mismatch).
9421 0 disables caching them completely.
9422 Defaults to @samp{"1 hour"}.
9423 @end deftypevr
9424
9425 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-realms
9426 List of realms for SASL authentication mechanisms that need them.
9427 You can leave it empty if you don't want to support multiple realms.
9428 Many clients simply use the first one listed here, so keep the default
9429 realm first.
9430 Defaults to @samp{()}.
9431 @end deftypevr
9432
9433 @deftypevr {@code{dovecot-configuration} parameter} string auth-default-realm
9434 Default realm/domain to use if none was specified. This is used for
9435 both SASL realms and appending @@domain to username in plaintext
9436 logins.
9437 Defaults to @samp{""}.
9438 @end deftypevr
9439
9440 @deftypevr {@code{dovecot-configuration} parameter} string auth-username-chars
9441 List of allowed characters in username. If the user-given username
9442 contains a character not listed in here, the login automatically fails.
9443 This is just an extra check to make sure user can't exploit any
9444 potential quote escaping vulnerabilities with SQL/LDAP databases. If
9445 you want to allow all characters, set this value to empty.
9446 Defaults to @samp{"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@"}.
9447 @end deftypevr
9448
9449 @deftypevr {@code{dovecot-configuration} parameter} string auth-username-translation
9450 Username character translations before it's looked up from
9451 databases. The value contains series of from -> to characters. For
9452 example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are
9453 translated to @samp{@@}.
9454 Defaults to @samp{""}.
9455 @end deftypevr
9456
9457 @deftypevr {@code{dovecot-configuration} parameter} string auth-username-format
9458 Username formatting before it's looked up from databases. You can
9459 use the standard variables here, e.g. %Lu would lowercase the username,
9460 %n would drop away the domain if it was given, or @samp{%n-AT-%d} would
9461 change the @samp{@@} into @samp{-AT-}. This translation is done after
9462 @samp{auth-username-translation} changes.
9463 Defaults to @samp{"%Lu"}.
9464 @end deftypevr
9465
9466 @deftypevr {@code{dovecot-configuration} parameter} string auth-master-user-separator
9467 If you want to allow master users to log in by specifying the master
9468 username within the normal username string (i.e. not using SASL
9469 mechanism's support for it), you can specify the separator character
9470 here. The format is then <username><separator><master username>.
9471 UW-IMAP uses @samp{*} as the separator, so that could be a good
9472 choice.
9473 Defaults to @samp{""}.
9474 @end deftypevr
9475
9476 @deftypevr {@code{dovecot-configuration} parameter} string auth-anonymous-username
9477 Username to use for users logging in with ANONYMOUS SASL
9478 mechanism.
9479 Defaults to @samp{"anonymous"}.
9480 @end deftypevr
9481
9482 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count
9483 Maximum number of dovecot-auth worker processes. They're used to
9484 execute blocking passdb and userdb queries (e.g. MySQL and PAM).
9485 They're automatically created and destroyed as needed.
9486 Defaults to @samp{30}.
9487 @end deftypevr
9488
9489 @deftypevr {@code{dovecot-configuration} parameter} string auth-gssapi-hostname
9490 Host name to use in GSSAPI principal names. The default is to use
9491 the name returned by gethostname(). Use @samp{$ALL} (with quotes) to
9492 allow all keytab entries.
9493 Defaults to @samp{""}.
9494 @end deftypevr
9495
9496 @deftypevr {@code{dovecot-configuration} parameter} string auth-krb5-keytab
9497 Kerberos keytab to use for the GSSAPI mechanism. Will use the
9498 system default (usually /etc/krb5.keytab) if not specified. You may
9499 need to change the auth service to run as root to be able to read this
9500 file.
9501 Defaults to @samp{""}.
9502 @end deftypevr
9503
9504 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-use-winbind?
9505 Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon
9506 and @samp{ntlm-auth} helper.
9507 <doc/wiki/Authentication/Mechanisms/Winbind.txt>.
9508 Defaults to @samp{#f}.
9509 @end deftypevr
9510
9511 @deftypevr {@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path
9512 Path for Samba's @samp{ntlm-auth} helper binary.
9513 Defaults to @samp{"/usr/bin/ntlm_auth"}.
9514 @end deftypevr
9515
9516 @deftypevr {@code{dovecot-configuration} parameter} string auth-failure-delay
9517 Time to delay before replying to failed authentications.
9518 Defaults to @samp{"2 secs"}.
9519 @end deftypevr
9520
9521 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?
9522 Require a valid SSL client certificate or the authentication
9523 fails.
9524 Defaults to @samp{#f}.
9525 @end deftypevr
9526
9527 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?
9528 Take the username from client's SSL certificate, using
9529 @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's
9530 CommonName.
9531 Defaults to @samp{#f}.
9532 @end deftypevr
9533
9534 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms
9535 List of wanted authentication mechanisms. Supported mechanisms are:
9536 @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5},
9537 @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi},
9538 @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also
9539 @samp{disable-plaintext-auth} setting.
9540 @end deftypevr
9541
9542 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-servers
9543 List of IPs or hostnames to all director servers, including ourself.
9544 Ports can be specified as ip:port. The default port is the same as what
9545 director service's @samp{inet-listener} is using.
9546 Defaults to @samp{()}.
9547 @end deftypevr
9548
9549 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers
9550 List of IPs or hostnames to all backend mail servers. Ranges are
9551 allowed too, like 10.0.0.10-10.0.0.30.
9552 Defaults to @samp{()}.
9553 @end deftypevr
9554
9555 @deftypevr {@code{dovecot-configuration} parameter} string director-user-expire
9556 How long to redirect users to a specific server after it no longer
9557 has any connections.
9558 Defaults to @samp{"15 min"}.
9559 @end deftypevr
9560
9561 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer director-doveadm-port
9562 TCP/IP port that accepts doveadm connections (instead of director
9563 connections) If you enable this, you'll also need to add
9564 @samp{inet-listener} for the port.
9565 Defaults to @samp{0}.
9566 @end deftypevr
9567
9568 @deftypevr {@code{dovecot-configuration} parameter} string director-username-hash
9569 How the username is translated before being hashed. Useful values
9570 include %Ln if user can log in with or without @@domain, %Ld if mailboxes
9571 are shared within domain.
9572 Defaults to @samp{"%Lu"}.
9573 @end deftypevr
9574
9575 @deftypevr {@code{dovecot-configuration} parameter} string log-path
9576 Log file to use for error messages. @samp{syslog} logs to syslog,
9577 @samp{/dev/stderr} logs to stderr.
9578 Defaults to @samp{"syslog"}.
9579 @end deftypevr
9580
9581 @deftypevr {@code{dovecot-configuration} parameter} string info-log-path
9582 Log file to use for informational messages. Defaults to
9583 @samp{log-path}.
9584 Defaults to @samp{""}.
9585 @end deftypevr
9586
9587 @deftypevr {@code{dovecot-configuration} parameter} string debug-log-path
9588 Log file to use for debug messages. Defaults to
9589 @samp{info-log-path}.
9590 Defaults to @samp{""}.
9591 @end deftypevr
9592
9593 @deftypevr {@code{dovecot-configuration} parameter} string syslog-facility
9594 Syslog facility to use if you're logging to syslog. Usually if you
9595 don't want to use @samp{mail}, you'll use local0..local7. Also other
9596 standard facilities are supported.
9597 Defaults to @samp{"mail"}.
9598 @end deftypevr
9599
9600 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose?
9601 Log unsuccessful authentication attempts and the reasons why they
9602 failed.
9603 Defaults to @samp{#f}.
9604 @end deftypevr
9605
9606 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose-passwords?
9607 In case of password mismatches, log the attempted password. Valid
9608 values are no, plain and sha1. sha1 can be useful for detecting brute
9609 force password attempts vs. user simply trying the same password over
9610 and over again. You can also truncate the value to n chars by appending
9611 ":n" (e.g. sha1:6).
9612 Defaults to @samp{#f}.
9613 @end deftypevr
9614
9615 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug?
9616 Even more verbose logging for debugging purposes. Shows for example
9617 SQL queries.
9618 Defaults to @samp{#f}.
9619 @end deftypevr
9620
9621 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug-passwords?
9622 In case of password mismatches, log the passwords and used scheme so
9623 the problem can be debugged. Enabling this also enables
9624 @samp{auth-debug}.
9625 Defaults to @samp{#f}.
9626 @end deftypevr
9627
9628 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-debug?
9629 Enable mail process debugging. This can help you figure out why
9630 Dovecot isn't finding your mails.
9631 Defaults to @samp{#f}.
9632 @end deftypevr
9633
9634 @deftypevr {@code{dovecot-configuration} parameter} boolean verbose-ssl?
9635 Show protocol level SSL errors.
9636 Defaults to @samp{#f}.
9637 @end deftypevr
9638
9639 @deftypevr {@code{dovecot-configuration} parameter} string log-timestamp
9640 Prefix for each line written to log file. % codes are in
9641 strftime(3) format.
9642 Defaults to @samp{"\"%b %d %H:%M:%S \""}.
9643 @end deftypevr
9644
9645 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements
9646 List of elements we want to log. The elements which have a
9647 non-empty variable value are joined together to form a comma-separated
9648 string.
9649 @end deftypevr
9650
9651 @deftypevr {@code{dovecot-configuration} parameter} string login-log-format
9652 Login log format. %s contains @samp{login-log-format-elements}
9653 string, %$ contains the data we want to log.
9654 Defaults to @samp{"%$: %s"}.
9655 @end deftypevr
9656
9657 @deftypevr {@code{dovecot-configuration} parameter} string mail-log-prefix
9658 Log prefix for mail processes. See doc/wiki/Variables.txt for list
9659 of possible variables you can use.
9660 Defaults to @samp{"\"%s(%u): \""}.
9661 @end deftypevr
9662
9663 @deftypevr {@code{dovecot-configuration} parameter} string deliver-log-format
9664 Format to use for logging mail deliveries. You can use variables:
9665 @table @code
9666 @item %$
9667 Delivery status message (e.g. @samp{saved to INBOX})
9668 @item %m
9669 Message-ID
9670 @item %s
9671 Subject
9672 @item %f
9673 From address
9674 @item %p
9675 Physical size
9676 @item %w
9677 Virtual size.
9678 @end table
9679 Defaults to @samp{"msgid=%m: %$"}.
9680 @end deftypevr
9681
9682 @deftypevr {@code{dovecot-configuration} parameter} string mail-location
9683 Location for users' mailboxes. The default is empty, which means
9684 that Dovecot tries to find the mailboxes automatically. This won't work
9685 if the user doesn't yet have any mail, so you should explicitly tell
9686 Dovecot the full location.
9687
9688 If you're using mbox, giving a path to the INBOX
9689 file (e.g. /var/mail/%u) isn't enough. You'll also need to tell Dovecot
9690 where the other mailboxes are kept. This is called the "root mail
9691 directory", and it must be the first path given in the
9692 @samp{mail-location} setting.
9693
9694 There are a few special variables you can use, eg.:
9695
9696 @table @samp
9697 @item %u
9698 username
9699 @item %n
9700 user part in user@@domain, same as %u if there's no domain
9701 @item %d
9702 domain part in user@@domain, empty if there's no domain
9703 @item %h
9704 home director
9705 @end table
9706
9707 See doc/wiki/Variables.txt for full list. Some examples:
9708 @table @samp
9709 @item maildir:~/Maildir
9710 @item mbox:~/mail:INBOX=/var/mail/%u
9711 @item mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%
9712 @end table
9713 Defaults to @samp{""}.
9714 @end deftypevr
9715
9716 @deftypevr {@code{dovecot-configuration} parameter} string mail-uid
9717 System user and group used to access mails. If you use multiple,
9718 userdb can override these by returning uid or gid fields. You can use
9719 either numbers or names. <doc/wiki/UserIds.txt>.
9720 Defaults to @samp{""}.
9721 @end deftypevr
9722
9723 @deftypevr {@code{dovecot-configuration} parameter} string mail-gid
9724
9725 Defaults to @samp{""}.
9726 @end deftypevr
9727
9728 @deftypevr {@code{dovecot-configuration} parameter} string mail-privileged-group
9729 Group to enable temporarily for privileged operations. Currently
9730 this is used only with INBOX when either its initial creation or
9731 dotlocking fails. Typically this is set to "mail" to give access to
9732 /var/mail.
9733 Defaults to @samp{""}.
9734 @end deftypevr
9735
9736 @deftypevr {@code{dovecot-configuration} parameter} string mail-access-groups
9737 Grant access to these supplementary groups for mail processes.
9738 Typically these are used to set up access to shared mailboxes. Note
9739 that it may be dangerous to set these if users can create
9740 symlinks (e.g. if "mail" group is set here, ln -s /var/mail ~/mail/var
9741 could allow a user to delete others' mailboxes, or ln -s
9742 /secret/shared/box ~/mail/mybox would allow reading it).
9743 Defaults to @samp{""}.
9744 @end deftypevr
9745
9746 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?
9747 Allow full file system access to clients. There's no access checks
9748 other than what the operating system does for the active UID/GID. It
9749 works with both maildir and mboxes, allowing you to prefix mailboxes
9750 names with e.g. /path/ or ~user/.
9751 Defaults to @samp{#f}.
9752 @end deftypevr
9753
9754 @deftypevr {@code{dovecot-configuration} parameter} boolean mmap-disable?
9755 Don't use mmap() at all. This is required if you store indexes to
9756 shared file systems (NFS or clustered file system).
9757 Defaults to @samp{#f}.
9758 @end deftypevr
9759
9760 @deftypevr {@code{dovecot-configuration} parameter} boolean dotlock-use-excl?
9761 Rely on @samp{O_EXCL} to work when creating dotlock files. NFS
9762 supports @samp{O_EXCL} since version 3, so this should be safe to use
9763 nowadays by default.
9764 Defaults to @samp{#t}.
9765 @end deftypevr
9766
9767 @deftypevr {@code{dovecot-configuration} parameter} string mail-fsync
9768 When to use fsync() or fdatasync() calls:
9769 @table @code
9770 @item optimized
9771 Whenever necessary to avoid losing important data
9772 @item always
9773 Useful with e.g. NFS when write()s are delayed
9774 @item never
9775 Never use it (best performance, but crashes can lose data).
9776 @end table
9777 Defaults to @samp{"optimized"}.
9778 @end deftypevr
9779
9780 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-storage?
9781 Mail storage exists in NFS. Set this to yes to make Dovecot flush
9782 NFS caches whenever needed. If you're using only a single mail server
9783 this isn't needed.
9784 Defaults to @samp{#f}.
9785 @end deftypevr
9786
9787 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-index?
9788 Mail index files also exist in NFS. Setting this to yes requires
9789 @samp{mmap-disable? #t} and @samp{fsync-disable? #f}.
9790 Defaults to @samp{#f}.
9791 @end deftypevr
9792
9793 @deftypevr {@code{dovecot-configuration} parameter} string lock-method
9794 Locking method for index files. Alternatives are fcntl, flock and
9795 dotlock. Dotlocking uses some tricks which may create more disk I/O
9796 than other locking methods. NFS users: flock doesn't work, remember to
9797 change @samp{mmap-disable}.
9798 Defaults to @samp{"fcntl"}.
9799 @end deftypevr
9800
9801 @deftypevr {@code{dovecot-configuration} parameter} file-name mail-temp-dir
9802 Directory in which LDA/LMTP temporarily stores incoming mails >128
9803 kB.
9804 Defaults to @samp{"/tmp"}.
9805 @end deftypevr
9806
9807 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid
9808 Valid UID range for users. This is mostly to make sure that users can't
9809 log in as daemons or other system users. Note that denying root logins is
9810 hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid}
9811 is set to 0.
9812 Defaults to @samp{500}.
9813 @end deftypevr
9814
9815 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid
9816
9817 Defaults to @samp{0}.
9818 @end deftypevr
9819
9820 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid
9821 Valid GID range for users. Users having non-valid GID as primary group ID
9822 aren't allowed to log in. If user belongs to supplementary groups with
9823 non-valid GIDs, those groups are not set.
9824 Defaults to @samp{1}.
9825 @end deftypevr
9826
9827 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid
9828
9829 Defaults to @samp{0}.
9830 @end deftypevr
9831
9832 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length
9833 Maximum allowed length for mail keyword name. It's only forced when
9834 trying to create new keywords.
9835 Defaults to @samp{50}.
9836 @end deftypevr
9837
9838 @deftypevr {@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs
9839 List of directories under which chrooting is allowed for mail
9840 processes (i.e. /var/mail will allow chrooting to /var/mail/foo/bar
9841 too). This setting doesn't affect @samp{login-chroot}
9842 @samp{mail-chroot} or auth chroot settings. If this setting is empty,
9843 "/./" in home dirs are ignored. WARNING: Never add directories here
9844 which local users can modify, that may lead to root exploit. Usually
9845 this should be done only if you don't allow shell access for users.
9846 <doc/wiki/Chrooting.txt>.
9847 Defaults to @samp{()}.
9848 @end deftypevr
9849
9850 @deftypevr {@code{dovecot-configuration} parameter} string mail-chroot
9851 Default chroot directory for mail processes. This can be overridden
9852 for specific users in user database by giving /./ in user's home
9853 directory (e.g. /home/./user chroots into /home). Note that usually
9854 there is no real need to do chrooting, Dovecot doesn't allow users to
9855 access files outside their mail directory anyway. If your home
9856 directories are prefixed with the chroot directory, append "/." to
9857 @samp{mail-chroot}. <doc/wiki/Chrooting.txt>.
9858 Defaults to @samp{""}.
9859 @end deftypevr
9860
9861 @deftypevr {@code{dovecot-configuration} parameter} file-name auth-socket-path
9862 UNIX socket path to master authentication server to find users.
9863 This is used by imap (for shared users) and lda.
9864 Defaults to @samp{"/var/run/dovecot/auth-userdb"}.
9865 @end deftypevr
9866
9867 @deftypevr {@code{dovecot-configuration} parameter} file-name mail-plugin-dir
9868 Directory where to look up mail plugins.
9869 Defaults to @samp{"/usr/lib/dovecot"}.
9870 @end deftypevr
9871
9872 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins
9873 List of plugins to load for all services. Plugins specific to IMAP,
9874 LDA, etc. are added to this list in their own .conf files.
9875 Defaults to @samp{()}.
9876 @end deftypevr
9877
9878 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count
9879 The minimum number of mails in a mailbox before updates are done to
9880 cache file. This allows optimizing Dovecot's behavior to do less disk
9881 writes at the cost of more disk reads.
9882 Defaults to @samp{0}.
9883 @end deftypevr
9884
9885 @deftypevr {@code{dovecot-configuration} parameter} string mailbox-idle-check-interval
9886 When IDLE command is running, mailbox is checked once in a while to
9887 see if there are any new mails or other changes. This setting defines
9888 the minimum time to wait between those checks. Dovecot can also use
9889 dnotify, inotify and kqueue to find out immediately when changes
9890 occur.
9891 Defaults to @samp{"30 secs"}.
9892 @end deftypevr
9893
9894 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-save-crlf?
9895 Save mails with CR+LF instead of plain LF. This makes sending those
9896 mails take less CPU, especially with sendfile() syscall with Linux and
9897 FreeBSD. But it also creates a bit more disk I/O which may just make it
9898 slower. Also note that if other software reads the mboxes/maildirs,
9899 they may handle the extra CRs wrong and cause problems.
9900 Defaults to @samp{#f}.
9901 @end deftypevr
9902
9903 @deftypevr {@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?
9904 By default LIST command returns all entries in maildir beginning
9905 with a dot. Enabling this option makes Dovecot return only entries
9906 which are directories. This is done by stat()ing each entry, so it
9907 causes more disk I/O.
9908 (For systems setting struct @samp{dirent->d_type} this check is free
9909 and it's done always regardless of this setting).
9910 Defaults to @samp{#f}.
9911 @end deftypevr
9912
9913 @deftypevr {@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?
9914 When copying a message, do it with hard links whenever possible.
9915 This makes the performance much better, and it's unlikely to have any
9916 side effects.
9917 Defaults to @samp{#t}.
9918 @end deftypevr
9919
9920 @deftypevr {@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?
9921 Assume Dovecot is the only MUA accessing Maildir: Scan cur/
9922 directory only when its mtime changes unexpectedly or when we can't find
9923 the mail otherwise.
9924 Defaults to @samp{#f}.
9925 @end deftypevr
9926
9927 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks
9928 Which locking methods to use for locking mbox. There are four
9929 available:
9930
9931 @table @code
9932 @item dotlock
9933 Create <mailbox>.lock file. This is the oldest and most NFS-safe
9934 solution. If you want to use /var/mail/ like directory, the users will
9935 need write access to that directory.
9936 @item dotlock-try
9937 Same as dotlock, but if it fails because of permissions or because there
9938 isn't enough disk space, just skip it.
9939 @item fcntl
9940 Use this if possible. Works with NFS too if lockd is used.
9941 @item flock
9942 May not exist in all systems. Doesn't work with NFS.
9943 @item lockf
9944 May not exist in all systems. Doesn't work with NFS.
9945 @end table
9946
9947 You can use multiple locking methods; if you do the order they're declared
9948 in is important to avoid deadlocks if other MTAs/MUAs are using multiple
9949 locking methods as well. Some operating systems don't allow using some of
9950 them simultaneously.
9951 @end deftypevr
9952
9953 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks
9954
9955 @end deftypevr
9956
9957 @deftypevr {@code{dovecot-configuration} parameter} string mbox-lock-timeout
9958 Maximum time to wait for lock (all of them) before aborting.
9959 Defaults to @samp{"5 mins"}.
9960 @end deftypevr
9961
9962 @deftypevr {@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout
9963 If dotlock exists but the mailbox isn't modified in any way,
9964 override the lock file after this much time.
9965 Defaults to @samp{"2 mins"}.
9966 @end deftypevr
9967
9968 @deftypevr {@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?
9969 When mbox changes unexpectedly we have to fully read it to find out
9970 what changed. If the mbox is large this can take a long time. Since
9971 the change is usually just a newly appended mail, it'd be faster to
9972 simply read the new mails. If this setting is enabled, Dovecot does
9973 this but still safely fallbacks to re-reading the whole mbox file
9974 whenever something in mbox isn't how it's expected to be. The only real
9975 downside to this setting is that if some other MUA changes message
9976 flags, Dovecot doesn't notice it immediately. Note that a full sync is
9977 done with SELECT, EXAMINE, EXPUNGE and CHECK commands.
9978 Defaults to @samp{#t}.
9979 @end deftypevr
9980
9981 @deftypevr {@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?
9982 Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT,
9983 EXAMINE, EXPUNGE or CHECK commands. If this is set,
9984 @samp{mbox-dirty-syncs} is ignored.
9985 Defaults to @samp{#f}.
9986 @end deftypevr
9987
9988 @deftypevr {@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?
9989 Delay writing mbox headers until doing a full write sync (EXPUNGE
9990 and CHECK commands and when closing the mailbox). This is especially
9991 useful for POP3 where clients often delete all mails. The downside is
9992 that our changes aren't immediately visible to other MUAs.
9993 Defaults to @samp{#t}.
9994 @end deftypevr
9995
9996 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size
9997 If mbox size is smaller than this (e.g. 100k), don't write index
9998 files. If an index file already exists it's still read, just not
9999 updated.
10000 Defaults to @samp{0}.
10001 @end deftypevr
10002
10003 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size
10004 Maximum dbox file size until it's rotated.
10005 Defaults to @samp{2000000}.
10006 @end deftypevr
10007
10008 @deftypevr {@code{dovecot-configuration} parameter} string mdbox-rotate-interval
10009 Maximum dbox file age until it's rotated. Typically in days. Day
10010 begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check
10011 disabled.
10012 Defaults to @samp{"1d"}.
10013 @end deftypevr
10014
10015 @deftypevr {@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?
10016 When creating new mdbox files, immediately preallocate their size to
10017 @samp{mdbox-rotate-size}. This setting currently works only in Linux
10018 with some file systems (ext4, xfs).
10019 Defaults to @samp{#f}.
10020 @end deftypevr
10021
10022 @deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-dir
10023 sdbox and mdbox support saving mail attachments to external files,
10024 which also allows single instance storage for them. Other backends
10025 don't support this for now.
10026
10027 WARNING: This feature hasn't been tested much yet. Use at your own risk.
10028
10029 Directory root where to store mail attachments. Disabled, if empty.
10030 Defaults to @samp{""}.
10031 @end deftypevr
10032
10033 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size
10034 Attachments smaller than this aren't saved externally. It's also
10035 possible to write a plugin to disable saving specific attachments
10036 externally.
10037 Defaults to @samp{128000}.
10038 @end deftypevr
10039
10040 @deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-fs
10041 File system backend to use for saving attachments:
10042 @table @code
10043 @item posix
10044 No SiS done by Dovecot (but this might help FS's own deduplication)
10045 @item sis posix
10046 SiS with immediate byte-by-byte comparison during saving
10047 @item sis-queue posix
10048 SiS with delayed comparison and deduplication.
10049 @end table
10050 Defaults to @samp{"sis posix"}.
10051 @end deftypevr
10052
10053 @deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-hash
10054 Hash format to use in attachment filenames. You can add any text and
10055 variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}},
10056 @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be
10057 truncated, e.g. @code{%@{sha256:80@}} returns only first 80 bits.
10058 Defaults to @samp{"%@{sha1@}"}.
10059 @end deftypevr
10060
10061 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-process-limit
10062
10063 Defaults to @samp{100}.
10064 @end deftypevr
10065
10066 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-client-limit
10067
10068 Defaults to @samp{1000}.
10069 @end deftypevr
10070
10071 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit
10072 Default VSZ (virtual memory size) limit for service processes.
10073 This is mainly intended to catch and kill processes that leak memory
10074 before they eat up everything.
10075 Defaults to @samp{256000000}.
10076 @end deftypevr
10077
10078 @deftypevr {@code{dovecot-configuration} parameter} string default-login-user
10079 Login user is internally used by login processes. This is the most
10080 untrusted user in Dovecot system. It shouldn't have access to anything
10081 at all.
10082 Defaults to @samp{"dovenull"}.
10083 @end deftypevr
10084
10085 @deftypevr {@code{dovecot-configuration} parameter} string default-internal-user
10086 Internal user is used by unprivileged processes. It should be
10087 separate from login user, so that login processes can't disturb other
10088 processes.
10089 Defaults to @samp{"dovecot"}.
10090 @end deftypevr
10091
10092 @deftypevr {@code{dovecot-configuration} parameter} string ssl?
10093 SSL/TLS support: yes, no, required. <doc/wiki/SSL.txt>.
10094 Defaults to @samp{"required"}.
10095 @end deftypevr
10096
10097 @deftypevr {@code{dovecot-configuration} parameter} string ssl-cert
10098 PEM encoded X.509 SSL/TLS certificate (public key).
10099 Defaults to @samp{"</etc/dovecot/default.pem"}.
10100 @end deftypevr
10101
10102 @deftypevr {@code{dovecot-configuration} parameter} string ssl-key
10103 PEM encoded SSL/TLS private key. The key is opened before
10104 dropping root privileges, so keep the key file unreadable by anyone but
10105 root.
10106 Defaults to @samp{"</etc/dovecot/private/default.pem"}.
10107 @end deftypevr
10108
10109 @deftypevr {@code{dovecot-configuration} parameter} string ssl-key-password
10110 If key file is password protected, give the password here.
10111 Alternatively give it when starting dovecot with -p parameter. Since
10112 this file is often world-readable, you may want to place this setting
10113 instead to a different.
10114 Defaults to @samp{""}.
10115 @end deftypevr
10116
10117 @deftypevr {@code{dovecot-configuration} parameter} string ssl-ca
10118 PEM encoded trusted certificate authority. Set this only if you
10119 intend to use @samp{ssl-verify-client-cert? #t}. The file should
10120 contain the CA certificate(s) followed by the matching
10121 CRL(s). (e.g. @samp{ssl-ca </etc/ssl/certs/ca.pem}).
10122 Defaults to @samp{""}.
10123 @end deftypevr
10124
10125 @deftypevr {@code{dovecot-configuration} parameter} boolean ssl-require-crl?
10126 Require that CRL check succeeds for client certificates.
10127 Defaults to @samp{#t}.
10128 @end deftypevr
10129
10130 @deftypevr {@code{dovecot-configuration} parameter} boolean ssl-verify-client-cert?
10131 Request client to send a certificate. If you also want to require
10132 it, set @samp{auth-ssl-require-client-cert? #t} in auth section.
10133 Defaults to @samp{#f}.
10134 @end deftypevr
10135
10136 @deftypevr {@code{dovecot-configuration} parameter} string ssl-cert-username-field
10137 Which field from certificate to use for username. commonName and
10138 x500UniqueIdentifier are the usual choices. You'll also need to set
10139 @samp{auth-ssl-username-from-cert? #t}.
10140 Defaults to @samp{"commonName"}.
10141 @end deftypevr
10142
10143 @deftypevr {@code{dovecot-configuration} parameter} hours ssl-parameters-regenerate
10144 How often to regenerate the SSL parameters file. Generation is
10145 quite CPU intensive operation. The value is in hours, 0 disables
10146 regeneration entirely.
10147 Defaults to @samp{168}.
10148 @end deftypevr
10149
10150 @deftypevr {@code{dovecot-configuration} parameter} string ssl-protocols
10151 SSL protocols to use.
10152 Defaults to @samp{"!SSLv2"}.
10153 @end deftypevr
10154
10155 @deftypevr {@code{dovecot-configuration} parameter} string ssl-cipher-list
10156 SSL ciphers to use.
10157 Defaults to @samp{"ALL:!LOW:!SSLv2:!EXP:!aNULL"}.
10158 @end deftypevr
10159
10160 @deftypevr {@code{dovecot-configuration} parameter} string ssl-crypto-device
10161 SSL crypto device to use, for valid values run "openssl engine".
10162 Defaults to @samp{""}.
10163 @end deftypevr
10164
10165 @deftypevr {@code{dovecot-configuration} parameter} string postmaster-address
10166 Address to use when sending rejection mails.
10167 %d expands to recipient domain.
10168 Defaults to @samp{"postmaster@@%d"}.
10169 @end deftypevr
10170
10171 @deftypevr {@code{dovecot-configuration} parameter} string hostname
10172 Hostname to use in various parts of sent mails (e.g. in Message-Id)
10173 and in LMTP replies. Default is the system's real hostname@@domain.
10174 Defaults to @samp{""}.
10175 @end deftypevr
10176
10177 @deftypevr {@code{dovecot-configuration} parameter} boolean quota-full-tempfail?
10178 If user is over quota, return with temporary failure instead of
10179 bouncing the mail.
10180 Defaults to @samp{#f}.
10181 @end deftypevr
10182
10183 @deftypevr {@code{dovecot-configuration} parameter} file-name sendmail-path
10184 Binary to use for sending mails.
10185 Defaults to @samp{"/usr/sbin/sendmail"}.
10186 @end deftypevr
10187
10188 @deftypevr {@code{dovecot-configuration} parameter} string submission-host
10189 If non-empty, send mails via this SMTP host[:port] instead of
10190 sendmail.
10191 Defaults to @samp{""}.
10192 @end deftypevr
10193
10194 @deftypevr {@code{dovecot-configuration} parameter} string rejection-subject
10195 Subject: header to use for rejection mails. You can use the same
10196 variables as for @samp{rejection-reason} below.
10197 Defaults to @samp{"Rejected: %s"}.
10198 @end deftypevr
10199
10200 @deftypevr {@code{dovecot-configuration} parameter} string rejection-reason
10201 Human readable error message for rejection mails. You can use
10202 variables:
10203
10204 @table @code
10205 @item %n
10206 CRLF
10207 @item %r
10208 reason
10209 @item %s
10210 original subject
10211 @item %t
10212 recipient
10213 @end table
10214 Defaults to @samp{"Your message to <%t> was automatically rejected:%n%r"}.
10215 @end deftypevr
10216
10217 @deftypevr {@code{dovecot-configuration} parameter} string recipient-delimiter
10218 Delimiter character between local-part and detail in email
10219 address.
10220 Defaults to @samp{"+"}.
10221 @end deftypevr
10222
10223 @deftypevr {@code{dovecot-configuration} parameter} string lda-original-recipient-header
10224 Header where the original recipient address (SMTP's RCPT TO:
10225 address) is taken from if not available elsewhere. With dovecot-lda -a
10226 parameter overrides this. A commonly used header for this is
10227 X-Original-To.
10228 Defaults to @samp{""}.
10229 @end deftypevr
10230
10231 @deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?
10232 Should saving a mail to a nonexistent mailbox automatically create
10233 it?.
10234 Defaults to @samp{#f}.
10235 @end deftypevr
10236
10237 @deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?
10238 Should automatically created mailboxes be also automatically
10239 subscribed?.
10240 Defaults to @samp{#f}.
10241 @end deftypevr
10242
10243 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length
10244 Maximum IMAP command line length. Some clients generate very long
10245 command lines with huge mailboxes, so you may need to raise this if you
10246 get "Too long argument" or "IMAP command line too large" errors
10247 often.
10248 Defaults to @samp{64000}.
10249 @end deftypevr
10250
10251 @deftypevr {@code{dovecot-configuration} parameter} string imap-logout-format
10252 IMAP logout format string:
10253 @table @code
10254 @item %i
10255 total number of bytes read from client
10256 @item %o
10257 total number of bytes sent to client.
10258 @end table
10259 Defaults to @samp{"in=%i out=%o"}.
10260 @end deftypevr
10261
10262 @deftypevr {@code{dovecot-configuration} parameter} string imap-capability
10263 Override the IMAP CAPABILITY response. If the value begins with '+',
10264 add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
10265 Defaults to @samp{""}.
10266 @end deftypevr
10267
10268 @deftypevr {@code{dovecot-configuration} parameter} string imap-idle-notify-interval
10269 How long to wait between "OK Still here" notifications when client
10270 is IDLEing.
10271 Defaults to @samp{"2 mins"}.
10272 @end deftypevr
10273
10274 @deftypevr {@code{dovecot-configuration} parameter} string imap-id-send
10275 ID field names and values to send to clients. Using * as the value
10276 makes Dovecot use the default value. The following fields have default
10277 values currently: name, version, os, os-version, support-url,
10278 support-email.
10279 Defaults to @samp{""}.
10280 @end deftypevr
10281
10282 @deftypevr {@code{dovecot-configuration} parameter} string imap-id-log
10283 ID fields sent by client to log. * means everything.
10284 Defaults to @samp{""}.
10285 @end deftypevr
10286
10287 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds
10288 Workarounds for various client bugs:
10289
10290 @table @code
10291 @item delay-newmail
10292 Send EXISTS/RECENT new mail notifications only when replying to NOOP and
10293 CHECK commands. Some clients ignore them otherwise, for example OSX
10294 Mail (<v2.1). Outlook Express breaks more badly though, without this it
10295 may show user "Message no longer in server" errors. Note that OE6
10296 still breaks even with this workaround if synchronization is set to
10297 "Headers Only".
10298
10299 @item tb-extra-mailbox-sep
10300 Thunderbird gets somehow confused with LAYOUT=fs (mbox and dbox) and
10301 adds extra @samp{/} suffixes to mailbox names. This option causes Dovecot to
10302 ignore the extra @samp{/} instead of treating it as invalid mailbox name.
10303
10304 @item tb-lsub-flags
10305 Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
10306 This makes Thunderbird realize they aren't selectable and show them
10307 greyed out, instead of only later giving "not selectable" popup error.
10308 @end table
10309 Defaults to @samp{()}.
10310 @end deftypevr
10311
10312 @deftypevr {@code{dovecot-configuration} parameter} string imap-urlauth-host
10313 Host allowed in URLAUTH URLs sent by client. "*" allows all.
10314 Defaults to @samp{""}.
10315 @end deftypevr
10316
10317
10318 Whew! Lots of configuration options. The nice thing about it though is
10319 that GuixSD has a complete interface to Dovecot's configuration
10320 language. This allows not only a nice way to declare configurations,
10321 but also offers reflective capabilities as well: users can write code to
10322 inspect and transform configurations from within Scheme.
10323
10324 However, it could be that you just want to get a @code{dovecot.conf} up
10325 and running. In that case, you can pass an
10326 @code{opaque-dovecot-configuration} as the @code{#:config} parameter to
10327 @code{dovecot-service}. As its name indicates, an opaque configuration
10328 does not have easy reflective capabilities.
10329
10330 Available @code{opaque-dovecot-configuration} fields are:
10331
10332 @deftypevr {@code{opaque-dovecot-configuration} parameter} package dovecot
10333 The dovecot package.
10334 @end deftypevr
10335
10336 @deftypevr {@code{opaque-dovecot-configuration} parameter} string string
10337 The contents of the @code{dovecot.conf}, as a string.
10338 @end deftypevr
10339
10340 For example, if your @code{dovecot.conf} is just the empty string, you
10341 could instantiate a dovecot service like this:
10342
10343 @example
10344 (dovecot-service #:config
10345 (opaque-dovecot-configuration
10346 (string "")))
10347 @end example
10348
10349 @node Web Services
10350 @subsubsection Web Services
10351
10352 The @code{(gnu services web)} module provides the following service:
10353
10354 @deffn {Scheme Procedure} nginx-service [#:nginx nginx] @
10355 [#:log-directory ``/var/log/nginx''] @
10356 [#:run-directory ``/var/run/nginx''] @
10357 [#:config-file]
10358
10359 Return a service that runs @var{nginx}, the nginx web server.
10360
10361 The nginx daemon loads its runtime configuration from @var{config-file}.
10362 Log files are written to @var{log-directory} and temporary runtime data
10363 files are written to @var{run-directory}. For proper operation, these
10364 arguments should match what is in @var{config-file} to ensure that the
10365 directories are created when the service is activated.
10366
10367 @end deffn
10368
10369 @node Miscellaneous Services
10370 @subsubsection Miscellaneous Services
10371
10372
10373 @subsubheading RPC Bind Service
10374 @cindex rpcbind
10375
10376 The @code{(gnu services nfs)} module provides the following:
10377
10378 @defvr {Scheme Variable} rpcbind-service-type
10379 A service type for the RPC portmapper daemon.
10380 @end defvr
10381
10382
10383 @deftp {Data Type} rpcbind-configuration
10384 Data type representing the configuration of the RPC Bind Service.
10385 This type has the following parameters:
10386 @table @asis
10387 @item @code{rpcbind} (default: @code{rpcbind})
10388 The rpcbind package to use.
10389
10390 @item @code{warm-start?} (default: @code{#t})
10391 If this parameter is @code{#t}, then the daemon will read a
10392 state file on startup thus reloading state information saved by a previous
10393 instance.
10394 @end table
10395 @end deftp
10396
10397 @cindex lirc
10398 @subsubheading Lirc Service
10399
10400 The @code{(gnu services lirc)} module provides the following service.
10401
10402 @deffn {Scheme Procedure} lirc-service [#:lirc lirc] @
10403 [#:device #f] [#:driver #f] [#:config-file #f] @
10404 [#:extra-options '()]
10405 Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that
10406 decodes infrared signals from remote controls.
10407
10408 Optionally, @var{device}, @var{driver} and @var{config-file}
10409 (configuration file name) may be specified. See @command{lircd} manual
10410 for details.
10411
10412 Finally, @var{extra-options} is a list of additional command-line options
10413 passed to @command{lircd}.
10414 @end deffn
10415
10416 @cindex spice
10417 @subsubheading Spice Service
10418
10419 The @code{(gnu services spice)} module provides the following service.
10420
10421 @deffn {Scheme Procedure} spice-vdagent-service [#:spice-vdagent]
10422 Returns a service that runs @url{http://www.spice-space.org,VDAGENT}, a daemon
10423 that enables sharing the clipboard with a vm and setting the guest display
10424 resolution when the graphical console window resizes.
10425 @end deffn
10426
10427 @subsubsection Dictionary Services
10428 The @code{(gnu services dict)} module provides the following service:
10429
10430 @deffn {Scheme Procedure} dicod-service [#:config (dicod-configuration)]
10431 Return a service that runs the @command{dicod} daemon, an implementation
10432 of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual}).
10433
10434 The optional @var{config} argument specifies the configuration for
10435 @command{dicod}, which should be a @code{<dicod-configuration>} object, by
10436 default it serves the GNU Collaborative International Dictonary of English.
10437
10438 You can add @command{open localhost} to your @file{~/.dico} file to make
10439 @code{localhost} the default server for @command{dico} client
10440 (@pxref{Initialization File,,, dico, GNU Dico Manual}).
10441 @end deffn
10442
10443 @deftp {Data Type} dicod-configuration
10444 Data type representing the configuration of dicod.
10445
10446 @table @asis
10447 @item @code{dico} (default: @var{dico})
10448 Package object of the GNU Dico dictionary server.
10449
10450 @item @code{interfaces} (default: @var{'("localhost")})
10451 This is the list of IP addresses and ports and possibly socket file
10452 names to listen to (@pxref{Server Settings, @code{listen} directive,,
10453 dico, GNU Dico Manual}).
10454
10455 @item @code{databases} (default: @var{(list %dicod-database:gcide)})
10456 List of @code{<dicod-database>} objects denoting dictionaries to be served.
10457 @end table
10458 @end deftp
10459
10460 @deftp {Data Type} dicod-database
10461 Data type representing a dictionary database.
10462
10463 @table @asis
10464 @item @code{name}
10465 Name of the database, will be used in DICT commands.
10466
10467 @item @code{module}
10468 Name of the dicod module used by this database
10469 (@pxref{Modules,,, dico, GNU Dico Manual}).
10470
10471 @item @code{options}
10472 List of strings or gexps representing the arguments for the module handler
10473 (@pxref{Handlers,,, dico, GNU Dico Manual}).
10474 @end table
10475 @end deftp
10476
10477 @defvr {Scheme Variable} %dicod-database:gcide
10478 A @code{<dicod-database>} object serving the GNU Collaborative International
10479 Dictonary of English using the @code{gcide} package.
10480 @end defvr
10481
10482 @node Setuid Programs
10483 @subsection Setuid Programs
10484
10485 @cindex setuid programs
10486 Some programs need to run with ``root'' privileges, even when they are
10487 launched by unprivileged users. A notorious example is the
10488 @command{passwd} program, which users can run to change their
10489 password, and which needs to access the @file{/etc/passwd} and
10490 @file{/etc/shadow} files---something normally restricted to root, for
10491 obvious security reasons. To address that, these executables are
10492 @dfn{setuid-root}, meaning that they always run with root privileges
10493 (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual},
10494 for more info about the setuid mechanism.)
10495
10496 The store itself @emph{cannot} contain setuid programs: that would be a
10497 security issue since any user on the system can write derivations that
10498 populate the store (@pxref{The Store}). Thus, a different mechanism is
10499 used: instead of changing the setuid bit directly on files that are in
10500 the store, we let the system administrator @emph{declare} which programs
10501 should be setuid root.
10502
10503 The @code{setuid-programs} field of an @code{operating-system}
10504 declaration contains a list of G-expressions denoting the names of
10505 programs to be setuid-root (@pxref{Using the Configuration System}).
10506 For instance, the @command{passwd} program, which is part of the Shadow
10507 package, can be designated by this G-expression (@pxref{G-Expressions}):
10508
10509 @example
10510 #~(string-append #$shadow "/bin/passwd")
10511 @end example
10512
10513 A default set of setuid programs is defined by the
10514 @code{%setuid-programs} variable of the @code{(gnu system)} module.
10515
10516 @defvr {Scheme Variable} %setuid-programs
10517 A list of G-expressions denoting common programs that are setuid-root.
10518
10519 The list includes commands such as @command{passwd}, @command{ping},
10520 @command{su}, and @command{sudo}.
10521 @end defvr
10522
10523 Under the hood, the actual setuid programs are created in the
10524 @file{/run/setuid-programs} directory at system activation time. The
10525 files in this directory refer to the ``real'' binaries, which are in the
10526 store.
10527
10528 @node X.509 Certificates
10529 @subsection X.509 Certificates
10530
10531 @cindex HTTPS, certificates
10532 @cindex X.509 certificates
10533 @cindex TLS
10534 Web servers available over HTTPS (that is, HTTP over the transport-layer
10535 security mechanism, TLS) send client programs an @dfn{X.509 certificate}
10536 that the client can then use to @emph{authenticate} the server. To do
10537 that, clients verify that the server's certificate is signed by a
10538 so-called @dfn{certificate authority} (CA). But to verify the CA's
10539 signature, clients must have first acquired the CA's certificate.
10540
10541 Web browsers such as GNU@tie{}IceCat include their own set of CA
10542 certificates, such that they are able to verify CA signatures
10543 out-of-the-box.
10544
10545 However, most other programs that can talk HTTPS---@command{wget},
10546 @command{git}, @command{w3m}, etc.---need to be told where CA
10547 certificates can be found.
10548
10549 @cindex @code{nss-certs}
10550 In GuixSD, this is done by adding a package that provides certificates
10551 to the @code{packages} field of the @code{operating-system} declaration
10552 (@pxref{operating-system Reference}). GuixSD includes one such package,
10553 @code{nss-certs}, which is a set of CA certificates provided as part of
10554 Mozilla's Network Security Services.
10555
10556 Note that it is @emph{not} part of @var{%base-packages}, so you need to
10557 explicitly add it. The @file{/etc/ssl/certs} directory, which is where
10558 most applications and libraries look for certificates by default, points
10559 to the certificates installed globally.
10560
10561 Unprivileged users, including users of Guix on a foreign distro,
10562 can also install their own certificate package in
10563 their profile. A number of environment variables need to be defined so
10564 that applications and libraries know where to find them. Namely, the
10565 OpenSSL library honors the @code{SSL_CERT_DIR} and @code{SSL_CERT_FILE}
10566 variables. Some applications add their own environment variables; for
10567 instance, the Git version control system honors the certificate bundle
10568 pointed to by the @code{GIT_SSL_CAINFO} environment variable. Thus, you
10569 would typically run something like:
10570
10571 @example
10572 $ guix package -i nss-certs
10573 $ export SSL_CERT_DIR="$HOME/.guix-profile/etc/ssl/certs"
10574 $ export SSL_CERT_FILE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt"
10575 $ export GIT_SSL_CAINFO="$SSL_CERT_FILE"
10576 @end example
10577
10578 @node Name Service Switch
10579 @subsection Name Service Switch
10580
10581 @cindex name service switch
10582 @cindex NSS
10583 The @code{(gnu system nss)} module provides bindings to the
10584 configuration file of the libc @dfn{name service switch} or @dfn{NSS}
10585 (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference
10586 Manual}). In a nutshell, the NSS is a mechanism that allows libc to be
10587 extended with new ``name'' lookup methods for system databases, which
10588 includes host names, service names, user accounts, and more (@pxref{Name
10589 Service Switch, System Databases and Name Service Switch,, libc, The GNU
10590 C Library Reference Manual}).
10591
10592 The NSS configuration specifies, for each system database, which lookup
10593 method is to be used, and how the various methods are chained
10594 together---for instance, under which circumstances NSS should try the
10595 next method in the list. The NSS configuration is given in the
10596 @code{name-service-switch} field of @code{operating-system} declarations
10597 (@pxref{operating-system Reference, @code{name-service-switch}}).
10598
10599 @cindex nss-mdns
10600 @cindex .local, host name lookup
10601 As an example, the declaration below configures the NSS to use the
10602 @uref{http://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns}
10603 back-end}, which supports host name lookups over multicast DNS (mDNS)
10604 for host names ending in @code{.local}:
10605
10606 @example
10607 (name-service-switch
10608 (hosts (list %files ;first, check /etc/hosts
10609
10610 ;; If the above did not succeed, try
10611 ;; with 'mdns_minimal'.
10612 (name-service
10613 (name "mdns_minimal")
10614
10615 ;; 'mdns_minimal' is authoritative for
10616 ;; '.local'. When it returns "not found",
10617 ;; no need to try the next methods.
10618 (reaction (lookup-specification
10619 (not-found => return))))
10620
10621 ;; Then fall back to DNS.
10622 (name-service
10623 (name "dns"))
10624
10625 ;; Finally, try with the "full" 'mdns'.
10626 (name-service
10627 (name "mdns")))))
10628 @end example
10629
10630 Do not worry: the @code{%mdns-host-lookup-nss} variable (see below)
10631 contains this configuration, so you will not have to type it if all you
10632 want is to have @code{.local} host lookup working.
10633
10634 Note that, in this case, in addition to setting the
10635 @code{name-service-switch} of the @code{operating-system} declaration,
10636 you also need to use @code{avahi-service} (@pxref{Networking Services,
10637 @code{avahi-service}}), or @var{%desktop-services}, which includes it
10638 (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible
10639 to the name service cache daemon (@pxref{Base Services,
10640 @code{nscd-service}}).
10641
10642 For convenience, the following variables provide typical NSS
10643 configurations.
10644
10645 @defvr {Scheme Variable} %default-nss
10646 This is the default name service switch configuration, a
10647 @code{name-service-switch} object.
10648 @end defvr
10649
10650 @defvr {Scheme Variable} %mdns-host-lookup-nss
10651 This is the name service switch configuration with support for host name
10652 lookup over multicast DNS (mDNS) for host names ending in @code{.local}.
10653 @end defvr
10654
10655 The reference for name service switch configuration is given below. It
10656 is a direct mapping of the configuration file format of the C library , so
10657 please refer to the C library manual for more information (@pxref{NSS
10658 Configuration File,,, libc, The GNU C Library Reference Manual}).
10659 Compared to the configuration file format of libc NSS, it has the advantage
10660 not only of adding this warm parenthetic feel that we like, but also
10661 static checks: you will know about syntax errors and typos as soon as you
10662 run @command{guix system}.
10663
10664 @deftp {Data Type} name-service-switch
10665
10666 This is the data type representation the configuration of libc's name
10667 service switch (NSS). Each field below represents one of the supported
10668 system databases.
10669
10670 @table @code
10671 @item aliases
10672 @itemx ethers
10673 @itemx group
10674 @itemx gshadow
10675 @itemx hosts
10676 @itemx initgroups
10677 @itemx netgroup
10678 @itemx networks
10679 @itemx password
10680 @itemx public-key
10681 @itemx rpc
10682 @itemx services
10683 @itemx shadow
10684 The system databases handled by the NSS. Each of these fields must be a
10685 list of @code{<name-service>} objects (see below).
10686 @end table
10687 @end deftp
10688
10689 @deftp {Data Type} name-service
10690
10691 This is the data type representing an actual name service and the
10692 associated lookup action.
10693
10694 @table @code
10695 @item name
10696 A string denoting the name service (@pxref{Services in the NSS
10697 configuration,,, libc, The GNU C Library Reference Manual}).
10698
10699 Note that name services listed here must be visible to nscd. This is
10700 achieved by passing the @code{#:name-services} argument to
10701 @code{nscd-service} the list of packages providing the needed name
10702 services (@pxref{Base Services, @code{nscd-service}}).
10703
10704 @item reaction
10705 An action specified using the @code{lookup-specification} macro
10706 (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library
10707 Reference Manual}). For example:
10708
10709 @example
10710 (lookup-specification (unavailable => continue)
10711 (success => return))
10712 @end example
10713 @end table
10714 @end deftp
10715
10716 @node Initial RAM Disk
10717 @subsection Initial RAM Disk
10718
10719 @cindex initial RAM disk (initrd)
10720 @cindex initrd (initial RAM disk)
10721 For bootstrapping purposes, the Linux-Libre kernel is passed an
10722 @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary
10723 root file system as well as an initialization script. The latter is
10724 responsible for mounting the real root file system, and for loading any
10725 kernel modules that may be needed to achieve that.
10726
10727 The @code{initrd} field of an @code{operating-system} declaration allows
10728 you to specify which initrd you would like to use. The @code{(gnu
10729 system linux-initrd)} module provides two ways to build an initrd: the
10730 high-level @code{base-initrd} procedure, and the low-level
10731 @code{expression->initrd} procedure.
10732
10733 The @code{base-initrd} procedure is intended to cover most common uses.
10734 For example, if you want to add a bunch of kernel modules to be loaded
10735 at boot time, you can define the @code{initrd} field of the operating
10736 system declaration like this:
10737
10738 @example
10739 (initrd (lambda (file-systems . rest)
10740 ;; Create a standard initrd that has modules "foo.ko"
10741 ;; and "bar.ko", as well as their dependencies, in
10742 ;; addition to the modules available by default.
10743 (apply base-initrd file-systems
10744 #:extra-modules '("foo" "bar")
10745 rest)))
10746 @end example
10747
10748 The @code{base-initrd} procedure also handles common use cases that
10749 involves using the system as a QEMU guest, or as a ``live'' system with
10750 volatile root file system.
10751
10752 The initial RAM disk produced by @code{base-initrd} honors several
10753 options passed on the Linux kernel command line (that is, arguments
10754 passed @i{via} the @code{linux} command of GRUB, or the
10755 @code{-append} option) of QEMU, notably:
10756
10757 @table @code
10758 @item --load=@var{boot}
10759 Tell the initial RAM disk to load @var{boot}, a file containing a Scheme
10760 program, once it has mounted the root file system.
10761
10762 GuixSD uses this option to yield control to a boot program that runs the
10763 service activation programs and then spawns the GNU@tie{}Shepherd, the
10764 initialization system.
10765
10766 @item --root=@var{root}
10767 Mount @var{root} as the root file system. @var{root} can be a
10768 device name like @code{/dev/sda1}, a partition label, or a partition
10769 UUID.
10770
10771 @item --system=@var{system}
10772 Have @file{/run/booted-system} and @file{/run/current-system} point to
10773 @var{system}.
10774
10775 @item modprobe.blacklist=@var{modules}@dots{}
10776 @cindex module, black-listing
10777 @cindex black list, of kernel modules
10778 Instruct the initial RAM disk as well as the @command{modprobe} command
10779 (from the kmod package) to refuse to load @var{modules}. @var{modules}
10780 must be a comma-separated list of module names---e.g.,
10781 @code{usbkbd,9pnet}.
10782
10783 @item --repl
10784 Start a read-eval-print loop (REPL) from the initial RAM disk before it
10785 tries to load kernel modules and to mount the root file system. Our
10786 marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will
10787 love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference
10788 Manual}, for more information on Guile's REPL.
10789
10790 @end table
10791
10792 Now that you know all the features that initial RAM disks produced by
10793 @code{base-initrd} provide, here is how to use it and customize it
10794 further.
10795
10796 @deffn {Monadic Procedure} base-initrd @var{file-systems} @
10797 [#:qemu-networking? #f] [#:virtio? #t] [#:volatile-root? #f] @
10798 [#:extra-modules '()] [#:mapped-devices '()]
10799 Return a monadic derivation that builds a generic initrd. @var{file-systems} is
10800 a list of file systems to be mounted by the initrd, possibly in addition to
10801 the root file system specified on the kernel command line via @code{--root}.
10802 @var{mapped-devices} is a list of device mappings to realize before
10803 @var{file-systems} are mounted (@pxref{Mapped Devices}).
10804
10805 When @var{qemu-networking?} is true, set up networking with the standard QEMU
10806 parameters. When @var{virtio?} is true, load additional modules so that the
10807 initrd can be used as a QEMU guest with para-virtualized I/O drivers.
10808
10809 When @var{volatile-root?} is true, the root file system is writable but any changes
10810 to it are lost.
10811
10812 The initrd is automatically populated with all the kernel modules necessary
10813 for @var{file-systems} and for the given options. However, additional kernel
10814 modules can be listed in @var{extra-modules}. They will be added to the initrd, and
10815 loaded at boot time in the order in which they appear.
10816 @end deffn
10817
10818 Needless to say, the initrds we produce and use embed a
10819 statically-linked Guile, and the initialization program is a Guile
10820 program. That gives a lot of flexibility. The
10821 @code{expression->initrd} procedure builds such an initrd, given the
10822 program to run in that initrd.
10823
10824 @deffn {Monadic Procedure} expression->initrd @var{exp} @
10825 [#:guile %guile-static-stripped] [#:name "guile-initrd"]
10826 Return a derivation that builds a Linux initrd (a gzipped cpio archive)
10827 containing @var{guile} and that evaluates @var{exp}, a G-expression,
10828 upon booting. All the derivations referenced by @var{exp} are
10829 automatically copied to the initrd.
10830 @end deffn
10831
10832 @node GRUB Configuration
10833 @subsection GRUB Configuration
10834
10835 @cindex GRUB
10836 @cindex boot loader
10837
10838 The operating system uses GNU@tie{}GRUB as its boot loader
10839 (@pxref{Overview, overview of GRUB,, grub, GNU GRUB Manual}). It is
10840 configured using a @code{grub-configuration} declaration. This data type
10841 is exported by the @code{(gnu system grub)} module and described below.
10842
10843 @deftp {Data Type} grub-configuration
10844 The type of a GRUB configuration declaration.
10845
10846 @table @asis
10847
10848 @item @code{device}
10849 This is a string denoting the boot device. It must be a device name
10850 understood by the @command{grub-install} command, such as
10851 @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub,
10852 GNU GRUB Manual}).
10853
10854 @item @code{menu-entries} (default: @code{()})
10855 A possibly empty list of @code{menu-entry} objects (see below), denoting
10856 entries to appear in the GRUB boot menu, in addition to the current
10857 system entry and the entry pointing to previous system generations.
10858
10859 @item @code{default-entry} (default: @code{0})
10860 The index of the default boot menu entry. Index 0 is for the entry of the
10861 current system.
10862
10863 @item @code{timeout} (default: @code{5})
10864 The number of seconds to wait for keyboard input before booting. Set to
10865 0 to boot immediately, and to -1 to wait indefinitely.
10866
10867 @item @code{theme} (default: @var{%default-theme})
10868 The @code{grub-theme} object describing the theme to use.
10869 @end table
10870
10871 @end deftp
10872
10873 @cindex dual boot
10874 @cindex boot menu
10875 Should you want to list additional boot menu entries @i{via} the
10876 @code{menu-entries} field above, you will need to create them with the
10877 @code{menu-entry} form. For example, imagine you want to be able to
10878 boot another distro (hard to imagine!), you can define a menu entry
10879 along these lines:
10880
10881 @example
10882 (menu-entry
10883 (label "The Other Distro")
10884 (linux "/boot/old/vmlinux-2.6.32")
10885 (linux-arguments '("root=/dev/sda2"))
10886 (initrd "/boot/old/initrd"))
10887 @end example
10888
10889 Details below.
10890
10891 @deftp {Data Type} menu-entry
10892 The type of an entry in the GRUB boot menu.
10893
10894 @table @asis
10895
10896 @item @code{label}
10897 The label to show in the menu---e.g., @code{"GNU"}.
10898
10899 @item @code{linux}
10900 The Linux kernel image to boot, for example:
10901
10902 @example
10903 (file-append linux-libre "/bzImage")
10904 @end example
10905
10906 @item @code{linux-arguments} (default: @code{()})
10907 The list of extra Linux kernel command-line arguments---e.g.,
10908 @code{("console=ttyS0")}.
10909
10910 @item @code{initrd}
10911 A G-Expression or string denoting the file name of the initial RAM disk
10912 to use (@pxref{G-Expressions}).
10913
10914 @end table
10915 @end deftp
10916
10917 @c FIXME: Write documentation once it's stable.
10918 Themes are created using the @code{grub-theme} form, which is not
10919 documented yet.
10920
10921 @defvr {Scheme Variable} %default-theme
10922 This is the default GRUB theme used by the operating system, with a
10923 fancy background image displaying the GNU and Guix logos.
10924 @end defvr
10925
10926
10927 @node Invoking guix system
10928 @subsection Invoking @code{guix system}
10929
10930 Once you have written an operating system declaration as seen in the
10931 previous section, it can be @dfn{instantiated} using the @command{guix
10932 system} command. The synopsis is:
10933
10934 @example
10935 guix system @var{options}@dots{} @var{action} @var{file}
10936 @end example
10937
10938 @var{file} must be the name of a file containing an
10939 @code{operating-system} declaration. @var{action} specifies how the
10940 operating system is instantiated. Currently the following values are
10941 supported:
10942
10943 @table @code
10944 @item reconfigure
10945 Build the operating system described in @var{file}, activate it, and
10946 switch to it@footnote{This action is usable only on systems already
10947 running GuixSD.}.
10948
10949 This effects all the configuration specified in @var{file}: user
10950 accounts, system services, global package list, setuid programs, etc.
10951 The command starts system services specified in @var{file} that are not
10952 currently running; if a service is currently running, it does not
10953 attempt to upgrade it since this would not be possible without stopping it
10954 first.
10955
10956 It also adds a GRUB menu entry for the new OS configuration, and moves
10957 entries for older configurations to a submenu---unless
10958 @option{--no-grub} is passed.
10959
10960 @quotation Note
10961 @c The paragraph below refers to the problem discussed at
10962 @c <http://lists.gnu.org/archive/html/guix-devel/2014-08/msg00057.html>.
10963 It is highly recommended to run @command{guix pull} once before you run
10964 @command{guix system reconfigure} for the first time (@pxref{Invoking
10965 guix pull}). Failing to do that you would see an older version of Guix
10966 once @command{reconfigure} has completed.
10967 @end quotation
10968
10969 @item build
10970 Build the derivation of the operating system, which includes all the
10971 configuration files and programs needed to boot and run the system.
10972 This action does not actually install anything.
10973
10974 @item init
10975 Populate the given directory with all the files necessary to run the
10976 operating system specified in @var{file}. This is useful for first-time
10977 installations of GuixSD. For instance:
10978
10979 @example
10980 guix system init my-os-config.scm /mnt
10981 @end example
10982
10983 copies to @file{/mnt} all the store items required by the configuration
10984 specified in @file{my-os-config.scm}. This includes configuration
10985 files, packages, and so on. It also creates other essential files
10986 needed for the system to operate correctly---e.g., the @file{/etc},
10987 @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file.
10988
10989 This command also installs GRUB on the device specified in
10990 @file{my-os-config}, unless the @option{--no-grub} option was passed.
10991
10992 @item vm
10993 @cindex virtual machine
10994 @cindex VM
10995 @anchor{guix system vm}
10996 Build a virtual machine that contains the operating system declared in
10997 @var{file}, and return a script to run that virtual machine (VM).
10998 Arguments given to the script are passed to QEMU.
10999
11000 The VM shares its store with the host system.
11001
11002 Additional file systems can be shared between the host and the VM using
11003 the @code{--share} and @code{--expose} command-line options: the former
11004 specifies a directory to be shared with write access, while the latter
11005 provides read-only access to the shared directory.
11006
11007 The example below creates a VM in which the user's home directory is
11008 accessible read-only, and where the @file{/exchange} directory is a
11009 read-write mapping of @file{$HOME/tmp} on the host:
11010
11011 @example
11012 guix system vm my-config.scm \
11013 --expose=$HOME --share=$HOME/tmp=/exchange
11014 @end example
11015
11016 On GNU/Linux, the default is to boot directly to the kernel; this has
11017 the advantage of requiring only a very tiny root disk image since the
11018 store of the host can then be mounted.
11019
11020 The @code{--full-boot} option forces a complete boot sequence, starting
11021 with the bootloader. This requires more disk space since a root image
11022 containing at least the kernel, initrd, and bootloader data files must
11023 be created. The @code{--image-size} option can be used to specify the
11024 size of the image.
11025
11026 @item vm-image
11027 @itemx disk-image
11028 Return a virtual machine or disk image of the operating system declared
11029 in @var{file} that stands alone. Use the @option{--image-size} option
11030 to specify the size of the image.
11031
11032 When using @code{vm-image}, the returned image is in qcow2 format, which
11033 the QEMU emulator can efficiently use. @xref{Running GuixSD in a VM},
11034 for more information on how to run the image in a virtual machine.
11035
11036 When using @code{disk-image}, a raw disk image is produced; it can be
11037 copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is
11038 the device corresponding to a USB stick, one can copy the image to it
11039 using the following command:
11040
11041 @example
11042 # dd if=$(guix system disk-image my-os.scm) of=/dev/sdc
11043 @end example
11044
11045 @item container
11046 Return a script to run the operating system declared in @var{file}
11047 within a container. Containers are a set of lightweight isolation
11048 mechanisms provided by the kernel Linux-libre. Containers are
11049 substantially less resource-demanding than full virtual machines since
11050 the kernel, shared objects, and other resources can be shared with the
11051 host system; this also means they provide thinner isolation.
11052
11053 Currently, the script must be run as root in order to support more than
11054 a single user and group. The container shares its store with the host
11055 system.
11056
11057 As with the @code{vm} action (@pxref{guix system vm}), additional file
11058 systems to be shared between the host and container can be specified
11059 using the @option{--share} and @option{--expose} options:
11060
11061 @example
11062 guix system container my-config.scm \
11063 --expose=$HOME --share=$HOME/tmp=/exchange
11064 @end example
11065
11066 @quotation Note
11067 This option requires Linux-libre 3.19 or newer.
11068 @end quotation
11069
11070 @end table
11071
11072 @var{options} can contain any of the common build options (@pxref{Common
11073 Build Options}). In addition, @var{options} can contain one of the
11074 following:
11075
11076 @table @option
11077 @item --system=@var{system}
11078 @itemx -s @var{system}
11079 Attempt to build for @var{system} instead of the host system type.
11080 This works as per @command{guix build} (@pxref{Invoking guix build}).
11081
11082 @item --derivation
11083 @itemx -d
11084 Return the derivation file name of the given operating system without
11085 building anything.
11086
11087 @item --image-size=@var{size}
11088 For the @code{vm-image} and @code{disk-image} actions, create an image
11089 of the given @var{size}. @var{size} may be a number of bytes, or it may
11090 include a unit as a suffix (@pxref{Block size, size specifications,,
11091 coreutils, GNU Coreutils}).
11092
11093 @item --on-error=@var{strategy}
11094 Apply @var{strategy} when an error occurs when reading @var{file}.
11095 @var{strategy} may be one of the following:
11096
11097 @table @code
11098 @item nothing-special
11099 Report the error concisely and exit. This is the default strategy.
11100
11101 @item backtrace
11102 Likewise, but also display a backtrace.
11103
11104 @item debug
11105 Report the error and enter Guile's debugger. From there, you can run
11106 commands such as @code{,bt} to get a backtrace, @code{,locals} to
11107 display local variable values, and more generally inspect the state of the
11108 program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for
11109 a list of available debugging commands.
11110 @end table
11111 @end table
11112
11113 @quotation Note
11114 All the actions above, except @code{build} and @code{init},
11115 can use KVM support in the Linux-libre kernel. Specifically, if the
11116 machine has hardware virtualization support, the corresponding
11117 KVM kernel module should be loaded, and the @file{/dev/kvm} device node
11118 must exist and be readable and writable by the user and by the
11119 build users of the daemon (@pxref{Build Environment Setup}).
11120 @end quotation
11121
11122 Once you have built, configured, re-configured, and re-re-configured
11123 your GuixSD installation, you may find it useful to list the operating
11124 system generations available on disk---and that you can choose from the
11125 GRUB boot menu:
11126
11127 @table @code
11128
11129 @item list-generations
11130 List a summary of each generation of the operating system available on
11131 disk, in a human-readable way. This is similar to the
11132 @option{--list-generations} option of @command{guix package}
11133 (@pxref{Invoking guix package}).
11134
11135 Optionally, one can specify a pattern, with the same syntax that is used
11136 in @command{guix package --list-generations}, to restrict the list of
11137 generations displayed. For instance, the following command displays
11138 generations that are up to 10 days old:
11139
11140 @example
11141 $ guix system list-generations 10d
11142 @end example
11143
11144 @end table
11145
11146 The @command{guix system} command has even more to offer! The following
11147 sub-commands allow you to visualize how your system services relate to
11148 each other:
11149
11150 @anchor{system-extension-graph}
11151 @table @code
11152
11153 @item extension-graph
11154 Emit in Dot/Graphviz format to standard output the @dfn{service
11155 extension graph} of the operating system defined in @var{file}
11156 (@pxref{Service Composition}, for more information on service
11157 extensions.)
11158
11159 The command:
11160
11161 @example
11162 $ guix system extension-graph @var{file} | dot -Tpdf > services.pdf
11163 @end example
11164
11165 produces a PDF file showing the extension relations among services.
11166
11167 @anchor{system-shepherd-graph}
11168 @item shepherd-graph
11169 Emit in Dot/Graphviz format to standard output the @dfn{dependency
11170 graph} of shepherd services of the operating system defined in
11171 @var{file}. @xref{Shepherd Services}, for more information and for an
11172 example graph.
11173
11174 @end table
11175
11176 @node Running GuixSD in a VM
11177 @subsection Running GuixSD in a Virtual Machine
11178
11179 One way to run GuixSD in a virtual machine (VM) is to build a GuixSD
11180 virtual machine image using @command{guix system vm-image}
11181 (@pxref{Invoking guix system}). The returned image is in qcow2 format,
11182 which the @uref{http://qemu.org/, QEMU emulator} can efficiently use.
11183
11184 To run the image in QEMU, copy it out of the store (@pxref{The Store})
11185 and give yourself permission to write to the copy. When invoking QEMU,
11186 you must choose a system emulator that is suitable for your hardware
11187 platform. Here is a minimal QEMU invocation that will boot the result
11188 of @command{guix system vm-image} on x86_64 hardware:
11189
11190 @example
11191 $ qemu-system-x86_64 \
11192 -net user -net nic,model=virtio \
11193 -enable-kvm -m 256 /tmp/qemu-image
11194 @end example
11195
11196 Here is what each of these options means:
11197
11198 @table @code
11199 @item qemu-system-x86_64
11200 This specifies the hardware platform to emulate. This should match the
11201 host.
11202
11203 @item -net user
11204 Enable the unprivileged user-mode network stack. The guest OS can
11205 access the host but not vice versa. This is the simplest way to get the
11206 guest OS online. If you do not choose a network stack, the boot will
11207 fail.
11208
11209 @item -net nic,model=virtio
11210 You must create a network interface of a given model. If you do not
11211 create a NIC, the boot will fail. Assuming your hardware platform is
11212 x86_64, you can get a list of available NIC models by running
11213 @command{qemu-system-x86_64 -net nic,model=help}.
11214
11215 @item -enable-kvm
11216 If your system has hardware virtualization extensions, enabling the
11217 virtual machine support (KVM) of the Linux kernel will make things run
11218 faster.
11219
11220 @item -m 256
11221 RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB,
11222 which may be insufficient for some operations.
11223
11224 @item /tmp/qemu-image
11225 The file name of the qcow2 image.
11226 @end table
11227
11228 @node Defining Services
11229 @subsection Defining Services
11230
11231 The previous sections show the available services and how one can combine
11232 them in an @code{operating-system} declaration. But how do we define
11233 them in the first place? And what is a service anyway?
11234
11235 @menu
11236 * Service Composition:: The model for composing services.
11237 * Service Types and Services:: Types and services.
11238 * Service Reference:: API reference.
11239 * Shepherd Services:: A particular type of service.
11240 @end menu
11241
11242 @node Service Composition
11243 @subsubsection Service Composition
11244
11245 @cindex services
11246 @cindex daemons
11247 Here we define a @dfn{service} as, broadly, something that extends the
11248 functionality of the operating system. Often a service is a process---a
11249 @dfn{daemon}---started when the system boots: a secure shell server, a
11250 Web server, the Guix build daemon, etc. Sometimes a service is a daemon
11251 whose execution can be triggered by another daemon---e.g., an FTP server
11252 started by @command{inetd} or a D-Bus service activated by
11253 @command{dbus-daemon}. Occasionally, a service does not map to a
11254 daemon. For instance, the ``account'' service collects user accounts
11255 and makes sure they exist when the system runs; the ``udev'' service
11256 collects device management rules and makes them available to the eudev
11257 daemon; the @file{/etc} service populates the @file{/etc} directory
11258 of the system.
11259
11260 @cindex service extensions
11261 GuixSD services are connected by @dfn{extensions}. For instance, the
11262 secure shell service @emph{extends} the Shepherd---the GuixSD
11263 initialization system, running as PID@tie{}1---by giving it the command
11264 lines to start and stop the secure shell daemon (@pxref{Networking
11265 Services, @code{lsh-service}}); the UPower service extends the D-Bus
11266 service by passing it its @file{.service} specification, and extends the
11267 udev service by passing it device management rules (@pxref{Desktop
11268 Services, @code{upower-service}}); the Guix daemon service extends the
11269 Shepherd by passing it the command lines to start and stop the daemon,
11270 and extends the account service by passing it a list of required build
11271 user accounts (@pxref{Base Services}).
11272
11273 All in all, services and their ``extends'' relations form a directed
11274 acyclic graph (DAG). If we represent services as boxes and extensions
11275 as arrows, a typical system might provide something like this:
11276
11277 @image{images/service-graph,,5in,Typical service extension graph.}
11278
11279 @cindex system service
11280 At the bottom, we see the @dfn{system service}, which produces the
11281 directory containing everything to run and boot the system, as returned
11282 by the @command{guix system build} command. @xref{Service Reference},
11283 to learn about the other service types shown here.
11284 @xref{system-extension-graph, the @command{guix system extension-graph}
11285 command}, for information on how to generate this representation for a
11286 particular operating system definition.
11287
11288 @cindex service types
11289 Technically, developers can define @dfn{service types} to express these
11290 relations. There can be any number of services of a given type on the
11291 system---for instance, a system running two instances of the GNU secure
11292 shell server (lsh) has two instances of @var{lsh-service-type}, with
11293 different parameters.
11294
11295 The following section describes the programming interface for service
11296 types and services.
11297
11298 @node Service Types and Services
11299 @subsubsection Service Types and Services
11300
11301 A @dfn{service type} is a node in the DAG described above. Let us start
11302 with a simple example, the service type for the Guix build daemon
11303 (@pxref{Invoking guix-daemon}):
11304
11305 @example
11306 (define guix-service-type
11307 (service-type
11308 (name 'guix)
11309 (extensions
11310 (list (service-extension shepherd-root-service-type guix-shepherd-service)
11311 (service-extension account-service-type guix-accounts)
11312 (service-extension activation-service-type guix-activation)))))
11313 @end example
11314
11315 @noindent
11316 It defines two things:
11317
11318 @enumerate
11319 @item
11320 A name, whose sole purpose is to make inspection and debugging easier.
11321
11322 @item
11323 A list of @dfn{service extensions}, where each extension designates the
11324 target service type and a procedure that, given the parameters of the
11325 service, returns a list of objects to extend the service of that type.
11326
11327 Every service type has at least one service extension. The only
11328 exception is the @dfn{boot service type}, which is the ultimate service.
11329 @end enumerate
11330
11331 In this example, @var{guix-service-type} extends three services:
11332
11333 @table @var
11334 @item shepherd-root-service-type
11335 The @var{guix-shepherd-service} procedure defines how the Shepherd
11336 service is extended. Namely, it returns a @code{<shepherd-service>}
11337 object that defines how @command{guix-daemon} is started and stopped
11338 (@pxref{Shepherd Services}).
11339
11340 @item account-service-type
11341 This extension for this service is computed by @var{guix-accounts},
11342 which returns a list of @code{user-group} and @code{user-account}
11343 objects representing the build user accounts (@pxref{Invoking
11344 guix-daemon}).
11345
11346 @item activation-service-type
11347 Here @var{guix-activation} is a procedure that returns a gexp, which is
11348 a code snippet to run at ``activation time''---e.g., when the service is
11349 booted.
11350 @end table
11351
11352 A service of this type is instantiated like this:
11353
11354 @example
11355 (service guix-service-type
11356 (guix-configuration
11357 (build-accounts 5)
11358 (use-substitutes? #f)))
11359 @end example
11360
11361 The second argument to the @code{service} form is a value representing
11362 the parameters of this specific service instance.
11363 @xref{guix-configuration-type, @code{guix-configuration}}, for
11364 information about the @code{guix-configuration} data type.
11365
11366 @var{guix-service-type} is quite simple because it extends other
11367 services but is not extensible itself.
11368
11369 @c @subsubsubsection Extensible Service Types
11370
11371 The service type for an @emph{extensible} service looks like this:
11372
11373 @example
11374 (define udev-service-type
11375 (service-type (name 'udev)
11376 (extensions
11377 (list (service-extension shepherd-root-service-type
11378 udev-shepherd-service)))
11379
11380 (compose concatenate) ;concatenate the list of rules
11381 (extend (lambda (config rules)
11382 (match config
11383 (($ <udev-configuration> udev initial-rules)
11384 (udev-configuration
11385 (udev udev) ;the udev package to use
11386 (rules (append initial-rules rules)))))))))
11387 @end example
11388
11389 This is the service type for the
11390 @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device
11391 management daemon}. Compared to the previous example, in addition to an
11392 extension of @var{shepherd-root-service-type}, we see two new fields:
11393
11394 @table @code
11395 @item compose
11396 This is the procedure to @dfn{compose} the list of extensions to
11397 services of this type.
11398
11399 Services can extend the udev service by passing it lists of rules; we
11400 compose those extensions simply by concatenating them.
11401
11402 @item extend
11403 This procedure defines how the value of the service is @dfn{extended} with
11404 the composition of the extensions.
11405
11406 Udev extensions are composed into a list of rules, but the udev service
11407 value is itself a @code{<udev-configuration>} record. So here, we
11408 extend that record by appending the list of rules it contains to the
11409 list of contributed rules.
11410 @end table
11411
11412 There can be only one instance of an extensible service type such as
11413 @var{udev-service-type}. If there were more, the
11414 @code{service-extension} specifications would be ambiguous.
11415
11416 Still here? The next section provides a reference of the programming
11417 interface for services.
11418
11419 @node Service Reference
11420 @subsubsection Service Reference
11421
11422 We have seen an overview of service types (@pxref{Service Types and
11423 Services}). This section provides a reference on how to manipulate
11424 services and service types. This interface is provided by the
11425 @code{(gnu services)} module.
11426
11427 @deffn {Scheme Procedure} service @var{type} @var{value}
11428 Return a new service of @var{type}, a @code{<service-type>} object (see
11429 below.) @var{value} can be any object; it represents the parameters of
11430 this particular service instance.
11431 @end deffn
11432
11433 @deffn {Scheme Procedure} service? @var{obj}
11434 Return true if @var{obj} is a service.
11435 @end deffn
11436
11437 @deffn {Scheme Procedure} service-kind @var{service}
11438 Return the type of @var{service}---i.e., a @code{<service-type>} object.
11439 @end deffn
11440
11441 @deffn {Scheme Procedure} service-parameters @var{service}
11442 Return the value associated with @var{service}. It represents its
11443 parameters.
11444 @end deffn
11445
11446 Here is an example of how a service is created and manipulated:
11447
11448 @example
11449 (define s
11450 (service nginx-service-type
11451 (nginx-configuration
11452 (nginx nginx)
11453 (log-directory log-directory)
11454 (run-directory run-directory)
11455 (file config-file))))
11456
11457 (service? s)
11458 @result{} #t
11459
11460 (eq? (service-kind s) nginx-service-type)
11461 @result{} #t
11462 @end example
11463
11464 The @code{modify-services} form provides a handy way to change the
11465 parameters of some of the services of a list such as
11466 @var{%base-services} (@pxref{Base Services, @code{%base-services}}). It
11467 evaluates to a list of services. Of course, you could always use
11468 standard list combinators such as @code{map} and @code{fold} to do that
11469 (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual});
11470 @code{modify-services} simply provides a more concise form for this
11471 common pattern.
11472
11473 @deffn {Scheme Syntax} modify-services @var{services} @
11474 (@var{type} @var{variable} => @var{body}) @dots{}
11475
11476 Modify the services listed in @var{services} according to the given
11477 clauses. Each clause has the form:
11478
11479 @example
11480 (@var{type} @var{variable} => @var{body})
11481 @end example
11482
11483 where @var{type} is a service type---e.g.,
11484 @code{guix-service-type}---and @var{variable} is an identifier that is
11485 bound within the @var{body} to the service parameters---e.g., a
11486 @code{guix-configuration} instance---of the original service of that
11487 @var{type}.
11488
11489 The @var{body} should evaluate to the new service parameters, which will
11490 be used to configure the new service. This new service will replace the
11491 original in the resulting list. Because a service's service parameters
11492 are created using @code{define-record-type*}, you can write a succinct
11493 @var{body} that evaluates to the new service parameters by using the
11494 @code{inherit} feature that @code{define-record-type*} provides.
11495
11496 @xref{Using the Configuration System}, for example usage.
11497
11498 @end deffn
11499
11500 Next comes the programming interface for service types. This is
11501 something you want to know when writing new service definitions, but not
11502 necessarily when simply looking for ways to customize your
11503 @code{operating-system} declaration.
11504
11505 @deftp {Data Type} service-type
11506 @cindex service type
11507 This is the representation of a @dfn{service type} (@pxref{Service Types
11508 and Services}).
11509
11510 @table @asis
11511 @item @code{name}
11512 This is a symbol, used only to simplify inspection and debugging.
11513
11514 @item @code{extensions}
11515 A non-empty list of @code{<service-extension>} objects (see below).
11516
11517 @item @code{compose} (default: @code{#f})
11518 If this is @code{#f}, then the service type denotes services that cannot
11519 be extended---i.e., services that do not receive ``values'' from other
11520 services.
11521
11522 Otherwise, it must be a one-argument procedure. The procedure is called
11523 by @code{fold-services} and is passed a list of values collected from
11524 extensions. It must return a value that is a valid parameter value for
11525 the service instance.
11526
11527 @item @code{extend} (default: @code{#f})
11528 If this is @code{#f}, services of this type cannot be extended.
11529
11530 Otherwise, it must be a two-argument procedure: @code{fold-services}
11531 calls it, passing it the initial value of the service as the first argument
11532 and the result of applying @code{compose} to the extension values as the
11533 second argument.
11534 @end table
11535
11536 @xref{Service Types and Services}, for examples.
11537 @end deftp
11538
11539 @deffn {Scheme Procedure} service-extension @var{target-type} @
11540 @var{compute}
11541 Return a new extension for services of type @var{target-type}.
11542 @var{compute} must be a one-argument procedure: @code{fold-services}
11543 calls it, passing it the value associated with the service that provides
11544 the extension; it must return a valid value for the target service.
11545 @end deffn
11546
11547 @deffn {Scheme Procedure} service-extension? @var{obj}
11548 Return true if @var{obj} is a service extension.
11549 @end deffn
11550
11551 Occasionally, you might want to simply extend an existing service. This
11552 involves creating a new service type and specifying the extension of
11553 interest, which can be verbose; the @code{simple-service} procedure
11554 provides a shorthand for this.
11555
11556 @deffn {Scheme Procedure} simple-service @var{name} @var{target} @var{value}
11557 Return a service that extends @var{target} with @var{value}. This works
11558 by creating a singleton service type @var{name}, of which the returned
11559 service is an instance.
11560
11561 For example, this extends mcron (@pxref{Scheduled Job Execution}) with
11562 an additional job:
11563
11564 @example
11565 (simple-service 'my-mcron-job mcron-service-type
11566 #~(job '(next-hour (3)) "guix gc -F 2G"))
11567 @end example
11568 @end deffn
11569
11570 At the core of the service abstraction lies the @code{fold-services}
11571 procedure, which is responsible for ``compiling'' a list of services
11572 down to a single directory that contains everything needed to boot and
11573 run the system---the directory shown by the @command{guix system build}
11574 command (@pxref{Invoking guix system}). In essence, it propagates
11575 service extensions down the service graph, updating each node parameters
11576 on the way, until it reaches the root node.
11577
11578 @deffn {Scheme Procedure} fold-services @var{services} @
11579 [#:target-type @var{system-service-type}]
11580 Fold @var{services} by propagating their extensions down to the root of
11581 type @var{target-type}; return the root service adjusted accordingly.
11582 @end deffn
11583
11584 Lastly, the @code{(gnu services)} module also defines several essential
11585 service types, some of which are listed below.
11586
11587 @defvr {Scheme Variable} system-service-type
11588 This is the root of the service graph. It produces the system directory
11589 as returned by the @command{guix system build} command.
11590 @end defvr
11591
11592 @defvr {Scheme Variable} boot-service-type
11593 The type of the ``boot service'', which produces the @dfn{boot script}.
11594 The boot script is what the initial RAM disk runs when booting.
11595 @end defvr
11596
11597 @defvr {Scheme Variable} etc-service-type
11598 The type of the @file{/etc} service. This service can be extended by
11599 passing it name/file tuples such as:
11600
11601 @example
11602 (list `("issue" ,(plain-file "issue" "Welcome!\n")))
11603 @end example
11604
11605 In this example, the effect would be to add an @file{/etc/issue} file
11606 pointing to the given file.
11607 @end defvr
11608
11609 @defvr {Scheme Variable} setuid-program-service-type
11610 Type for the ``setuid-program service''. This service collects lists of
11611 executable file names, passed as gexps, and adds them to the set of
11612 setuid-root programs on the system (@pxref{Setuid Programs}).
11613 @end defvr
11614
11615 @defvr {Scheme Variable} profile-service-type
11616 Type of the service that populates the @dfn{system profile}---i.e., the
11617 programs under @file{/run/current-system/profile}. Other services can
11618 extend it by passing it lists of packages to add to the system profile.
11619 @end defvr
11620
11621
11622 @node Shepherd Services
11623 @subsubsection Shepherd Services
11624
11625 @cindex PID 1
11626 @cindex init system
11627 The @code{(gnu services shepherd)} module provides a way to define
11628 services managed by the GNU@tie{}Shepherd, which is the GuixSD
11629 initialization system---the first process that is started when the
11630 system boots, also known as PID@tie{}1
11631 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}).
11632
11633 Services in the Shepherd can depend on each other. For instance, the
11634 SSH daemon may need to be started after the syslog daemon has been
11635 started, which in turn can only happen once all the file systems have
11636 been mounted. The simple operating system defined earlier (@pxref{Using
11637 the Configuration System}) results in a service graph like this:
11638
11639 @image{images/shepherd-graph,,5in,Typical shepherd service graph.}
11640
11641 You can actually generate such a graph for any operating system
11642 definition using the @command{guix system shepherd-graph} command
11643 (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}}).
11644
11645 The @var{%shepherd-root-service} is a service object representing
11646 PID@tie{}1, of type @var{shepherd-root-service-type}; it can be extended
11647 by passing it lists of @code{<shepherd-service>} objects.
11648
11649 @deftp {Data Type} shepherd-service
11650 The data type representing a service managed by the Shepherd.
11651
11652 @table @asis
11653 @item @code{provision}
11654 This is a list of symbols denoting what the service provides.
11655
11656 These are the names that may be passed to @command{herd start},
11657 @command{herd status}, and similar commands (@pxref{Invoking herd,,,
11658 shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the
11659 @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details.
11660
11661 @item @code{requirements} (default: @code{'()})
11662 List of symbols denoting the Shepherd services this one depends on.
11663
11664 @item @code{respawn?} (default: @code{#t})
11665 Whether to restart the service when it stops, for instance when the
11666 underlying process dies.
11667
11668 @item @code{start}
11669 @itemx @code{stop} (default: @code{#~(const #f)})
11670 The @code{start} and @code{stop} fields refer to the Shepherd's
11671 facilities to start and stop processes (@pxref{Service De- and
11672 Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as
11673 G-expressions that get expanded in the Shepherd configuration file
11674 (@pxref{G-Expressions}).
11675
11676 @item @code{documentation}
11677 A documentation string, as shown when running:
11678
11679 @example
11680 herd doc @var{service-name}
11681 @end example
11682
11683 where @var{service-name} is one of the symbols in @var{provision}
11684 (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}).
11685
11686 @item @code{modules} (default: @var{%default-modules})
11687 This is the list of modules that must be in scope when @code{start} and
11688 @code{stop} are evaluated.
11689
11690 @end table
11691 @end deftp
11692
11693 @defvr {Scheme Variable} shepherd-root-service-type
11694 The service type for the Shepherd ``root service''---i.e., PID@tie{}1.
11695
11696 This is the service type that extensions target when they want to create
11697 shepherd services (@pxref{Service Types and Services}, for an example).
11698 Each extension must pass a list of @code{<shepherd-service>}.
11699 @end defvr
11700
11701 @defvr {Scheme Variable} %shepherd-root-service
11702 This service represents PID@tie{}1.
11703 @end defvr
11704
11705
11706 @node Installing Debugging Files
11707 @section Installing Debugging Files
11708
11709 @cindex debugging files
11710 Program binaries, as produced by the GCC compilers for instance, are
11711 typically written in the ELF format, with a section containing
11712 @dfn{debugging information}. Debugging information is what allows the
11713 debugger, GDB, to map binary code to source code; it is required to
11714 debug a compiled program in good conditions.
11715
11716 The problem with debugging information is that is takes up a fair amount
11717 of disk space. For example, debugging information for the GNU C Library
11718 weighs in at more than 60 MiB. Thus, as a user, keeping all the
11719 debugging info of all the installed programs is usually not an option.
11720 Yet, space savings should not come at the cost of an impediment to
11721 debugging---especially in the GNU system, which should make it easier
11722 for users to exert their computing freedom (@pxref{GNU Distribution}).
11723
11724 Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a
11725 mechanism that allows users to get the best of both worlds: debugging
11726 information can be stripped from the binaries and stored in separate
11727 files. GDB is then able to load debugging information from those files,
11728 when they are available (@pxref{Separate Debug Files,,, gdb, Debugging
11729 with GDB}).
11730
11731 The GNU distribution takes advantage of this by storing debugging
11732 information in the @code{lib/debug} sub-directory of a separate package
11733 output unimaginatively called @code{debug} (@pxref{Packages with
11734 Multiple Outputs}). Users can choose to install the @code{debug} output
11735 of a package when they need it. For instance, the following command
11736 installs the debugging information for the GNU C Library and for GNU
11737 Guile:
11738
11739 @example
11740 guix package -i glibc:debug guile:debug
11741 @end example
11742
11743 GDB must then be told to look for debug files in the user's profile, by
11744 setting the @code{debug-file-directory} variable (consider setting it
11745 from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with
11746 GDB}):
11747
11748 @example
11749 (gdb) set debug-file-directory ~/.guix-profile/lib/debug
11750 @end example
11751
11752 From there on, GDB will pick up debugging information from the
11753 @code{.debug} files under @file{~/.guix-profile/lib/debug}.
11754
11755 In addition, you will most likely want GDB to be able to show the source
11756 code being debugged. To do that, you will have to unpack the source
11757 code of the package of interest (obtained with @code{guix build
11758 --source}, @pxref{Invoking guix build}), and to point GDB to that source
11759 directory using the @code{directory} command (@pxref{Source Path,
11760 @code{directory},, gdb, Debugging with GDB}).
11761
11762 @c XXX: keep me up-to-date
11763 The @code{debug} output mechanism in Guix is implemented by the
11764 @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is
11765 opt-in---debugging information is available only for the packages
11766 with definitions explicitly declaring a @code{debug} output. This may be
11767 changed to opt-out in the future if our build farm servers can handle
11768 the load. To check whether a package has a @code{debug} output, use
11769 @command{guix package --list-available} (@pxref{Invoking guix package}).
11770
11771
11772 @node Security Updates
11773 @section Security Updates
11774
11775 @cindex security updates
11776 @cindex security vulnerabilities
11777 Occasionally, important security vulnerabilities are discovered in software
11778 packages and must be patched. Guix developers try hard to keep track of
11779 known vulnerabilities and to apply fixes as soon as possible in the
11780 @code{master} branch of Guix (we do not yet provide a ``stable'' branch
11781 containing only security updates.) The @command{guix lint} tool helps
11782 developers find out about vulnerable versions of software packages in the
11783 distribution:
11784
11785 @smallexample
11786 $ guix lint -c cve
11787 gnu/packages/base.scm:652:2: glibc-2.21: probably vulnerable to CVE-2015-1781, CVE-2015-7547
11788 gnu/packages/gcc.scm:334:2: gcc-4.9.3: probably vulnerable to CVE-2015-5276
11789 gnu/packages/image.scm:312:2: openjpeg-2.1.0: probably vulnerable to CVE-2016-1923, CVE-2016-1924
11790 @dots{}
11791 @end smallexample
11792
11793 @xref{Invoking guix lint}, for more information.
11794
11795 @quotation Note
11796 As of version @value{VERSION}, the feature described below is considered
11797 ``beta''.
11798 @end quotation
11799
11800 Guix follows a functional
11801 package management discipline (@pxref{Introduction}), which implies
11802 that, when a package is changed, @emph{every package that depends on it}
11803 must be rebuilt. This can significantly slow down the deployment of
11804 fixes in core packages such as libc or Bash, since basically the whole
11805 distribution would need to be rebuilt. Using pre-built binaries helps
11806 (@pxref{Substitutes}), but deployment may still take more time than
11807 desired.
11808
11809 @cindex grafts
11810 To address this, Guix implements @dfn{grafts}, a mechanism that allows
11811 for fast deployment of critical updates without the costs associated
11812 with a whole-distribution rebuild. The idea is to rebuild only the
11813 package that needs to be patched, and then to ``graft'' it onto packages
11814 explicitly installed by the user and that were previously referring to
11815 the original package. The cost of grafting is typically very low, and
11816 order of magnitudes lower than a full rebuild of the dependency chain.
11817
11818 @cindex replacements of packages, for grafts
11819 For instance, suppose a security update needs to be applied to Bash.
11820 Guix developers will provide a package definition for the ``fixed''
11821 Bash, say @var{bash-fixed}, in the usual way (@pxref{Defining
11822 Packages}). Then, the original package definition is augmented with a
11823 @code{replacement} field pointing to the package containing the bug fix:
11824
11825 @example
11826 (define bash
11827 (package
11828 (name "bash")
11829 ;; @dots{}
11830 (replacement bash-fixed)))
11831 @end example
11832
11833 From there on, any package depending directly or indirectly on Bash---as
11834 reported by @command{guix gc --requisites} (@pxref{Invoking guix
11835 gc})---that is installed is automatically ``rewritten'' to refer to
11836 @var{bash-fixed} instead of @var{bash}. This grafting process takes
11837 time proportional to the size of the package, usually less than a
11838 minute for an ``average'' package on a recent machine. Grafting is
11839 recursive: when an indirect dependency requires grafting, then grafting
11840 ``propagates'' up to the package that the user is installing.
11841
11842 Currently, the length of the name and version of the graft and that of
11843 the package it replaces (@var{bash-fixed} and @var{bash} in the example
11844 above) must be equal. This restriction mostly comes from the fact that
11845 grafting works by patching files, including binary files, directly.
11846 Other restrictions may apply: for instance, when adding a graft to a
11847 package providing a shared library, the original shared library and its
11848 replacement must have the same @code{SONAME} and be binary-compatible.
11849
11850 The @option{--no-grafts} command-line option allows you to forcefully
11851 avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}).
11852 Thus, the command:
11853
11854 @example
11855 guix build bash --no-grafts
11856 @end example
11857
11858 @noindent
11859 returns the store file name of the original Bash, whereas:
11860
11861 @example
11862 guix build bash
11863 @end example
11864
11865 @noindent
11866 returns the store file name of the ``fixed'', replacement Bash. This
11867 allows you to distinguish between the two variants of Bash.
11868
11869 To verify which Bash your whole profile refers to, you can run
11870 (@pxref{Invoking guix gc}):
11871
11872 @example
11873 guix gc -R `readlink -f ~/.guix-profile` | grep bash
11874 @end example
11875
11876 @noindent
11877 @dots{} and compare the store file names that you get with those above.
11878 Likewise for a complete GuixSD system generation:
11879
11880 @example
11881 guix gc -R `guix system build my-config.scm` | grep bash
11882 @end example
11883
11884 Lastly, to check which Bash running processes are using, you can use the
11885 @command{lsof} command:
11886
11887 @example
11888 lsof | grep /gnu/store/.*bash
11889 @end example
11890
11891
11892 @node Package Modules
11893 @section Package Modules
11894
11895 From a programming viewpoint, the package definitions of the
11896 GNU distribution are provided by Guile modules in the @code{(gnu packages
11897 @dots{})} name space@footnote{Note that packages under the @code{(gnu
11898 packages @dots{})} module name space are not necessarily ``GNU
11899 packages''. This module naming scheme follows the usual Guile module
11900 naming convention: @code{gnu} means that these modules are distributed
11901 as part of the GNU system, and @code{packages} identifies modules that
11902 define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile
11903 Reference Manual}). For instance, the @code{(gnu packages emacs)}
11904 module exports a variable named @code{emacs}, which is bound to a
11905 @code{<package>} object (@pxref{Defining Packages}).
11906
11907 The @code{(gnu packages @dots{})} module name space is
11908 automatically scanned for packages by the command-line tools. For
11909 instance, when running @code{guix package -i emacs}, all the @code{(gnu
11910 packages @dots{})} modules are scanned until one that exports a package
11911 object whose name is @code{emacs} is found. This package search
11912 facility is implemented in the @code{(gnu packages)} module.
11913
11914 @cindex customization, of packages
11915 @cindex package module search path
11916 Users can store package definitions in modules with different
11917 names---e.g., @code{(my-packages emacs)}@footnote{Note that the file
11918 name and module name must match. For instance, the @code{(my-packages
11919 emacs)} module must be stored in a @file{my-packages/emacs.scm} file
11920 relative to the load path specified with @option{--load-path} or
11921 @code{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,,
11922 guile, GNU Guile Reference Manual}, for details.}. These package definitions
11923 will not be visible by default. Users can invoke commands such as
11924 @command{guix package} and @command{guix build} with the
11925 @code{-e} option so that they know where to find the package. Better
11926 yet, they can use the
11927 @code{-L} option of these commands to make those modules visible
11928 (@pxref{Invoking guix build, @code{--load-path}}), or define the
11929 @code{GUIX_PACKAGE_PATH} environment variable. This environment
11930 variable makes it easy to extend or customize the distribution and is
11931 honored by all the user interfaces.
11932
11933 @defvr {Environment Variable} GUIX_PACKAGE_PATH
11934 This is a colon-separated list of directories to search for additional
11935 package modules. Directories listed in this variable take precedence
11936 over the own modules of the distribution.
11937 @end defvr
11938
11939 The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}:
11940 each package is built based solely on other packages in the
11941 distribution. The root of this dependency graph is a small set of
11942 @dfn{bootstrap binaries}, provided by the @code{(gnu packages
11943 bootstrap)} module. For more information on bootstrapping,
11944 @pxref{Bootstrapping}.
11945
11946 @node Packaging Guidelines
11947 @section Packaging Guidelines
11948
11949 The GNU distribution is nascent and may well lack some of your favorite
11950 packages. This section describes how you can help make the distribution
11951 grow. @xref{Contributing}, for additional information on how you can
11952 help.
11953
11954 Free software packages are usually distributed in the form of
11955 @dfn{source code tarballs}---typically @file{tar.gz} files that contain
11956 all the source files. Adding a package to the distribution means
11957 essentially two things: adding a @dfn{recipe} that describes how to
11958 build the package, including a list of other packages required to build
11959 it, and adding @dfn{package metadata} along with that recipe, such as a
11960 description and licensing information.
11961
11962 In Guix all this information is embodied in @dfn{package definitions}.
11963 Package definitions provide a high-level view of the package. They are
11964 written using the syntax of the Scheme programming language; in fact,
11965 for each package we define a variable bound to the package definition,
11966 and export that variable from a module (@pxref{Package Modules}).
11967 However, in-depth Scheme knowledge is @emph{not} a prerequisite for
11968 creating packages. For more information on package definitions,
11969 @pxref{Defining Packages}.
11970
11971 Once a package definition is in place, stored in a file in the Guix
11972 source tree, it can be tested using the @command{guix build} command
11973 (@pxref{Invoking guix build}). For example, assuming the new package is
11974 called @code{gnew}, you may run this command from the Guix build tree
11975 (@pxref{Running Guix Before It Is Installed}):
11976
11977 @example
11978 ./pre-inst-env guix build gnew --keep-failed
11979 @end example
11980
11981 Using @code{--keep-failed} makes it easier to debug build failures since
11982 it provides access to the failed build tree. Another useful
11983 command-line option when debugging is @code{--log-file}, to access the
11984 build log.
11985
11986 If the package is unknown to the @command{guix} command, it may be that
11987 the source file contains a syntax error, or lacks a @code{define-public}
11988 clause to export the package variable. To figure it out, you may load
11989 the module from Guile to get more information about the actual error:
11990
11991 @example
11992 ./pre-inst-env guile -c '(use-modules (gnu packages gnew))'
11993 @end example
11994
11995 Once your package builds correctly, please send us a patch
11996 (@pxref{Contributing}). Well, if you need help, we will be happy to
11997 help you too. Once the patch is committed in the Guix repository, the
11998 new package automatically gets built on the supported platforms by
11999 @url{http://hydra.gnu.org/jobset/gnu/master, our continuous integration
12000 system}.
12001
12002 @cindex substituter
12003 Users can obtain the new package definition simply by running
12004 @command{guix pull} (@pxref{Invoking guix pull}). When
12005 @code{hydra.gnu.org} is done building the package, installing the
12006 package automatically downloads binaries from there
12007 (@pxref{Substitutes}). The only place where human intervention is
12008 needed is to review and apply the patch.
12009
12010
12011 @menu
12012 * Software Freedom:: What may go into the distribution.
12013 * Package Naming:: What's in a name?
12014 * Version Numbers:: When the name is not enough.
12015 * Synopses and Descriptions:: Helping users find the right package.
12016 * Python Modules:: Taming the snake.
12017 * Perl Modules:: Little pearls.
12018 * Java Packages:: Coffee break.
12019 * Fonts:: Fond of fonts.
12020 @end menu
12021
12022 @node Software Freedom
12023 @subsection Software Freedom
12024
12025 @c Adapted from http://www.gnu.org/philosophy/philosophy.html.
12026
12027 The GNU operating system has been developed so that users can have
12028 freedom in their computing. GNU is @dfn{free software}, meaning that
12029 users have the @url{http://www.gnu.org/philosophy/free-sw.html,four
12030 essential freedoms}: to run the program, to study and change the program
12031 in source code form, to redistribute exact copies, and to distribute
12032 modified versions. Packages found in the GNU distribution provide only
12033 software that conveys these four freedoms.
12034
12035 In addition, the GNU distribution follow the
12036 @url{http://www.gnu.org/distros/free-system-distribution-guidelines.html,free
12037 software distribution guidelines}. Among other things, these guidelines
12038 reject non-free firmware, recommendations of non-free software, and
12039 discuss ways to deal with trademarks and patents.
12040
12041 Some otherwise free upstream package sources contain a small and optional
12042 subset that violates the above guidelines, for instance because this subset
12043 is itself non-free code. When that happens, the offending items are removed
12044 with appropriate patches or code snippets in the @code{origin} form of the
12045 package (@pxref{Defining Packages}). This way, @code{guix
12046 build --source} returns the ``freed'' source rather than the unmodified
12047 upstream source.
12048
12049
12050 @node Package Naming
12051 @subsection Package Naming
12052
12053 A package has actually two names associated with it:
12054 First, there is the name of the @emph{Scheme variable}, the one following
12055 @code{define-public}. By this name, the package can be made known in the
12056 Scheme code, for instance as input to another package. Second, there is
12057 the string in the @code{name} field of a package definition. This name
12058 is used by package management commands such as
12059 @command{guix package} and @command{guix build}.
12060
12061 Both are usually the same and correspond to the lowercase conversion of
12062 the project name chosen upstream, with underscores replaced with
12063 hyphens. For instance, GNUnet is available as @code{gnunet}, and
12064 SDL_net as @code{sdl-net}.
12065
12066 We do not add @code{lib} prefixes for library packages, unless these are
12067 already part of the official project name. But @pxref{Python
12068 Modules} and @ref{Perl Modules} for special rules concerning modules for
12069 the Python and Perl languages.
12070
12071 Font package names are handled differently, @pxref{Fonts}.
12072
12073
12074 @node Version Numbers
12075 @subsection Version Numbers
12076
12077 We usually package only the latest version of a given free software
12078 project. But sometimes, for instance for incompatible library versions,
12079 two (or more) versions of the same package are needed. These require
12080 different Scheme variable names. We use the name as defined
12081 in @ref{Package Naming}
12082 for the most recent version; previous versions use the same name, suffixed
12083 by @code{-} and the smallest prefix of the version number that may
12084 distinguish the two versions.
12085
12086 The name inside the package definition is the same for all versions of a
12087 package and does not contain any version number.
12088
12089 For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:
12090
12091 @example
12092 (define-public gtk+
12093 (package
12094 (name "gtk+")
12095 (version "3.9.12")
12096 ...))
12097 (define-public gtk+-2
12098 (package
12099 (name "gtk+")
12100 (version "2.24.20")
12101 ...))
12102 @end example
12103 If we also wanted GTK+ 3.8.2, this would be packaged as
12104 @example
12105 (define-public gtk+-3.8
12106 (package
12107 (name "gtk+")
12108 (version "3.8.2")
12109 ...))
12110 @end example
12111
12112 @c See <https://lists.gnu.org/archive/html/guix-devel/2016-01/msg00425.html>,
12113 @c for a discussion of what follows.
12114 @cindex version number, for VCS snapshots
12115 Occasionally, we package snapshots of upstream's version control system
12116 (VCS) instead of formal releases. This should remain exceptional,
12117 because it is up to upstream developers to clarify what the stable
12118 release is. Yet, it is sometimes necessary. So, what should we put in
12119 the @code{version} field?
12120
12121 Clearly, we need to make the commit identifier of the VCS snapshot
12122 visible in the version string, but we also need to make sure that the
12123 version string is monotonically increasing so that @command{guix package
12124 --upgrade} can determine which version is newer. Since commit
12125 identifiers, notably with Git, are not monotonically increasing, we add
12126 a revision number that we increase each time we upgrade to a newer
12127 snapshot. The resulting version string looks like this:
12128
12129 @example
12130 2.0.11-3.cabba9e
12131 ^ ^ ^
12132 | | `-- upstream commit ID
12133 | |
12134 | `--- Guix package revision
12135 |
12136 latest upstream version
12137 @end example
12138
12139 It is a good idea to strip commit identifiers in the @code{version}
12140 field to, say, 7 digits. It avoids an aesthetic annoyance (assuming
12141 aesthetics have a role to play here) as well as problems related to OS
12142 limits such as the maximum shebang length (127 bytes for the Linux
12143 kernel.) It is best to use the full commit identifiers in
12144 @code{origin}s, though, to avoid ambiguities. A typical package
12145 definition may look like this:
12146
12147 @example
12148 (define my-package
12149 (let ((commit "c3f29bc928d5900971f65965feaae59e1272a3f7")
12150 (revision "1")) ;Guix package revision
12151 (package
12152 (version (string-append "0.9-" revision "."
12153 (string-take commit 7)))
12154 (source (origin
12155 (method git-fetch)
12156 (uri (git-reference
12157 (url "git://example.org/my-package.git")
12158 (commit commit)))
12159 (sha256 (base32 "1mbikn@dots{}"))
12160 (file-name (string-append "my-package-" version
12161 "-checkout"))))
12162 ;; @dots{}
12163 )))
12164 @end example
12165
12166 @node Synopses and Descriptions
12167 @subsection Synopses and Descriptions
12168
12169 As we have seen before, each package in GNU@tie{}Guix includes a
12170 synopsis and a description (@pxref{Defining Packages}). Synopses and
12171 descriptions are important: They are what @command{guix package
12172 --search} searches, and a crucial piece of information to help users
12173 determine whether a given package suits their needs. Consequently,
12174 packagers should pay attention to what goes into them.
12175
12176 Synopses must start with a capital letter and must not end with a
12177 period. They must not start with ``a'' or ``the'', which usually does
12178 not bring anything; for instance, prefer ``File-frobbing tool'' over ``A
12179 tool that frobs files''. The synopsis should say what the package
12180 is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is
12181 used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines
12182 matching a pattern''.
12183
12184 Keep in mind that the synopsis must be meaningful for a very wide
12185 audience. For example, ``Manipulate alignments in the SAM format''
12186 might make sense for a seasoned bioinformatics researcher, but might be
12187 fairly unhelpful or even misleading to a non-specialized audience. It
12188 is a good idea to come up with a synopsis that gives an idea of the
12189 application domain of the package. In this example, this might give
12190 something like ``Manipulate nucleotide sequence alignments'', which
12191 hopefully gives the user a better idea of whether this is what they are
12192 looking for.
12193
12194 Descriptions should take between five and ten lines. Use full
12195 sentences, and avoid using acronyms without first introducing them.
12196 Please avoid marketing phrases such as ``world-leading'',
12197 ``industrial-strength'', and ``next-generation'', and avoid superlatives
12198 like ``the most advanced''---they are not helpful to users looking for a
12199 package and may even sound suspicious. Instead, try to be factual,
12200 mentioning use cases and features.
12201
12202 @cindex Texinfo markup, in package descriptions
12203 Descriptions can include Texinfo markup, which is useful to introduce
12204 ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or
12205 hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you
12206 should be careful when using some characters for example @samp{@@} and
12207 curly braces which are the basic special characters in Texinfo
12208 (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces
12209 such as @command{guix package --show} take care of rendering it
12210 appropriately.
12211
12212 Synopses and descriptions are translated by volunteers
12213 @uref{http://translationproject.org/domain/guix-packages.html, at the
12214 Translation Project} so that as many users as possible can read them in
12215 their native language. User interfaces search them and display them in
12216 the language specified by the current locale.
12217
12218 Translation is a lot of work so, as a packager, please pay even more
12219 attention to your synopses and descriptions as every change may entail
12220 additional work for translators. In order to help them, it is possible
12221 to make recommendations or instructions visible to them by inserting
12222 special comments like this (@pxref{xgettext Invocation,,, gettext, GNU
12223 Gettext}):
12224
12225 @example
12226 ;; TRANSLATORS: "X11 resize-and-rotate" should not be translated.
12227 (description "ARandR is designed to provide a simple visual front end
12228 for the X11 resize-and-rotate (RandR) extension. @dots{}")
12229 @end example
12230
12231
12232 @node Python Modules
12233 @subsection Python Modules
12234
12235 We currently package Python 2 and Python 3, under the Scheme variable names
12236 @code{python-2} and @code{python} as explained in @ref{Version Numbers}.
12237 To avoid confusion and naming clashes with other programming languages, it
12238 seems desirable that the name of a package for a Python module contains
12239 the word @code{python}.
12240
12241 Some modules are compatible with only one version of Python, others with both.
12242 If the package Foo compiles only with Python 3, we name it
12243 @code{python-foo}; if it compiles only with Python 2, we name it
12244 @code{python2-foo}. If it is compatible with both versions, we create two
12245 packages with the corresponding names.
12246
12247 If a project already contains the word @code{python}, we drop this;
12248 for instance, the module python-dateutil is packaged under the names
12249 @code{python-dateutil} and @code{python2-dateutil}. If the project name
12250 starts with @code{py} (e.g. @code{pytz}), we keep it and prefix it as
12251 described above.
12252
12253
12254 @node Perl Modules
12255 @subsection Perl Modules
12256
12257 Perl programs standing for themselves are named as any other package,
12258 using the lowercase upstream name.
12259 For Perl packages containing a single class, we use the lowercase class name,
12260 replace all occurrences of @code{::} by dashes and prepend the prefix
12261 @code{perl-}.
12262 So the class @code{XML::Parser} becomes @code{perl-xml-parser}.
12263 Modules containing several classes keep their lowercase upstream name and
12264 are also prepended by @code{perl-}. Such modules tend to have the word
12265 @code{perl} somewhere in their name, which gets dropped in favor of the
12266 prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}.
12267
12268
12269 @node Java Packages
12270 @subsection Java Packages
12271
12272 Java programs standing for themselves are named as any other package,
12273 using the lowercase upstream name.
12274
12275 To avoid confusion and naming clashes with other programming languages,
12276 it is desirable that the name of a package for a Java package is
12277 prefixed with @code{java-}. If a project already contains the word
12278 @code{java}, we drop this; for instance, the package @code{ngsjava} is
12279 packaged under the name @code{java-ngs}.
12280
12281 For Java packages containing a single class or a small class hierarchy,
12282 we use the lowercase class name, replace all occurrences of @code{.} by
12283 dashes and prepend the prefix @code{java-}. So the class
12284 @code{apache.commons.cli} becomes package
12285 @code{java-apache-commons-cli}.
12286
12287
12288 @node Fonts
12289 @subsection Fonts
12290
12291 For fonts that are in general not installed by a user for typesetting
12292 purposes, or that are distributed as part of a larger software package,
12293 we rely on the general packaging rules for software; for instance, this
12294 applies to the fonts delivered as part of the X.Org system or fonts that
12295 are part of TeX Live.
12296
12297 To make it easier for a user to search for fonts, names for other packages
12298 containing only fonts are constructed as follows, independently of the
12299 upstream package name.
12300
12301 The name of a package containing only one font family starts with
12302 @code{font-}; it is followed by the foundry name and a dash @code{-}
12303 if the foundry is known, and the font family name, in which spaces are
12304 replaced by dashes (and as usual, all upper case letters are transformed
12305 to lower case).
12306 For example, the Gentium font family by SIL is packaged under the name
12307 @code{font-sil-gentium}.
12308
12309 For a package containing several font families, the name of the collection
12310 is used in the place of the font family name.
12311 For instance, the Liberation fonts consist of three families,
12312 Liberation Sans, Liberation Serif and Liberation Mono.
12313 These could be packaged separately under the names
12314 @code{font-liberation-sans} and so on; but as they are distributed together
12315 under a common name, we prefer to package them together as
12316 @code{font-liberation}.
12317
12318 In the case where several formats of the same font family or font collection
12319 are packaged separately, a short form of the format, prepended by a dash,
12320 is added to the package name. We use @code{-ttf} for TrueType fonts,
12321 @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1
12322 fonts.
12323
12324
12325
12326 @node Bootstrapping
12327 @section Bootstrapping
12328
12329 @c Adapted from the ELS 2013 paper.
12330
12331 @cindex bootstrapping
12332
12333 Bootstrapping in our context refers to how the distribution gets built
12334 ``from nothing''. Remember that the build environment of a derivation
12335 contains nothing but its declared inputs (@pxref{Introduction}). So
12336 there's an obvious chicken-and-egg problem: how does the first package
12337 get built? How does the first compiler get compiled? Note that this is
12338 a question of interest only to the curious hacker, not to the regular
12339 user, so you can shamelessly skip this section if you consider yourself
12340 a ``regular user''.
12341
12342 @cindex bootstrap binaries
12343 The GNU system is primarily made of C code, with libc at its core. The
12344 GNU build system itself assumes the availability of a Bourne shell and
12345 command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and
12346 `grep'. Furthermore, build programs---programs that run
12347 @code{./configure}, @code{make}, etc.---are written in Guile Scheme
12348 (@pxref{Derivations}). Consequently, to be able to build anything at
12349 all, from scratch, Guix relies on pre-built binaries of Guile, GCC,
12350 Binutils, libc, and the other packages mentioned above---the
12351 @dfn{bootstrap binaries}.
12352
12353 These bootstrap binaries are ``taken for granted'', though we can also
12354 re-create them if needed (more on that later).
12355
12356 @unnumberedsubsec Preparing to Use the Bootstrap Binaries
12357
12358 @c As of Emacs 24.3, Info-mode displays the image, but since it's a
12359 @c large image, it's hard to scroll. Oh well.
12360 @image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}
12361
12362 The figure above shows the very beginning of the dependency graph of the
12363 distribution, corresponding to the package definitions of the @code{(gnu
12364 packages bootstrap)} module. A similar figure can be generated with
12365 @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:
12366
12367 @example
12368 guix graph -t derivation \
12369 -e '(@@@@ (gnu packages bootstrap) %bootstrap-gcc)' \
12370 | dot -Tps > t.ps
12371 @end example
12372
12373 At this level of detail, things are
12374 slightly complex. First, Guile itself consists of an ELF executable,
12375 along with many source and compiled Scheme files that are dynamically
12376 loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz}
12377 tarball shown in this graph. This tarball is part of Guix's ``source''
12378 distribution, and gets inserted into the store with @code{add-to-store}
12379 (@pxref{The Store}).
12380
12381 But how do we write a derivation that unpacks this tarball and adds it
12382 to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv}
12383 derivation---the first one that gets built---uses @code{bash} as its
12384 builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls
12385 @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar},
12386 @file{xz}, and @file{mkdir} are statically-linked binaries, also part of
12387 the Guix source distribution, whose sole purpose is to allow the Guile
12388 tarball to be unpacked.
12389
12390 Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning
12391 Guile that can be used to run subsequent build programs. Its first task
12392 is to download tarballs containing the other pre-built binaries---this
12393 is what the @code{.tar.xz.drv} derivations do. Guix modules such as
12394 @code{ftp-client.scm} are used for this purpose. The
12395 @code{module-import.drv} derivations import those modules in a directory
12396 in the store, using the original layout. The
12397 @code{module-import-compiled.drv} derivations compile those modules, and
12398 write them in an output directory with the right layout. This
12399 corresponds to the @code{#:modules} argument of
12400 @code{build-expression->derivation} (@pxref{Derivations}).
12401
12402 Finally, the various tarballs are unpacked by the
12403 derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv},
12404 etc., at which point we have a working C tool chain.
12405
12406
12407 @unnumberedsubsec Building the Build Tools
12408
12409 Bootstrapping is complete when we have a full tool chain that does not
12410 depend on the pre-built bootstrap tools discussed above. This
12411 no-dependency requirement is verified by checking whether the files of
12412 the final tool chain contain references to the @file{/gnu/store}
12413 directories of the bootstrap inputs. The process that leads to this
12414 ``final'' tool chain is described by the package definitions found in
12415 the @code{(gnu packages commencement)} module.
12416
12417 The @command{guix graph} command allows us to ``zoom out'' compared to
12418 the graph above, by looking at the level of package objects instead of
12419 individual derivations---remember that a package may translate to
12420 several derivations, typically one derivation to download its source,
12421 one to build the Guile modules it needs, and one to actually build the
12422 package from source. The command:
12423
12424 @example
12425 guix graph -t bag \
12426 -e '(@@@@ (gnu packages commencement)
12427 glibc-final-with-bootstrap-bash)' | dot -Tps > t.ps
12428 @end example
12429
12430 @noindent
12431 produces the dependency graph leading to the ``final'' C
12432 library@footnote{You may notice the @code{glibc-intermediate} label,
12433 suggesting that it is not @emph{quite} final, but as a good
12434 approximation, we will consider it final.}, depicted below.
12435
12436 @image{images/bootstrap-packages,6in,,Dependency graph of the early packages}
12437
12438 @c See <http://lists.gnu.org/archive/html/gnu-system-discuss/2012-10/msg00000.html>.
12439 The first tool that gets built with the bootstrap binaries is
12440 GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite
12441 for all the following packages. From there Findutils and Diffutils get
12442 built.
12443
12444 Then come the first-stage Binutils and GCC, built as pseudo cross
12445 tools---i.e., with @code{--target} equal to @code{--host}. They are
12446 used to build libc. Thanks to this cross-build trick, this libc is
12447 guaranteed not to hold any reference to the initial tool chain.
12448
12449 From there the final Binutils and GCC (not shown above) are built.
12450 GCC uses @code{ld}
12451 from the final Binutils, and links programs against the just-built libc.
12452 This tool chain is used to build the other packages used by Guix and by
12453 the GNU Build System: Guile, Bash, Coreutils, etc.
12454
12455 And voilà! At this point we have the complete set of build tools that
12456 the GNU Build System expects. These are in the @code{%final-inputs}
12457 variable of the @code{(gnu packages commencement)} module, and are
12458 implicitly used by any package that uses @code{gnu-build-system}
12459 (@pxref{Build Systems, @code{gnu-build-system}}).
12460
12461
12462 @unnumberedsubsec Building the Bootstrap Binaries
12463
12464 Because the final tool chain does not depend on the bootstrap binaries,
12465 those rarely need to be updated. Nevertheless, it is useful to have an
12466 automated way to produce them, should an update occur, and this is what
12467 the @code{(gnu packages make-bootstrap)} module provides.
12468
12469 The following command builds the tarballs containing the bootstrap
12470 binaries (Guile, Binutils, GCC, libc, and a tarball containing a mixture
12471 of Coreutils and other basic command-line tools):
12472
12473 @example
12474 guix build bootstrap-tarballs
12475 @end example
12476
12477 The generated tarballs are those that should be referred to in the
12478 @code{(gnu packages bootstrap)} module mentioned at the beginning of
12479 this section.
12480
12481 Still here? Then perhaps by now you've started to wonder: when do we
12482 reach a fixed point? That is an interesting question! The answer is
12483 unknown, but if you would like to investigate further (and have
12484 significant computational and storage resources to do so), then let us
12485 know.
12486
12487 @node Porting
12488 @section Porting to a New Platform
12489
12490 As discussed above, the GNU distribution is self-contained, and
12491 self-containment is achieved by relying on pre-built ``bootstrap
12492 binaries'' (@pxref{Bootstrapping}). These binaries are specific to an
12493 operating system kernel, CPU architecture, and application binary
12494 interface (ABI). Thus, to port the distribution to a platform that is
12495 not yet supported, one must build those bootstrap binaries, and update
12496 the @code{(gnu packages bootstrap)} module to use them on that platform.
12497
12498 Fortunately, Guix can @emph{cross compile} those bootstrap binaries.
12499 When everything goes well, and assuming the GNU tool chain supports the
12500 target platform, this can be as simple as running a command like this
12501 one:
12502
12503 @example
12504 guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs
12505 @end example
12506
12507 For this to work, the @code{glibc-dynamic-linker} procedure in
12508 @code{(gnu packages bootstrap)} must be augmented to return the right
12509 file name for libc's dynamic linker on that platform; likewise,
12510 @code{system->linux-architecture} in @code{(gnu packages linux)} must be
12511 taught about the new platform.
12512
12513 Once these are built, the @code{(gnu packages bootstrap)} module needs
12514 to be updated to refer to these binaries on the target platform. That
12515 is, the hashes and URLs of the bootstrap tarballs for the new platform
12516 must be added alongside those of the currently supported platforms. The
12517 bootstrap Guile tarball is treated specially: it is expected to be
12518 available locally, and @file{gnu/local.mk} has rules do download it for
12519 the supported architectures; a rule for the new platform must be added
12520 as well.
12521
12522 In practice, there may be some complications. First, it may be that the
12523 extended GNU triplet that specifies an ABI (like the @code{eabi} suffix
12524 above) is not recognized by all the GNU tools. Typically, glibc
12525 recognizes some of these, whereas GCC uses an extra @code{--with-abi}
12526 configure flag (see @code{gcc.scm} for examples of how to handle this).
12527 Second, some of the required packages could fail to build for that
12528 platform. Lastly, the generated binaries could be broken for some
12529 reason.
12530
12531 @c *********************************************************************
12532 @include contributing.texi
12533
12534 @c *********************************************************************
12535 @node Acknowledgments
12536 @chapter Acknowledgments
12537
12538 Guix is based on the @uref{http://nixos.org/nix/, Nix package manager},
12539 which was designed and
12540 implemented by Eelco Dolstra, with contributions from other people (see
12541 the @file{nix/AUTHORS} file in Guix.) Nix pioneered functional package
12542 management, and promoted unprecedented features, such as transactional
12543 package upgrades and rollbacks, per-user profiles, and referentially
12544 transparent build processes. Without this work, Guix would not exist.
12545
12546 The Nix-based software distributions, Nixpkgs and NixOS, have also been
12547 an inspiration for Guix.
12548
12549 GNU@tie{}Guix itself is a collective work with contributions from a
12550 number of people. See the @file{AUTHORS} file in Guix for more
12551 information on these fine people. The @file{THANKS} file lists people
12552 who have helped by reporting bugs, taking care of the infrastructure,
12553 providing artwork and themes, making suggestions, and more---thank you!
12554
12555
12556 @c *********************************************************************
12557 @node GNU Free Documentation License
12558 @appendix GNU Free Documentation License
12559
12560 @include fdl-1.3.texi
12561
12562 @c *********************************************************************
12563 @node Concept Index
12564 @unnumbered Concept Index
12565 @printindex cp
12566
12567 @node Programming Index
12568 @unnumbered Programming Index
12569 @syncodeindex tp fn
12570 @syncodeindex vr fn
12571 @printindex fn
12572
12573 @bye
12574
12575 @c Local Variables:
12576 @c ispell-local-dictionary: "american";
12577 @c End: