services: Add '%desktop-services'.
[jackhill/guix/guix.git] / doc / guix.texi
CommitLineData
568717fd
LC
1\input texinfo
2@c -*-texinfo-*-
3
4@c %**start of header
5@setfilename guix.info
6@documentencoding UTF-8
f8348b91 7@settitle GNU Guix Reference Manual
568717fd
LC
8@c %**end of header
9
10@include version.texi
7df7a74e
NK
11
12@copying
4379c35b 13Copyright @copyright{} 2012, 2013, 2014, 2015 Ludovic Courtès@*
af8a56b8 14Copyright @copyright{} 2013, 2014 Andreas Enge@*
7df7a74e
NK
15Copyright @copyright{} 2013 Nikita Karetnikov
16
17Permission is granted to copy, distribute and/or modify this document
18under the terms of the GNU Free Documentation License, Version 1.3 or
19any later version published by the Free Software Foundation; with no
20Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
21copy of the license is included in the section entitled ``GNU Free
22Documentation License''.
23@end copying
568717fd 24
eeaf4427 25@dircategory Package management
568717fd
LC
26@direntry
27* guix: (guix). Guix, the functional package manager.
e49951eb 28* guix package: (guix)Invoking guix package
eeaf4427 29 Managing packages with Guix.
e49951eb 30* guix build: (guix)Invoking guix build
568717fd 31 Building packages with Guix.
054e8576
LC
32* guix system: (guix)Invoking guix system
33 Managing the operating system configuration.
568717fd 34@end direntry
568717fd 35
372c4bbc
DT
36@dircategory Software development
37@direntry
38* guix environment: (guix)Invoking guix environment
39 Building development environments with Guix.
40@end direntry
41
568717fd 42@titlepage
7730d112
LC
43@title GNU Guix Reference Manual
44@subtitle Using the GNU Guix Functional Package Manager
568717fd 45@author Ludovic Courtès
da7cabd4 46@author Andreas Enge
acc08466 47@author Nikita Karetnikov
568717fd
LC
48
49@page
50@vskip 0pt plus 1filll
51Edition @value{EDITION} @*
52@value{UPDATED} @*
53
7df7a74e 54@insertcopying
568717fd
LC
55@end titlepage
56
568717fd
LC
57@contents
58
59@c *********************************************************************
60@node Top
f8348b91 61@top GNU Guix
568717fd 62
f8348b91
LC
63This document describes GNU Guix version @value{VERSION}, a functional
64package management tool written for the GNU system.
568717fd
LC
65
66@menu
67* Introduction:: What is Guix about?
bd5e766b 68* Installation:: Installing Guix.
eeaf4427 69* Package Management:: Package installation, upgrade, etc.
568717fd
LC
70* Programming Interface:: Using Guix in Scheme.
71* Utilities:: Package management commands.
a1ba8475 72* GNU Distribution:: Software for your friendly GNU system.
9bf3c1a7 73* Contributing:: Your help needed!
568717fd
LC
74
75* Acknowledgments:: Thanks!
76* GNU Free Documentation License:: The license of this manual.
77* Concept Index:: Concepts.
a85b83d2 78* Programming Index:: Data types, functions, and variables.
aaa3eaa9
LC
79
80@detailmenu
81 --- The Detailed Node Listing ---
82
83Installation
84
85* Requirements:: Software needed to build and run Guix.
ec0339cd 86* Running the Test Suite:: Testing Guix.
aaa3eaa9
LC
87* Setting Up the Daemon:: Preparing the build daemon's environment.
88* Invoking guix-daemon:: Running the build daemon.
89
90Setting Up the Daemon
91
92* Build Environment Setup:: Preparing the isolated build environment.
93* Daemon Offload Setup:: Offloading builds to remote machines.
94
95Package Management
96
97* Features:: How Guix will make your life brighter.
98* Invoking guix package:: Package installation, removal, etc.
99* Emacs Interface:: Package management from Emacs.
100* Substitutes:: Downloading pre-built binaries.
101* Packages with Multiple Outputs:: Single source package, multiple outputs.
102* Invoking guix gc:: Running the garbage collector.
103* Invoking guix pull:: Fetching the latest Guix and distribution.
104* Invoking guix archive:: Exporting and importing store files.
105
106Programming Interface
107
108* Defining Packages:: Defining new packages.
109* Build Systems:: Specifying how packages are built.
110* The Store:: Manipulating the package store.
111* Derivations:: Low-level interface to package derivations.
112* The Store Monad:: Purely functional interface to the store.
113* G-Expressions:: Manipulating build expressions.
114
115Utilities
116
117* Invoking guix build:: Building packages from the command line.
118* Invoking guix download:: Downloading a file and printing its hash.
119* Invoking guix hash:: Computing the cryptographic hash of a file.
120* Invoking guix import:: Importing package definitions.
121* Invoking guix refresh:: Updating package definitions.
122* Invoking guix lint:: Finding errors in package definitions.
123* Invoking guix environment:: Setting up development environments.
aff8ce7c 124* Invoking guix publish:: Sharing substitutes.
aaa3eaa9
LC
125
126GNU Distribution
127
128* System Installation:: Installing the whole operating system.
35ed9306 129* System Configuration:: Configuring the operating system.
aaa3eaa9
LC
130* Installing Debugging Files:: Feeding the debugger.
131* Security Updates:: Deploying security fixes quickly.
132* Package Modules:: Packages from the programmer's viewpoint.
133* Packaging Guidelines:: Growing the distribution.
134* Bootstrapping:: GNU/Linux built from scratch.
135* Porting:: Targeting another platform or kernel.
136
137System Configuration
138
139* Using the Configuration System:: Customizing your GNU system.
140* operating-system Reference:: Detail of operating-system declarations.
141* File Systems:: Configuring file system mounts.
142* Mapped Devices:: Block device extra processing.
143* User Accounts:: Specifying user accounts.
598e19dc 144* Locales:: Language and cultural convention settings.
aaa3eaa9
LC
145* Services:: Specifying system services.
146* Setuid Programs:: Programs running with root privileges.
996ed739 147* Name Service Switch:: Configuring libc's name service switch.
aaa3eaa9
LC
148* Initial RAM Disk:: Linux-Libre bootstrapping.
149* GRUB Configuration:: Configuring the boot loader.
150* Invoking guix system:: Instantiating a system configuration.
151* Defining Services:: Adding new service definitions.
152
153Services
154
155* Base Services:: Essential system services.
156* Networking Services:: Network setup, SSH daemon, etc.
157* X Window:: Graphical display.
aa4ed923 158* Various Services:: Other services.
aaa3eaa9
LC
159
160Packaging Guidelines
161
ec0339cd
LC
162* Software Freedom:: What may go into the distribution.
163* Package Naming:: What's in a name?
164* Version Numbers:: When the name is not enough.
165* Python Modules:: Taming the snake.
166* Perl Modules:: Little pearls.
167* Fonts:: Fond of fonts.
aaa3eaa9
LC
168
169@end detailmenu
568717fd
LC
170@end menu
171
172@c *********************************************************************
173@node Introduction
174@chapter Introduction
175
c80e7e55
LC
176GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks''
177using the international phonetic alphabet (IPA).} is a functional
178package management tool for the GNU system. Package management consists
4bfc4ea3
NK
179of all activities that relate to building packages from sources,
180honoring their build-time and run-time dependencies,
c80e7e55
LC
181installing packages in user environments, upgrading installed packages
182to new versions or rolling back to a previous set, removing unused
183software packages, etc.
568717fd
LC
184
185@cindex functional package management
186The term @dfn{functional} refers to a specific package management
187discipline. In Guix, the package build and installation process is seen
4bfc4ea3
NK
188as a function, in the mathematical sense. That function takes inputs,
189such as build scripts, a compiler, and libraries, and
190returns an installed package. As a pure function, its result depends
568717fd
LC
191solely on its inputs---for instance, it cannot refer to software or
192scripts that were not explicitly passed as inputs. A build function
4bfc4ea3
NK
193always produces the same result when passed a given set of inputs. It
194cannot alter the system's environment in
568717fd
LC
195any way; for instance, it cannot create, modify, or delete files outside
196of its build and installation directories. This is achieved by running
e900c503 197build processes in isolated environments (or @dfn{containers}), where only their
4bfc4ea3 198explicit inputs are visible.
568717fd 199
e531ac2a 200@cindex store
568717fd 201The result of package build functions is @dfn{cached} in the file
e531ac2a
LC
202system, in a special directory called @dfn{the store} (@pxref{The
203Store}). Each package is installed in a directory of its own, in the
834129e0 204store---by default under @file{/gnu/store}. The directory name contains
568717fd
LC
205a hash of all the inputs used to build that package; thus, changing an
206input yields a different directory name.
207
208This approach is the foundation of Guix's salient features: support for
4bfc4ea3 209transactional package upgrade and rollback, per-user installation, and
eeaf4427 210garbage collection of packages (@pxref{Features}).
568717fd 211
4bfc4ea3 212Guix has a command-line interface, which allows users to build, install,
568717fd 213upgrade, and remove packages, as well as a Scheme programming interface.
568717fd 214
3ca2731c
LC
215@cindex Guix System Distribution
216@cindex GSD
a1ba8475 217Last but not least, Guix is used to build a distribution of the GNU
3ca2731c
LC
218system, with many GNU and non-GNU free software packages. The Guix
219System Distribution, or GNU@tie{}GSD, takes advantage of the core
220properties of Guix at the system level. With GNU@tie{}GSD, users
221@emph{declare} all aspects of the operating system configuration, and
222Guix takes care of instantiating that configuration in a reproducible,
223stateless fashion. @xref{GNU Distribution}.
a1ba8475 224
bd5e766b
LC
225@c *********************************************************************
226@node Installation
227@chapter Installation
228
48febeb8
LC
229GNU Guix is available for download from its website at
230@url{http://www.gnu.org/software/guix/}. This section describes the
231software requirements of Guix, as well as how to install it and get
232ready to use it.
bd5e766b 233
5af6de3e
LC
234Note that this section is concerned with the installation of the package
235manager, which can be done on top of a running GNU/Linux system. If,
236instead, you want to install the complete GNU operating system,
6621cdb6 237@pxref{System Installation}.
5af6de3e 238
bd5e766b 239@menu
09722b11 240* Binary Installation:: Getting Guix running in no time!
bd5e766b 241* Requirements:: Software needed to build and run Guix.
ec0339cd 242* Running the Test Suite:: Testing Guix.
bd5e766b
LC
243* Setting Up the Daemon:: Preparing the build daemon's environment.
244* Invoking guix-daemon:: Running the build daemon.
245@end menu
246
09722b11
LC
247@node Binary Installation
248@section Binary Installation
249
250This section describes how to install Guix on an arbitrary system from a
251self-contained tarball providing binaries for Guix and for all its
252dependencies. This is often quicker than installing from source, which
253is described in the next sections. The only requirement is to have
254GNU@tie{}tar and Xz.
255
256Installing goes along these lines:
257
258@enumerate
259@item
260Download the binary tarball from
261@code{ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz}@footnote{As
262usual, make sure to download the associated @file{.sig} file and to
263verify the authenticity of the tarball against it!}, where @var{system}
264is @code{x86_64-linux} for an @code{x86_64} machine already running the
265kernel Linux, and so on.
266
267@item
268As @code{root}, run:
269
270@example
271# cd /
272# tar xf guix-binary-@value{VERSION}.@var{system}.tar.xz
273@end example
274
275This creates @file{/gnu/store} (@pxref{The Store}), @file{/var/guix},
276and @file{/root/.guix-profile}. @file{/root/.guix-profile} is a
277ready-to-use profile for @code{root} where Guix is installed.
278
5dc3ce5f
LC
279Do @emph{not} unpack the tarball on a working Guix system since that
280would overwrite its own essential files.
281
09722b11 282@item
39f8ed14
LC
283Create the group and user accounts for build users as explained below
284(@pxref{Build Environment Setup}), and run the daemon:
09722b11
LC
285
286@example
287# /root/.guix-profile/bin/guix-daemon --build-users-group=guix-builder
288@end example
289
290@item
291Make the @command{guix} command available to other users on the machine,
292for instance with:
293
294@example
295# mkdir -p /usr/local/bin
296# cd /usr/local/bin
297# ln -s /root/.guix-profile/bin/guix
298@end example
39f8ed14
LC
299
300@item
301To use substitutes from @code{hydra.gnu.org} (@pxref{Substitutes}),
302authorize them:
303
304@example
305# guix archive --authorize < /root/.guix-profile/share/guix/hydra.gnu.org.pub
306@end example
09722b11
LC
307@end enumerate
308
309And that's it!
310
5dc3ce5f 311The @code{guix} package must remain available in @code{root}'s
09722b11
LC
312profile, or it would become subject to garbage collection---in which
313case you would find yourself badly handicapped by the lack of the
314@command{guix} command.
315
39f8ed14
LC
316The tarball in question can be (re)produced and verified simply by
317running the following command in the Guix source tree:
09722b11
LC
318
319@example
320make guix-binary.@var{system}.tar.xz
321@end example
322
323
bd5e766b
LC
324@node Requirements
325@section Requirements
326
09722b11
LC
327This section lists requirements when building Guix from source. The
328build procedure for Guix is the same as for other GNU software, and is
329not covered here. Please see the files @file{README} and @file{INSTALL}
330in the Guix source tree for additional details.
331
bd5e766b
LC
332GNU Guix depends on the following packages:
333
334@itemize
4a328f73 335@item @url{http://gnu.org/software/guile/, GNU Guile}, version 2.0.5 or later;
288dca55 336@item @url{http://gnupg.org/, GNU libgcrypt};
8a96bd4b
ID
337@end itemize
338
339The following dependencies are optional:
340
341@itemize
288dca55 342@item
8a96bd4b 343Installing
288dca55 344@url{http://savannah.nongnu.org/projects/guile-json/, Guile-JSON} will
2f7d2d91
LC
345allow you to use the @command{guix import pypi} command (@pxref{Invoking
346guix import}). It is of
288dca55 347interest primarily for developers and not for casual users.
8a96bd4b
ID
348@item
349Installing @uref{http://gnutls.org/, GnuTLS-Guile} will
350allow you to access @code{https} URLs with the @command{guix download}
d45dc6da
EB
351command (@pxref{Invoking guix download}), the @command{guix import pypi}
352command, and the @command{guix import cpan} command. This is primarily
353of interest to developers. @xref{Guile Preparations, how to install the
354GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}.
bd5e766b
LC
355@end itemize
356
357Unless @code{--disable-daemon} was passed to @command{configure}, the
358following packages are also needed:
359
360@itemize
361@item @url{http://sqlite.org, SQLite 3}
362@item @url{http://www.bzip.org, libbz2}
363@item @url{http://gcc.gnu.org, GCC's g++}
364@end itemize
365
4bfc4ea3
NK
366When a working installation of @url{http://nixos.org/nix/, the Nix package
367manager} is available, you
bd5e766b 368can instead configure Guix with @code{--disable-daemon}. In that case,
4bfc4ea3 369Nix replaces the three dependencies above.
bd5e766b 370
b22a12fd
LC
371Guix is compatible with Nix, so it is possible to share the same store
372between both. To do so, you must pass @command{configure} not only the
373same @code{--with-store-dir} value, but also the same
4bfc4ea3
NK
374@code{--localstatedir} value. The latter is essential because it
375specifies where the database that stores metadata about the store is
834129e0 376located, among other things. The default values for Nix are
b22a12fd 377@code{--with-store-dir=/nix/store} and @code{--localstatedir=/nix/var}.
4bfc4ea3
NK
378Note that @code{--disable-daemon} is not required if
379your goal is to share the store with Nix.
b22a12fd 380
ec0339cd
LC
381@node Running the Test Suite
382@section Running the Test Suite
383
384After a successful @command{configure} and @code{make} run, it is a good
385idea to run the test suite. It can help catch issues with the setup or
386environment, or bugs in Guix itself---and really, reporting test
387failures is a good way to help improve the software. To run the test
388suite, type:
389
390@example
391make check
392@end example
393
394Test cases can run in parallel: you can use the @code{-j} option of
395GNU@tie{}make to speed things up. The first run may take a few minutes
396on a recent machine; subsequent runs will be faster because the store
397that is created for test purposes will already have various things in
398cache.
399
400Upon failure, please email @email{bug-guix@@gnu.org} and attach the
401@file{test-suite.log} file. When @file{tests/@var{something}.scm}
402fails, please also attach the @file{@var{something}.log} file available
403in the top-level build directory. Please specify the Guix version being
404used as well as version numbers of the dependencies
405(@pxref{Requirements}) in your message.
406
bd5e766b
LC
407@node Setting Up the Daemon
408@section Setting Up the Daemon
409
410@cindex daemon
411Operations such as building a package or running the garbage collector
49e6291a 412are all performed by a specialized process, the @dfn{build daemon}, on
bd5e766b
LC
413behalf of clients. Only the daemon may access the store and its
414associated database. Thus, any operation that manipulates the store
415goes through the daemon. For instance, command-line tools such as
e49951eb 416@command{guix package} and @command{guix build} communicate with the
bd5e766b
LC
417daemon (@i{via} remote procedure calls) to instruct it what to do.
418
49e6291a 419The following sections explain how to prepare the build daemon's
225dafde
LC
420environment. Also @ref{Substitutes}, for information on how to allow
421the daemon to download pre-built binaries.
49e6291a
LC
422
423@menu
424* Build Environment Setup:: Preparing the isolated build environment.
425* Daemon Offload Setup:: Offloading builds to remote machines.
426@end menu
427
428@node Build Environment Setup
429@subsection Build Environment Setup
430
bd5e766b
LC
431In a standard multi-user setup, Guix and its daemon---the
432@command{guix-daemon} program---are installed by the system
834129e0 433administrator; @file{/gnu/store} is owned by @code{root} and
bd5e766b
LC
434@command{guix-daemon} runs as @code{root}. Unprivileged users may use
435Guix tools to build packages or otherwise access the store, and the
436daemon will do it on their behalf, ensuring that the store is kept in a
437consistent state, and allowing built packages to be shared among users.
438
439@cindex build users
440When @command{guix-daemon} runs as @code{root}, you may not want package
441build processes themselves to run as @code{root} too, for obvious
442security reasons. To avoid that, a special pool of @dfn{build users}
443should be created for use by build processes started by the daemon.
444These build users need not have a shell and a home directory: they will
445just be used when the daemon drops @code{root} privileges in build
446processes. Having several such users allows the daemon to launch
447distinct build processes under separate UIDs, which guarantees that they
448do not interfere with each other---an essential feature since builds are
449regarded as pure functions (@pxref{Introduction}).
450
451On a GNU/Linux system, a build user pool may be created like this (using
452Bash syntax and the @code{shadow} commands):
453
091196b3
LC
454@c See http://lists.gnu.org/archive/html/bug-guix/2013-01/msg00239.html
455@c for why `-G' is needed.
bd5e766b 456@example
eabebb81 457# groupadd --system guix-builder
bd5e766b
LC
458# for i in `seq 1 10`;
459 do
091196b3
LC
460 useradd -g guix-builder -G guix-builder \
461 -d /var/empty -s `which nologin` \
4d1a2b50
LC
462 -c "Guix build user $i" --system \
463 guix-builder$i;
bd5e766b
LC
464 done
465@end example
466
467@noindent
468The @code{guix-daemon} program may then be run as @code{root} with:
469
470@example
471# guix-daemon --build-users-group=guix-builder
472@end example
473
e900c503 474@cindex chroot
b095792f
LC
475@noindent
476This way, the daemon starts build processes in a chroot, under one of
477the @code{guix-builder} users. On GNU/Linux, by default, the chroot
6dc99317
LC
478environment contains nothing but:
479
480@c Keep this list in sync with libstore/build.cc! -----------------------
481@itemize
482@item
4743a4da
LC
483a minimal @code{/dev} directory, created mostly independently from the
484host @code{/dev}@footnote{``Mostly'', because while the set of files
485that appear in the chroot's @code{/dev} is fixed, most of these files
486can only be created if the host has them.};
487
488@item
489the @code{/proc} directory; it only shows the container's processes
490since a separate PID name space is used;
6dc99317
LC
491
492@item
493@file{/etc/passwd} with an entry for the current user and an entry for
494user @file{nobody};
495
496@item
497@file{/etc/group} with an entry for the user's group;
498
499@item
500@file{/etc/hosts} with an entry that maps @code{localhost} to
501@code{127.0.0.1};
502
503@item
504a writable @file{/tmp} directory.
505@end itemize
b095792f 506
d43eb499 507If you are installing Guix as an unprivileged user, it is still
bd5e766b
LC
508possible to run @command{guix-daemon}. However, build processes will
509not be isolated from one another, and not from the rest of the system.
510Thus, build processes may interfere with each other, and may access
511programs, libraries, and other files available on the system---making it
512much harder to view them as @emph{pure} functions.
513
49e6291a
LC
514
515@node Daemon Offload Setup
516@subsection Using the Offload Facility
517
518@cindex offloading
4ec2e92d
LC
519@cindex build hook
520When desired, the build daemon can @dfn{offload}
521derivation builds to other machines
49e6291a
LC
522running Guix, using the @code{offload} @dfn{build hook}. When that
523feature is enabled, a list of user-specified build machines is read from
524@file{/etc/guix/machines.scm}; anytime a build is requested, for
525instance via @code{guix build}, the daemon attempts to offload it to one
526of the machines that satisfies the derivation's constraints, in
527particular its system type---e.g., @file{x86_64-linux}. Missing
528prerequisites for the build are copied over SSH to the target machine,
529which then proceeds with the build; upon success the output(s) of the
530build are copied back to the initial machine.
531
4ec2e92d 532The @file{/etc/guix/machines.scm} file typically looks like this:
49e6291a
LC
533
534@example
535(list (build-machine
536 (name "eightysix.example.org")
537 (system "x86_64-linux")
538 (user "bob")
539 (speed 2.)) ; incredibly fast!
540
541 (build-machine
542 (name "meeps.example.org")
543 (system "mips64el-linux")
544 (user "alice")
545 (private-key
546 (string-append (getenv "HOME")
547 "/.ssh/id-rsa-for-guix"))))
548@end example
549
550@noindent
551In the example above we specify a list of two build machines, one for
552the @code{x86_64} architecture and one for the @code{mips64el}
4ec2e92d
LC
553architecture.
554
555In fact, this file is---not surprisingly!---a Scheme file that is
556evaluated when the @code{offload} hook is started. Its return value
557must be a list of @code{build-machine} objects. While this example
558shows a fixed list of build machines, one could imagine, say, using
559DNS-SD to return a list of potential build machines discovered in the
560local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using
c678a4ee
LC
561Avahi in Guile Scheme Programs}). The @code{build-machine} data type is
562detailed below.
4ec2e92d 563
c678a4ee
LC
564@deftp {Data Type} build-machine
565This data type represents build machines the daemon may offload builds
566to. The important fields are:
49e6291a
LC
567
568@table @code
569
570@item name
571The remote machine's host name.
572
573@item system
c678a4ee 574The remote machine's system type---e.g., @code{"x86_64-linux"}.
49e6291a
LC
575
576@item user
577The user account to use when connecting to the remote machine over SSH.
578Note that the SSH key pair must @emph{not} be passphrase-protected, to
579allow non-interactive logins.
580
581@end table
582
4ec2e92d 583A number of optional fields may be specified:
49e6291a
LC
584
585@table @code
586
cecd72d5
LC
587@item port
588Port number of the machine's SSH server (default: 22).
589
49e6291a
LC
590@item private-key
591The SSH private key file to use when connecting to the machine.
592
593@item parallel-builds
594The number of builds that may run in parallel on the machine (1 by
595default.)
596
597@item speed
598A ``relative speed factor''. The offload scheduler will tend to prefer
599machines with a higher speed factor.
600
601@item features
602A list of strings denoting specific features supported by the machine.
603An example is @code{"kvm"} for machines that have the KVM Linux modules
604and corresponding hardware support. Derivations can request features by
605name, and they will be scheduled on matching build machines.
606
607@end table
c678a4ee 608@end deftp
49e6291a
LC
609
610The @code{guix} command must be in the search path on the build
611machines, since offloading works by invoking the @code{guix archive} and
612@code{guix build} commands.
613
614There's one last thing to do once @file{machines.scm} is in place. As
615explained above, when offloading, files are transferred back and forth
616between the machine stores. For this to work, you need to generate a
617key pair to allow the daemon to export signed archives of files from the
618store (@pxref{Invoking guix archive}):
619
620@example
621# guix archive --generate-key
622@end example
623
624@noindent
625Thus, when receiving files, a machine's build daemon can make sure they
626are genuine, have not been tampered with, and that they are signed by an
627authorized key.
628
629
bd5e766b
LC
630@node Invoking guix-daemon
631@section Invoking @command{guix-daemon}
632
633The @command{guix-daemon} program implements all the functionality to
634access the store. This includes launching build processes, running the
635garbage collector, querying the availability of a build result, etc. It
636is normally run as @code{root} like this:
637
638@example
639# guix-daemon --build-users-group=guix-builder
640@end example
641
642@noindent
081145cf 643For details on how to set it up, @pxref{Setting Up the Daemon}.
bd5e766b 644
e900c503
LC
645@cindex chroot
646@cindex container, build environment
647@cindex build environment
648@cindex reproducible builds
bd5e766b
LC
649By default, @command{guix-daemon} launches build processes under
650different UIDs, taken from the build group specified with
651@code{--build-users-group}. In addition, each build process is run in a
652chroot environment that only contains the subset of the store that the
653build process depends on, as specified by its derivation
654(@pxref{Programming Interface, derivation}), plus a set of specific
655system directories. By default, the latter contains @file{/dev} and
e900c503
LC
656@file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a
657@dfn{container}: in addition to having its own file system tree, it has
658a separate mount name space, its own PID name space, network name space,
659etc. This helps achieve reproducible builds (@pxref{Features}).
bd5e766b 660
cbc538fe
LC
661When the daemon performs a build on behalf of the user, it creates a
662build directory under @file{/tmp} or under the directory specified by
663its @code{TMPDIR} environment variable; this directory is shared with
664the container for the duration of the build. Be aware that using a
665directory other than @file{/tmp} can affect build results---for example,
666with a longer directory name, a build process that uses Unix-domain
667sockets might hit the name length limitation for @code{sun_path}, which
668it would otherwise not hit.
669
670The build directory is automatically deleted upon completion, unless the
671build failed and the client specified @option{--keep-failed}
672(@pxref{Invoking guix build, @option{--keep-failed}}).
673
bd5e766b
LC
674The following command-line options are supported:
675
676@table @code
677@item --build-users-group=@var{group}
678Take users from @var{group} to run build processes (@pxref{Setting Up
679the Daemon, build users}).
680
6858f9d1 681@item --no-substitutes
b5385b52 682@cindex substitutes
6858f9d1 683Do not use substitutes for build products. That is, always build things
c4202d60
LC
684locally instead of allowing downloads of pre-built binaries
685(@pxref{Substitutes}).
6858f9d1 686
b5385b52
LC
687By default substitutes are used, unless the client---such as the
688@command{guix package} command---is explicitly invoked with
689@code{--no-substitutes}.
690
691When the daemon runs with @code{--no-substitutes}, clients can still
692explicitly enable substitution @i{via} the @code{set-build-options}
693remote procedure call (@pxref{The Store}).
694
9176607e
LC
695@item --substitute-urls=@var{urls}
696Consider @var{urls} the default whitespace-separated list of substitute
697source URLs. When this option is omitted, @code{http://hydra.gnu.org}
698is used.
699
700This means that substitutes may be downloaded from @var{urls}, as long
701as they are signed by a trusted signature (@pxref{Substitutes}).
702
4ec2e92d
LC
703@cindex build hook
704@item --no-build-hook
705Do not use the @dfn{build hook}.
706
707The build hook is a helper program that the daemon can start and to
708which it submits build requests. This mechanism is used to offload
709builds to other machines (@pxref{Daemon Offload Setup}).
710
bd5e766b
LC
711@item --cache-failures
712Cache build failures. By default, only successful builds are cached.
713
714@item --cores=@var{n}
715@itemx -c @var{n}
716Use @var{n} CPU cores to build each derivation; @code{0} means as many
717as available.
718
6efc160e 719The default value is @code{0}, but it may be overridden by clients, such
e49951eb
MW
720as the @code{--cores} option of @command{guix build} (@pxref{Invoking
721guix build}).
bd5e766b
LC
722
723The effect is to define the @code{NIX_BUILD_CORES} environment variable
724in the build process, which can then use it to exploit internal
725parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}.
726
727@item --max-jobs=@var{n}
728@itemx -M @var{n}
729Allow at most @var{n} build jobs in parallel. The default value is
f6526eb3
LC
730@code{1}. Setting it to @code{0} means that no builds will be performed
731locally; instead, the daemon will offload builds (@pxref{Daemon Offload
732Setup}), or simply fail.
bd5e766b
LC
733
734@item --debug
735Produce debugging output.
736
737This is useful to debug daemon start-up issues, but then it may be
738overridden by clients, for example the @code{--verbosity} option of
e49951eb 739@command{guix build} (@pxref{Invoking guix build}).
bd5e766b
LC
740
741@item --chroot-directory=@var{dir}
742Add @var{dir} to the build chroot.
743
744Doing this may change the result of build processes---for instance if
745they use optional dependencies found in @var{dir} when it is available,
746and not otherwise. For that reason, it is not recommended to do so.
747Instead, make sure that each derivation declares all the inputs that it
748needs.
749
750@item --disable-chroot
751Disable chroot builds.
752
753Using this option is not recommended since, again, it would allow build
754processes to gain access to undeclared dependencies.
755
756@item --disable-log-compression
757Disable compression of the build logs.
758
1da983b9
LC
759Unless @code{--lose-logs} is used, all the build logs are kept in the
760@var{localstatedir}. To save space, the daemon automatically compresses
761them with bzip2 by default. This option disables that.
762
ab3893d7
LC
763@item --disable-deduplication
764@cindex deduplication
bd5e766b
LC
765Disable automatic file ``deduplication'' in the store.
766
1da983b9 767By default, files added to the store are automatically ``deduplicated'':
ab3893d7
LC
768if a newly added file is identical to another one found in the store,
769the daemon makes the new file a hard link to the other file. This can
770noticeably reduce disk usage, at the expense of slightly increasde
771input/output load at the end of a build process. This option disables
772this optimization.
1da983b9 773
6e37066e
LC
774@item --gc-keep-outputs[=yes|no]
775Tell whether the garbage collector (GC) must keep outputs of live
776derivations.
777
778When set to ``yes'', the GC will keep the outputs of any live derivation
779available in the store---the @code{.drv} files. The default is ``no'',
780meaning that derivation outputs are kept only if they are GC roots.
781
782@item --gc-keep-derivations[=yes|no]
783Tell whether the garbage collector (GC) must keep derivations
784corresponding to live outputs.
785
786When set to ``yes'', as is the case by default, the GC keeps
787derivations---i.e., @code{.drv} files---as long as at least one of their
788outputs is live. This allows users to keep track of the origins of
789items in their store. Setting it to ``no'' saves a bit of disk space.
790
791Note that when both @code{--gc-keep-derivations} and
792@code{--gc-keep-outputs} are used, the effect is to keep all the build
793prerequisites (the sources, compiler, libraries, and other build-time
794tools) of live objects in the store, regardless of whether these
795prerequisites are live. This is convenient for developers since it
796saves rebuilds or downloads.
797
bd5e766b
LC
798@item --impersonate-linux-2.6
799On Linux-based systems, impersonate Linux 2.6. This means that the
800kernel's @code{uname} system call will report 2.6 as the release number.
801
802This might be helpful to build programs that (usually wrongfully) depend
803on the kernel version number.
804
805@item --lose-logs
806Do not keep build logs. By default they are kept under
ce33631f 807@code{@var{localstatedir}/guix/log}.
bd5e766b
LC
808
809@item --system=@var{system}
810Assume @var{system} as the current system type. By default it is the
811architecture/kernel pair found at configure time, such as
812@code{x86_64-linux}.
b8d2aa26
LC
813
814@item --listen=@var{socket}
815Listen for connections on @var{socket}, the file name of a Unix-domain
816socket. The default socket is
817@file{@var{localstatedir}/daemon-socket/socket}. This option is only
818useful in exceptional circumstances, such as if you need to run several
819daemons on the same machine.
bd5e766b
LC
820@end table
821
822
eeaf4427
LC
823@c *********************************************************************
824@node Package Management
825@chapter Package Management
826
f8348b91 827The purpose of GNU Guix is to allow users to easily install, upgrade, and
eeaf4427
LC
828remove software packages, without having to know about their build
829procedure or dependencies. Guix also goes beyond this obvious set of
830features.
831
832This chapter describes the main features of Guix, as well as the package
c1941588
LC
833management tools it provides. Two user interfaces are provided for
834routine package management tasks: a command-line interface
835(@pxref{Invoking guix package, @code{guix package}}), and a visual user
836interface in Emacs (@pxref{Emacs Interface}).
eeaf4427
LC
837
838@menu
839* Features:: How Guix will make your life brighter.
e49951eb 840* Invoking guix package:: Package installation, removal, etc.
457f60fa 841* Emacs Interface:: Package management from Emacs.
c4202d60 842* Substitutes:: Downloading pre-built binaries.
760c60d6 843* Packages with Multiple Outputs:: Single source package, multiple outputs.
e49951eb 844* Invoking guix gc:: Running the garbage collector.
f651b477 845* Invoking guix pull:: Fetching the latest Guix and distribution.
760c60d6 846* Invoking guix archive:: Exporting and importing store files.
eeaf4427
LC
847@end menu
848
849@node Features
850@section Features
851
852When using Guix, each package ends up in the @dfn{package store}, in its
853own directory---something that resembles
9a130e19
AK
854@file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string
855(note that Guix comes with an Emacs extension to shorten those file
081145cf 856names, @pxref{Emacs Prettify}.)
eeaf4427
LC
857
858Instead of referring to these directories, users have their own
859@dfn{profile}, which points to the packages that they actually want to
821b0015
LC
860use. These profiles are stored within each user's home directory, at
861@code{$HOME/.guix-profile}.
eeaf4427 862
821b0015 863For example, @code{alice} installs GCC 4.7.2. As a result,
eeaf4427 864@file{/home/alice/.guix-profile/bin/gcc} points to
834129e0 865@file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine,
821b0015
LC
866@code{bob} had already installed GCC 4.8.0. The profile of @code{bob}
867simply continues to point to
834129e0 868@file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC
821b0015 869coexist on the same system without any interference.
eeaf4427 870
e49951eb
MW
871The @command{guix package} command is the central tool to manage
872packages (@pxref{Invoking guix package}). It operates on those per-user
821b0015 873profiles, and can be used @emph{with normal user privileges}.
eeaf4427
LC
874
875The command provides the obvious install, remove, and upgrade
876operations. Each invocation is actually a @emph{transaction}: either
ba55b1cb 877the specified operation succeeds, or nothing happens. Thus, if the
e49951eb 878@command{guix package} process is terminated during the transaction,
eeaf4427
LC
879or if a power outage occurs during the transaction, then the user's
880profile remains in its previous state, and remains usable.
881
882In addition, any package transaction may be @emph{rolled back}. So, if,
883for example, an upgrade installs a new version of a package that turns
884out to have a serious bug, users may roll back to the previous instance
4af2447e
LC
885of their profile, which was known to work well. Similarly, the global
886system configuration is subject to transactional upgrades and roll-back
887(@pxref{Using the Configuration System}).
eeaf4427
LC
888
889All those packages in the package store may be @emph{garbage-collected}.
890Guix can determine which packages are still referenced by the user
fe8ff028 891profiles, and remove those that are provably no longer referenced
e49951eb 892(@pxref{Invoking guix gc}). Users may also explicitly remove old
fe8ff028
LC
893generations of their profile so that the packages they refer to can be
894collected.
eeaf4427 895
e900c503
LC
896@cindex reproducibility
897@cindex reproducible builds
eeaf4427
LC
898Finally, Guix takes a @dfn{purely functional} approach to package
899management, as described in the introduction (@pxref{Introduction}).
834129e0 900Each @file{/gnu/store} package directory name contains a hash of all the
eeaf4427
LC
901inputs that were used to build that package---compiler, libraries, build
902scripts, etc. This direct correspondence allows users to make sure a
903given package installation matches the current state of their
e900c503
LC
904distribution. It also helps maximize @dfn{build reproducibility}:
905thanks to the isolated build environments that are used, a given build
906is likely to yield bit-identical files when performed on different
907machines (@pxref{Invoking guix-daemon, container}).
eeaf4427 908
c4202d60 909@cindex substitutes
eeaf4427 910This foundation allows Guix to support @dfn{transparent binary/source
c4202d60 911deployment}. When a pre-built binary for a @file{/gnu/store} item is
18f2887b 912available from an external source---a @dfn{substitute}, Guix just
c4202d60
LC
913downloads it and unpacks it;
914otherwise, it builds the package from source, locally
915(@pxref{Substitutes}).
eeaf4427 916
f5fd4fd2
LC
917Control over the build environment is a feature that is also useful for
918developers. The @command{guix environment} command allows developers of
919a package to quickly set up the right development environment for their
920package, without having to manually install the package's dependencies
921in their profile (@pxref{Invoking guix environment}).
922
e49951eb
MW
923@node Invoking guix package
924@section Invoking @command{guix package}
eeaf4427 925
e49951eb 926The @command{guix package} command is the tool that allows users to
eeaf4427
LC
927install, upgrade, and remove packages, as well as rolling back to
928previous configurations. It operates only on the user's own profile,
929and works with normal user privileges (@pxref{Features}). Its syntax
930is:
931
932@example
e49951eb 933guix package @var{options}
eeaf4427
LC
934@end example
935
ba55b1cb 936Primarily, @var{options} specifies the operations to be performed during
eeaf4427
LC
937the transaction. Upon completion, a new profile is created, but
938previous generations of the profile remain available, should the user
939want to roll back.
940
6447738c
MW
941For example, to remove @code{lua} and install @code{guile} and
942@code{guile-cairo} in a single transaction:
943
944@example
945guix package -r lua -i guile guile-cairo
946@end example
947
b9e5c0a9 948For each user, a symlink to the user's default profile is automatically
0ec1af59 949created in @file{$HOME/.guix-profile}. This symlink always points to the
b9e5c0a9
LC
950current generation of the user's default profile. Thus, users can add
951@file{$HOME/.guix-profile/bin} to their @code{PATH} environment
952variable, and so on.
d664f1b4
LC
953@cindex search paths
954If you are not using the Guix System Distribution, consider adding the
955following lines to your @file{~/.bash_profile} (@pxref{Bash Startup
956Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned
957shells get all the right environment variable definitions:
958
959@example
960GUIX_PROFILE="$HOME/.guix-profile" \
961source "$HOME/.guix-profile/etc/profile"
962@end example
b9e5c0a9 963
4379c35b
LC
964In a multi-user setup, user profiles are stored in a place registered as
965a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points
966to (@pxref{Invoking guix gc}). That directory is normally
0ec1af59
LC
967@code{@var{localstatedir}/profiles/per-user/@var{user}}, where
968@var{localstatedir} is the value passed to @code{configure} as
4379c35b
LC
969@code{--localstatedir}, and @var{user} is the user name. The
970@file{per-user} directory is created when @command{guix-daemon} is
971started, and the @var{user} sub-directory is created by @command{guix
972package}.
0ec1af59
LC
973
974The @var{options} can be among the following:
975
eeaf4427
LC
976@table @code
977
6447738c
MW
978@item --install=@var{package} @dots{}
979@itemx -i @var{package} @dots{}
980Install the specified @var{package}s.
eeaf4427 981
6447738c 982Each @var{package} may specify either a simple package name, such as
eeaf4427 983@code{guile}, or a package name followed by a hyphen and version number,
724311a2
LC
984such as @code{guile-1.8.8} or simply @code{guile-1.8} (in the latter
985case, the newest version prefixed by @code{1.8} is selected.)
986
987If no version number is specified, the
dc5669cd
MW
988newest available version will be selected. In addition, @var{package}
989may contain a colon, followed by the name of one of the outputs of the
6e721c4d 990package, as in @code{gcc:doc} or @code{binutils-2.22:lib}
e7f34eb0
LC
991(@pxref{Packages with Multiple Outputs}). Packages with a corresponding
992name (and optionally version) are searched for among the GNU
993distribution modules (@pxref{Package Modules}).
eeaf4427 994
461572cc
LC
995@cindex propagated inputs
996Sometimes packages have @dfn{propagated inputs}: these are dependencies
997that automatically get installed along with the required package.
998
999An example is the GNU MPC library: its C header files refer to those of
1000the GNU MPFR library, which in turn refer to those of the GMP library.
1001Thus, when installing MPC, the MPFR and GMP libraries also get installed
1002in the profile; removing MPC also removes MPFR and GMP---unless they had
1003also been explicitly installed independently.
1004
ba7ea5ce 1005Besides, packages sometimes rely on the definition of environment
5924080d 1006variables for their search paths (see explanation of
ba7ea5ce 1007@code{--search-paths} below). Any missing or possibly incorrect
5924080d
LC
1008environment variable definitions are reported here.
1009
ef010c0f 1010@c XXX: keep me up-to-date
5924080d 1011Finally, when installing a GNU package, the tool reports the
ef010c0f
LC
1012availability of a newer upstream version. In the future, it may provide
1013the option of installing directly from the upstream version, even if
1014that version is not yet in the distribution.
1015
5d4b411f
LC
1016@item --install-from-expression=@var{exp}
1017@itemx -e @var{exp}
1018Install the package @var{exp} evaluates to.
1019
1020@var{exp} must be a Scheme expression that evaluates to a
1021@code{<package>} object. This option is notably useful to disambiguate
1022between same-named variants of a package, with expressions such as
1023@code{(@@ (gnu packages base) guile-final)}.
1024
1025Note that this option installs the first output of the specified
1026package, which may be insufficient when needing a specific output of a
1027multiple-output package.
1028
6447738c
MW
1029@item --remove=@var{package} @dots{}
1030@itemx -r @var{package} @dots{}
1031Remove the specified @var{package}s.
eeaf4427 1032
6447738c 1033As for @code{--install}, each @var{package} may specify a version number
13ed095c
LC
1034and/or output name in addition to the package name. For instance,
1035@code{-r glibc:debug} would remove the @code{debug} output of
1036@code{glibc}.
1037
6447738c
MW
1038@item --upgrade[=@var{regexp} @dots{}]
1039@itemx -u [@var{regexp} @dots{}]
1040Upgrade all the installed packages. If one or more @var{regexp}s are
1041specified, upgrade only installed packages whose name matches a
d5f01e48 1042@var{regexp}. Also see the @code{--do-not-upgrade} option below.
eeaf4427 1043
f651b477
LC
1044Note that this upgrades package to the latest version of packages found
1045in the distribution currently installed. To update your distribution,
1046you should regularly run @command{guix pull} (@pxref{Invoking guix
1047pull}).
1048
d5f01e48
MW
1049@item --do-not-upgrade[=@var{regexp} @dots{}]
1050When used together with the @code{--upgrade} option, do @emph{not}
1051upgrade any packages whose name matches a @var{regexp}. For example, to
1052upgrade all packages in the current profile except those containing the
1053substring ``emacs'':
1054
1055@example
1056$ guix package --upgrade . --do-not-upgrade emacs
1057@end example
1058
24e262f0
LC
1059@item --roll-back
1060Roll back to the previous @dfn{generation} of the profile---i.e., undo
1061the last transaction.
1062
1063When combined with options such as @code{--install}, roll back occurs
1064before any other actions.
1065
d9307267 1066When rolling back from the first generation that actually contains
4b2bc804
NK
1067installed packages, the profile is made to point to the @dfn{zeroth
1068generation}, which contains no files apart from its own meta-data.
d9307267 1069
82fe08ed
LC
1070Installing, removing, or upgrading packages from a generation that has
1071been rolled back to overwrites previous future generations. Thus, the
1072history of a profile's generations is always linear.
1073
b3bb82f1
AK
1074@item --switch-generation=@var{pattern}
1075@itemx -S @var{pattern}
1076Switch to a particular generation defined by @var{pattern}.
1077
1078@var{pattern} may be either a generation number or a number prefixed
1079with ``+'' or ``-''. The latter means: move forward/backward by a
1080specified number of generations. For example, if you want to return to
1081the latest generation after @code{--roll-back}, use
1082@code{--switch-generation=+1}.
1083
1084The difference between @code{--roll-back} and
1085@code{--switch-generation=-1} is that @code{--switch-generation} will
1086not make a zeroth generation, so if a specified generation does not
1087exist, the current generation will not be changed.
1088
5924080d
LC
1089@item --search-paths
1090@cindex search paths
1091Report environment variable definitions, in Bash syntax, that may be
1092needed in order to use the set of installed packages. These environment
1093variables are used to specify @dfn{search paths} for files used by some
1094of the installed packages.
1095
1096For example, GCC needs the @code{CPATH} and @code{LIBRARY_PATH}
1097environment variables to be defined so it can look for headers and
1098libraries in the user's profile (@pxref{Environment Variables,,, gcc,
1099Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C
1100library are installed in the profile, then @code{--search-paths} will
1101suggest setting these variables to @code{@var{profile}/include} and
1102@code{@var{profile}/lib}, respectively.
1103
eeaf4427
LC
1104@item --profile=@var{profile}
1105@itemx -p @var{profile}
1106Use @var{profile} instead of the user's default profile.
1107
70915c1a
LC
1108@item --verbose
1109Produce verbose output. In particular, emit the environment's build log
1110on the standard error port.
1111
eeaf4427
LC
1112@item --bootstrap
1113Use the bootstrap Guile to build the profile. This option is only
1114useful to distribution developers.
1115
1116@end table
1117
e49951eb 1118In addition to these actions @command{guix package} supports the
733b4130
LC
1119following options to query the current state of a profile, or the
1120availability of packages:
eeaf4427 1121
733b4130
LC
1122@table @option
1123
acc08466
NK
1124@item --search=@var{regexp}
1125@itemx -s @var{regexp}
5763ad92 1126List the available packages whose name, synopsis, or description matches
299112d3
LC
1127@var{regexp}. Print all the meta-data of matching packages in
1128@code{recutils} format (@pxref{Top, GNU recutils databases,, recutils,
1129GNU recutils manual}).
acc08466 1130
299112d3
LC
1131This allows specific fields to be extracted using the @command{recsel}
1132command, for instance:
1133
1134@example
e49951eb 1135$ guix package -s malloc | recsel -p name,version
299112d3
LC
1136name: glibc
1137version: 2.17
1138
1139name: libgc
1140version: 7.2alpha6
1141@end example
acc08466 1142
a12d92f5
LC
1143Similarly, to show the name of all the packages available under the
1144terms of the GNU@tie{}LGPL version 3:
1145
1146@example
1147$ guix package -s "" | recsel -p name -e 'license ~ "LGPL 3"'
1148name: elfutils
1149
1150name: gmp
1151@dots{}
1152@end example
1153
2aa6efb0
CR
1154@item --show=@var{package}
1155Show details about @var{package}, taken from the list of available packages, in
1156@code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU
1157recutils manual}).
1158
1159@example
1160$ guix package --show=python | recsel -p name,version
1161name: python
1162version: 2.7.6
1163
1164name: python
1165version: 3.3.5
1166@end example
1167
1168You may also specify the full name of a package to only get details about a
1169specific version of it:
1170@example
1171$ guix package --show=python-3.3.5 | recsel -p name,version
1172name: python
1173version: 3.3.5
1174@end example
1175
1176
1177
733b4130
LC
1178@item --list-installed[=@var{regexp}]
1179@itemx -I [@var{regexp}]
bd9bde1c
LC
1180List the currently installed packages in the specified profile, with the
1181most recently installed packages shown last. When @var{regexp} is
1182specified, list only installed packages whose name matches @var{regexp}.
733b4130
LC
1183
1184For each installed package, print the following items, separated by
1185tabs: the package name, its version string, the part of the package that
1186is installed (for instance, @code{out} for the default output,
1187@code{include} for its headers, etc.), and the path of this package in
1188the store.
1189
64fc89b6
LC
1190@item --list-available[=@var{regexp}]
1191@itemx -A [@var{regexp}]
5763ad92 1192List packages currently available in the distribution for this system
a1ba8475
LC
1193(@pxref{GNU Distribution}). When @var{regexp} is specified, list only
1194installed packages whose name matches @var{regexp}.
64fc89b6
LC
1195
1196For each package, print the following items separated by tabs: its name,
6e721c4d
LC
1197its version string, the parts of the package (@pxref{Packages with
1198Multiple Outputs}), and the source location of its definition.
64fc89b6 1199
f566d765
LC
1200@item --list-generations[=@var{pattern}]
1201@itemx -l [@var{pattern}]
1202Return a list of generations along with their creation dates; for each
1203generation, show the installed packages, with the most recently
4b2bc804
NK
1204installed packages shown last. Note that the zeroth generation is never
1205shown.
f566d765
LC
1206
1207For each installed package, print the following items, separated by
1208tabs: the name of a package, its version string, the part of the package
1209that is installed (@pxref{Packages with Multiple Outputs}), and the
1210location of this package in the store.
1211
1212When @var{pattern} is used, the command returns only matching
1213generations. Valid patterns include:
1214
1215@itemize
1216@item @emph{Integers and comma-separated integers}. Both patterns denote
1217generation numbers. For instance, @code{--list-generations=1} returns
1218the first one.
1219
1220And @code{--list-generations=1,8,2} outputs three generations in the
1221specified order. Neither spaces nor trailing commas are allowed.
1222
1223@item @emph{Ranges}. @code{--list-generations=2..9} prints the
1224specified generations and everything in between. Note that the start of
1225a range must be lesser than its end.
1226
1227It is also possible to omit the endpoint. For example,
1228@code{--list-generations=2..}, returns all generations starting from the
1229second one.
1230
1231@item @emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks,
1232or months by passing an integer along with the first letter of the
d7ddb257
LC
1233duration. For example, @code{--list-generations=20d} lists generations
1234that are up to 20 days old.
f566d765
LC
1235@end itemize
1236
b7884ca3
NK
1237@item --delete-generations[=@var{pattern}]
1238@itemx -d [@var{pattern}]
d7ddb257
LC
1239When @var{pattern} is omitted, delete all generations except the current
1240one.
b7884ca3
NK
1241
1242This command accepts the same patterns as @option{--list-generations}.
d7ddb257
LC
1243When @var{pattern} is specified, delete the matching generations. When
1244@var{pattern} specifies a duration, generations @emph{older} than the
1245specified duration match. For instance, @code{--delete-generations=1m}
1246deletes generations that are more than one month old.
1247
391bdd8f
LC
1248If the current generation matches, it is @emph{not} deleted. Also, the
1249zeroth generation is never deleted.
b7884ca3 1250
1bb9900a
LC
1251Note that deleting generations prevents roll-back to them.
1252Consequently, this command must be used with care.
1253
733b4130 1254@end table
eeaf4427 1255
70ee5642
LC
1256Finally, since @command{guix package} may actually start build
1257processes, it supports all the common build options that @command{guix
1258build} supports (@pxref{Invoking guix build, common build options}).
1259
457f60fa
AK
1260@include emacs.texi
1261
c4202d60
LC
1262@node Substitutes
1263@section Substitutes
1264
1265@cindex substitutes
1266@cindex pre-built binaries
1267Guix supports transparent source/binary deployment, which means that it
1268can either build things locally, or download pre-built items from a
1269server. We call these pre-built items @dfn{substitutes}---they are
1270substitutes for local build results. In many cases, downloading a
1271substitute is much faster than building things locally.
1272
1273Substitutes can be anything resulting from a derivation build
1274(@pxref{Derivations}). Of course, in the common case, they are
1275pre-built package binaries, but source tarballs, for instance, which
1276also result from derivation builds, can be available as substitutes.
1277
1278The @code{hydra.gnu.org} server is a front-end to a build farm that
1279builds packages from the GNU distribution continuously for some
9176607e
LC
1280architectures, and makes them available as substitutes. This is the
1281default source of substitutes; it can be overridden by passing
1282@command{guix-daemon} the @code{--substitute-urls} option
1283(@pxref{Invoking guix-daemon}).
c4202d60
LC
1284
1285@cindex security
1286@cindex digital signatures
1287To allow Guix to download substitutes from @code{hydra.gnu.org}, you
1288must add its public key to the access control list (ACL) of archive
1289imports, using the @command{guix archive} command (@pxref{Invoking guix
1290archive}). Doing so implies that you trust @code{hydra.gnu.org} to not
1291be compromised and to serve genuine substitutes.
1292
1293This public key is installed along with Guix, in
1294@code{@var{prefix}/share/guix/hydra.gnu.org.pub}, where @var{prefix} is
1295the installation prefix of Guix. If you installed Guix from source,
1296make sure you checked the GPG signature of
1297@file{guix-@value{VERSION}.tar.gz}, which contains this public key file.
1298Then, you can run something like this:
1299
1300@example
1301# guix archive --authorize < hydra.gnu.org.pub
1302@end example
1303
1304Once this is in place, the output of a command like @code{guix build}
1305should change from something like:
1306
1307@example
1308$ guix build emacs --dry-run
1309The following derivations would be built:
1310 /gnu/store/yr7bnx8xwcayd6j95r2clmkdl1qh688w-emacs-24.3.drv
1311 /gnu/store/x8qsh1hlhgjx6cwsjyvybnfv2i37z23w-dbus-1.6.4.tar.gz.drv
1312 /gnu/store/1ixwp12fl950d15h2cj11c73733jay0z-alsa-lib-1.0.27.1.tar.bz2.drv
1313 /gnu/store/nlma1pw0p603fpfiqy7kn4zm105r5dmw-util-linux-2.21.drv
1314@dots{}
1315@end example
1316
1317@noindent
1318to something like:
1319
1320@example
1321$ guix build emacs --dry-run
1322The following files would be downloaded:
1323 /gnu/store/pk3n22lbq6ydamyymqkkz7i69wiwjiwi-emacs-24.3
1324 /gnu/store/2ygn4ncnhrpr61rssa6z0d9x22si0va3-libjpeg-8d
1325 /gnu/store/71yz6lgx4dazma9dwn2mcjxaah9w77jq-cairo-1.12.16
1326 /gnu/store/7zdhgp0n1518lvfn8mb96sxqfmvqrl7v-libxrender-0.9.7
1327@dots{}
1328@end example
1329
1330@noindent
1331This indicates that substitutes from @code{hydra.gnu.org} are usable and
1332will be downloaded, when possible, for future builds.
1333
1334Guix ignores substitutes that are not signed, or that are not signed by
ef27aa9c 1335one of the keys listed in the ACL. It also detects and raises an error
c4202d60
LC
1336when attempting to use a substitute that has been tampered with.
1337
1338The substitute mechanism can be disabled globally by running
1339@code{guix-daemon} with @code{--no-substitutes} (@pxref{Invoking
1340guix-daemon}). It can also be disabled temporarily by passing the
1341@code{--no-substitutes} option to @command{guix package}, @command{guix
1342build}, and other command-line tools.
1343
1344
1345Today, each individual's control over their own computing is at the
1346mercy of institutions, corporations, and groups with enough power and
1347determination to subvert the computing infrastructure and exploit its
1348weaknesses. While using @code{hydra.gnu.org} substitutes can be
1349convenient, we encourage users to also build on their own, or even run
1350their own build farm, such that @code{hydra.gnu.org} is less of an
1351interesting target.
1352
1353Guix has the foundations to maximize build reproducibility
1354(@pxref{Features}). In most cases, independent builds of a given
1355package or derivation should yield bit-identical results. Thus, through
1356a diverse set of independent package builds, we can strengthen the
1357integrity of our systems.
1358
1359In the future, we want Guix to have support to publish and retrieve
1360binaries to/from other users, in a peer-to-peer fashion. If you would
1361like to discuss this project, join us on @email{guix-devel@@gnu.org}.
1362
1363
6e721c4d
LC
1364@node Packages with Multiple Outputs
1365@section Packages with Multiple Outputs
1366
1367@cindex multiple-output packages
1368@cindex package outputs
1369
1370Often, packages defined in Guix have a single @dfn{output}---i.e., the
1371source package leads exactly one directory in the store. When running
1372@command{guix package -i glibc}, one installs the default output of the
1373GNU libc package; the default output is called @code{out}, but its name
1374can be omitted as shown in this command. In this particular case, the
1375default output of @code{glibc} contains all the C header files, shared
1376libraries, static libraries, Info documentation, and other supporting
1377files.
1378
1379Sometimes it is more appropriate to separate the various types of files
1380produced from a single source package into separate outputs. For
1381instance, the GLib C library (used by GTK+ and related packages)
1382installs more than 20 MiB of reference documentation as HTML pages.
1383To save space for users who do not need it, the documentation goes to a
1384separate output, called @code{doc}. To install the main GLib output,
1385which contains everything but the documentation, one would run:
1386
1387@example
1388guix package -i glib
1389@end example
1390
1391The command to install its documentation is:
1392
1393@example
1394guix package -i glib:doc
1395@end example
1396
1397Some packages install programs with different ``dependency footprints''.
1398For instance, the WordNet package install both command-line tools and
1399graphical user interfaces (GUIs). The former depend solely on the C
1400library, whereas the latter depend on Tcl/Tk and the underlying X
1401libraries. In this case, we leave the command-line tools in the default
1402output, whereas the GUIs are in a separate output. This allows users
1403who do not need the GUIs to save space.
1404
1405There are several such multiple-output packages in the GNU distribution.
91ef73d4
LC
1406Other conventional output names include @code{lib} for libraries and
1407possibly header files, @code{bin} for stand-alone programs, and
1408@code{debug} for debugging information (@pxref{Installing Debugging
1409Files}). The outputs of a packages are listed in the third column of
1410the output of @command{guix package --list-available} (@pxref{Invoking
1411guix package}).
6e721c4d 1412
eeaf4427 1413
e49951eb
MW
1414@node Invoking guix gc
1415@section Invoking @command{guix gc}
fe8ff028
LC
1416
1417@cindex garbage collector
1418Packages that are installed but not used may be @dfn{garbage-collected}.
e49951eb 1419The @command{guix gc} command allows users to explicitly run the garbage
c22eb992
LC
1420collector to reclaim space from the @file{/gnu/store} directory. It is
1421the @emph{only} way to remove files from @file{/gnu/store}---removing
1422files or directories manually may break it beyond repair!
fe8ff028
LC
1423
1424The garbage collector has a set of known @dfn{roots}: any file under
834129e0 1425@file{/gnu/store} reachable from a root is considered @dfn{live} and
fe8ff028
LC
1426cannot be deleted; any other file is considered @dfn{dead} and may be
1427deleted. The set of garbage collector roots includes default user
e49951eb
MW
1428profiles, and may be augmented with @command{guix build --root}, for
1429example (@pxref{Invoking guix build}).
fe8ff028 1430
1bb9900a
LC
1431Prior to running @code{guix gc --collect-garbage} to make space, it is
1432often useful to remove old generations from user profiles; that way, old
1433package builds referenced by those generations can be reclaimed. This
1434is achieved by running @code{guix package --delete-generations}
1435(@pxref{Invoking guix package}).
1436
e49951eb 1437The @command{guix gc} command has three modes of operation: it can be
fe8ff028
LC
1438used to garbage-collect any dead files (the default), to delete specific
1439files (the @code{--delete} option), or to print garbage-collector
1440information. The available options are listed below:
1441
1442@table @code
1443@item --collect-garbage[=@var{min}]
1444@itemx -C [@var{min}]
834129e0 1445Collect garbage---i.e., unreachable @file{/gnu/store} files and
fe8ff028
LC
1446sub-directories. This is the default operation when no option is
1447specified.
1448
1449When @var{min} is given, stop once @var{min} bytes have been collected.
1450@var{min} may be a number of bytes, or it may include a unit as a
4a44d7bb
LC
1451suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes
1452(@pxref{Block size, size specifications,, coreutils, GNU Coreutils}).
fe8ff028
LC
1453
1454When @var{min} is omitted, collect all the garbage.
1455
1456@item --delete
1457@itemx -d
1458Attempt to delete all the store files and directories specified as
1459arguments. This fails if some of the files are not in the store, or if
1460they are still live.
1461
1462@item --list-dead
1463Show the list of dead files and directories still present in the
1464store---i.e., files and directories no longer reachable from any root.
1465
1466@item --list-live
1467Show the list of live store files and directories.
ba8b732d
LC
1468
1469@end table
1470
1471In addition, the references among existing store files can be queried:
1472
1473@table @code
1474
1475@item --references
1476@itemx --referrers
1477List the references (respectively, the referrers) of store files given
1478as arguments.
1479
8e59fdd5
LC
1480@item --requisites
1481@itemx -R
1482List the requisites of the store files passed as arguments. Requisites
1483include the store files themselves, their references, and the references
1484of these, recursively. In other words, the returned list is the
1485@dfn{transitive closure} of the store files.
1486
fe8ff028
LC
1487@end table
1488
eeaf4427 1489
f651b477
LC
1490@node Invoking guix pull
1491@section Invoking @command{guix pull}
1492
1493Packages are installed or upgraded to the latest version available in
1494the distribution currently available on your local machine. To update
1495that distribution, along with the Guix tools, you must run @command{guix
1496pull}: the command downloads the latest Guix source code and package
1497descriptions, and deploys it.
1498
1499On completion, @command{guix package} will use packages and package
1500versions from this just-retrieved copy of Guix. Not only that, but all
1501the Guix commands and Scheme modules will also be taken from that latest
1502version. New @command{guix} sub-commands added by the update also
1503become available.
1504
1505The @command{guix pull} command is usually invoked with no arguments,
1506but it supports the following options:
1507
1508@table @code
1509@item --verbose
1510Produce verbose output, writing build logs to the standard error output.
1511
ab5d72ad
LC
1512@item --url=@var{url}
1513Download the source tarball of Guix from @var{url}.
1514
1515By default, the tarball is taken from its canonical address at
1516@code{gnu.org}, for the stable branch of Guix.
1517
f651b477
LC
1518@item --bootstrap
1519Use the bootstrap Guile to build the latest Guix. This option is only
1520useful to Guix developers.
1521@end table
1522
760c60d6
LC
1523
1524@node Invoking guix archive
1525@section Invoking @command{guix archive}
1526
1527The @command{guix archive} command allows users to @dfn{export} files
1528from the store into a single archive, and to later @dfn{import} them.
1529In particular, it allows store files to be transferred from one machine
1530to another machine's store. For example, to transfer the @code{emacs}
1531package to a machine connected over SSH, one would run:
1532
1533@example
56607088 1534guix archive --export -r emacs | ssh the-machine guix archive --import
760c60d6
LC
1535@end example
1536
87236aed 1537@noindent
56607088
LC
1538Similarly, a complete user profile may be transferred from one machine
1539to another like this:
1540
1541@example
1542guix archive --export -r $(readlink -f ~/.guix-profile) | \
1543 ssh the-machine guix-archive --import
1544@end example
1545
1546@noindent
1547However, note that, in both examples, all of @code{emacs} and the
1548profile as well as all of their dependencies are transferred (due to
1549@code{-r}), regardless of what is already available in the target
1550machine's store. The @code{--missing} option can help figure out which
1551items are missing from the target's store.
87236aed 1552
760c60d6 1553Archives are stored in the ``Nix archive'' or ``Nar'' format, which is
0dbd88db
LC
1554comparable in spirit to `tar', but with a few noteworthy differences
1555that make it more appropriate for our purposes. First, rather than
1556recording all Unix meta-data for each file, the Nar format only mentions
1557the file type (regular, directory, or symbolic link); Unix permissions
1558and owner/group are dismissed. Second, the order in which directory
1559entries are stored always follows the order of file names according to
1560the C locale collation order. This makes archive production fully
1561deterministic.
1562
1563When exporting, the daemon digitally signs the contents of the archive,
1564and that digital signature is appended. When importing, the daemon
1565verifies the signature and rejects the import in case of an invalid
1566signature or if the signing key is not authorized.
760c60d6
LC
1567@c FIXME: Add xref to daemon doc about signatures.
1568
1569The main options are:
1570
1571@table @code
1572@item --export
1573Export the specified store files or packages (see below.) Write the
1574resulting archive to the standard output.
1575
56607088
LC
1576Dependencies are @emph{not} included in the output, unless
1577@code{--recursive} is passed.
1578
1579@item -r
1580@itemx --recursive
1581When combined with @code{--export}, this instructs @command{guix
1582archive} to include dependencies of the given items in the archive.
1583Thus, the resulting archive is self-contained: it contains the closure
1584of the exported store items.
1585
760c60d6
LC
1586@item --import
1587Read an archive from the standard input, and import the files listed
1588therein into the store. Abort if the archive has an invalid digital
f82cc5fd
LC
1589signature, or if it is signed by a public key not among the authorized
1590keys (see @code{--authorize} below.)
554f26ec 1591
87236aed
LC
1592@item --missing
1593Read a list of store file names from the standard input, one per line,
1594and write on the standard output the subset of these files missing from
1595the store.
1596
554f26ec 1597@item --generate-key[=@var{parameters}]
f82cc5fd 1598@cindex signing, archives
554f26ec
LC
1599Generate a new key pair for the daemons. This is a prerequisite before
1600archives can be exported with @code{--export}. Note that this operation
1601usually takes time, because it needs to gather enough entropy to
1602generate the key pair.
1603
1604The generated key pair is typically stored under @file{/etc/guix}, in
1605@file{signing-key.pub} (public key) and @file{signing-key.sec} (private
867d8473
LC
1606key, which must be kept secret.) When @var{parameters} is omitted,
1607an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt
1608versions before 1.6.0, it is a 4096-bit RSA key.
1609Alternately, @var{parameters} can specify
554f26ec
LC
1610@code{genkey} parameters suitable for Libgcrypt (@pxref{General
1611public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The
1612Libgcrypt Reference Manual}).
f82cc5fd
LC
1613
1614@item --authorize
1615@cindex authorizing, archives
1616Authorize imports signed by the public key passed on standard input.
1617The public key must be in ``s-expression advanced format''---i.e., the
1618same format as the @file{signing-key.pub} file.
1619
1620The list of authorized keys is kept in the human-editable file
1621@file{/etc/guix/acl}. The file contains
1622@url{http://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format
1623s-expressions''} and is structured as an access-control list in the
1624@url{http://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure
1625(SPKI)}.
760c60d6
LC
1626@end table
1627
1628To export store files as an archive to the standard output, run:
1629
1630@example
1631guix archive --export @var{options} @var{specifications}...
1632@end example
1633
1634@var{specifications} may be either store file names or package
1635specifications, as for @command{guix package} (@pxref{Invoking guix
1636package}). For instance, the following command creates an archive
1637containing the @code{gui} output of the @code{git} package and the main
1638output of @code{emacs}:
1639
1640@example
834129e0 1641guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar
760c60d6
LC
1642@end example
1643
1644If the specified packages are not built yet, @command{guix archive}
1645automatically builds them. The build process may be controlled with the
1646same options that can be passed to the @command{guix build} command
70ee5642 1647(@pxref{Invoking guix build, common build options}).
760c60d6
LC
1648
1649
568717fd
LC
1650@c *********************************************************************
1651@node Programming Interface
1652@chapter Programming Interface
1653
3dc1970d
LC
1654GNU Guix provides several Scheme programming interfaces (APIs) to
1655define, build, and query packages. The first interface allows users to
1656write high-level package definitions. These definitions refer to
1657familiar packaging concepts, such as the name and version of a package,
1658its build system, and its dependencies. These definitions can then be
1659turned into concrete build actions.
1660
ba55b1cb 1661Build actions are performed by the Guix daemon, on behalf of users. In a
3dc1970d 1662standard setup, the daemon has write access to the store---the
834129e0 1663@file{/gnu/store} directory---whereas users do not. The recommended
3dc1970d
LC
1664setup also has the daemon perform builds in chroots, under a specific
1665build users, to minimize interference with the rest of the system.
1666
1667@cindex derivation
1668Lower-level APIs are available to interact with the daemon and the
1669store. To instruct the daemon to perform a build action, users actually
1670provide it with a @dfn{derivation}. A derivation is a low-level
1671representation of the build actions to be taken, and the environment in
1672which they should occur---derivations are to package definitions what
49ad317a
LC
1673assembly is to C programs. The term ``derivation'' comes from the fact
1674that build results @emph{derive} from them.
3dc1970d
LC
1675
1676This chapter describes all these APIs in turn, starting from high-level
1677package definitions.
1678
568717fd 1679@menu
b860f382 1680* Defining Packages:: Defining new packages.
7458bd0a 1681* Build Systems:: Specifying how packages are built.
b860f382
LC
1682* The Store:: Manipulating the package store.
1683* Derivations:: Low-level interface to package derivations.
1684* The Store Monad:: Purely functional interface to the store.
21b679f6 1685* G-Expressions:: Manipulating build expressions.
568717fd
LC
1686@end menu
1687
1688@node Defining Packages
1689@section Defining Packages
1690
3dc1970d
LC
1691The high-level interface to package definitions is implemented in the
1692@code{(guix packages)} and @code{(guix build-system)} modules. As an
1693example, the package definition, or @dfn{recipe}, for the GNU Hello
1694package looks like this:
1695
1696@example
e7f34eb0
LC
1697(define-module (gnu packages hello)
1698 #:use-module (guix packages)
1699 #:use-module (guix download)
1700 #:use-module (guix build-system gnu)
1701 #:use-module (guix licenses))
b22a12fd 1702
79f5dd59 1703(define-public hello
3dc1970d
LC
1704 (package
1705 (name "hello")
1706 (version "2.8")
1707 (source (origin
1708 (method url-fetch)
1709 (uri (string-append "mirror://gnu/hello/hello-" version
1710 ".tar.gz"))
1711 (sha256
1712 (base32 "0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6"))))
1713 (build-system gnu-build-system)
7458bd0a 1714 (arguments `(#:configure-flags '("--enable-silent-rules")))
3dc1970d 1715 (inputs `(("gawk" ,gawk)))
7458bd0a
LC
1716 (synopsis "Hello, GNU world: An example GNU package")
1717 (description "Guess what GNU Hello prints!")
3dc1970d 1718 (home-page "http://www.gnu.org/software/hello/")
b22a12fd 1719 (license gpl3+)))
3dc1970d
LC
1720@end example
1721
1722@noindent
1723Without being a Scheme expert, the reader may have guessed the meaning
e7f34eb0 1724of the various fields here. This expression binds variable @code{hello}
3dc1970d
LC
1725to a @code{<package>} object, which is essentially a record
1726(@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}).
1727This package object can be inspected using procedures found in the
1728@code{(guix packages)} module; for instance, @code{(package-name hello)}
1729returns---surprise!---@code{"hello"}.
1730
2f7d2d91
LC
1731With luck, you may be able to import part or all of the definition of
1732the package you are interested in from another repository, using the
1733@code{guix import} command (@pxref{Invoking guix import}).
1734
e7f34eb0
LC
1735In the example above, @var{hello} is defined into a module of its own,
1736@code{(gnu packages hello)}. Technically, this is not strictly
1737necessary, but it is convenient to do so: all the packages defined in
1738modules under @code{(gnu packages @dots{})} are automatically known to
1739the command-line tools (@pxref{Package Modules}).
1740
3dc1970d
LC
1741There are a few points worth noting in the above package definition:
1742
1743@itemize
1744@item
1745The @code{source} field of the package is an @code{<origin>} object.
1746Here, the @code{url-fetch} method from @code{(guix download)} is used,
1747meaning that the source is a file to be downloaded over FTP or HTTP.
1748
1749The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of
1750the GNU mirrors defined in @code{(guix download)}.
1751
1752The @code{sha256} field specifies the expected SHA256 hash of the file
1753being downloaded. It is mandatory, and allows Guix to check the
1754integrity of the file. The @code{(base32 @dots{})} form introduces the
6c365eca 1755base32 representation of the hash. You can obtain this information with
210cc920
LC
1756@code{guix download} (@pxref{Invoking guix download}) and @code{guix
1757hash} (@pxref{Invoking guix hash}).
3dc1970d 1758
f9cc8971
LC
1759@cindex patches
1760When needed, the @code{origin} form can also have a @code{patches} field
1761listing patches to be applied, and a @code{snippet} field giving a
1762Scheme expression to modify the source code.
1763
3dc1970d
LC
1764@item
1765@cindex GNU Build System
7458bd0a
LC
1766The @code{build-system} field specifies the procedure to build the
1767package (@pxref{Build Systems}). Here, @var{gnu-build-system}
1768represents the familiar GNU Build System, where packages may be
1769configured, built, and installed with the usual @code{./configure &&
1770make && make check && make install} command sequence.
1771
1772@item
1773The @code{arguments} field specifies options for the build system
1774(@pxref{Build Systems}). Here it is interpreted by
1775@var{gnu-build-system} as a request run @file{configure} with the
1776@code{--enable-silent-rules} flag.
3dc1970d
LC
1777
1778@item
1779The @code{inputs} field specifies inputs to the build process---i.e.,
1780build-time or run-time dependencies of the package. Here, we define an
1781input called @code{"gawk"} whose value is that of the @var{gawk}
1782variable; @var{gawk} is itself bound to a @code{<package>} object.
1783
1784Note that GCC, Coreutils, Bash, and other essential tools do not need to
1785be specified as inputs here. Instead, @var{gnu-build-system} takes care
7458bd0a 1786of ensuring that they are present (@pxref{Build Systems}).
3dc1970d
LC
1787
1788However, any other dependencies need to be specified in the
1789@code{inputs} field. Any dependency not specified here will simply be
1790unavailable to the build process, possibly leading to a build failure.
1791@end itemize
1792
2f7d2d91 1793Once a package definition is in place, the
e49951eb 1794package may actually be built using the @code{guix build} command-line
7458bd0a 1795tool (@pxref{Invoking guix build}). @xref{Packaging Guidelines}, for
b4f5e0e8
CR
1796more information on how to test package definitions, and
1797@ref{Invoking guix lint}, for information on how to check a definition
1798for style conformance.
1799
7458bd0a
LC
1800Eventually, updating the package definition to a new upstream version
1801can be partly automated by the @command{guix refresh} command
1802(@pxref{Invoking guix refresh}).
3dc1970d
LC
1803
1804Behind the scenes, a derivation corresponding to the @code{<package>}
1805object is first computed by the @code{package-derivation} procedure.
834129e0 1806That derivation is stored in a @code{.drv} file under @file{/gnu/store}.
ba55b1cb 1807The build actions it prescribes may then be realized by using the
3dc1970d
LC
1808@code{build-derivations} procedure (@pxref{The Store}).
1809
1810@deffn {Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]
59688fc4
LC
1811Return the @code{<derivation>} object of @var{package} for @var{system}
1812(@pxref{Derivations}).
3dc1970d
LC
1813
1814@var{package} must be a valid @code{<package>} object, and @var{system}
1815must be a string denoting the target system type---e.g.,
1816@code{"x86_64-linux"} for an x86_64 Linux-based GNU system. @var{store}
1817must be a connection to the daemon, which operates on the store
1818(@pxref{The Store}).
1819@end deffn
568717fd 1820
9c1edabd
LC
1821@noindent
1822@cindex cross-compilation
1823Similarly, it is possible to compute a derivation that cross-builds a
1824package for some other system:
1825
1826@deffn {Scheme Procedure} package-cross-derivation @var{store} @
1827 @var{package} @var{target} [@var{system}]
59688fc4
LC
1828Return the @code{<derivation>} object of @var{package} cross-built from
1829@var{system} to @var{target}.
9c1edabd
LC
1830
1831@var{target} must be a valid GNU triplet denoting the target hardware
1832and operating system, such as @code{"mips64el-linux-gnu"}
1833(@pxref{Configuration Names, GNU configuration triplets,, configure, GNU
1834Configure and Build System}).
1835@end deffn
1836
1837
7458bd0a
LC
1838@node Build Systems
1839@section Build Systems
1840
1841@cindex build system
1842Each package definition specifies a @dfn{build system} and arguments for
1843that build system (@pxref{Defining Packages}). This @code{build-system}
1844field represents the build procedure of the package, as well implicit
1845dependencies of that build procedure.
1846
1847Build systems are @code{<build-system>} objects. The interface to
1848create and manipulate them is provided by the @code{(guix build-system)}
1849module, and actual build systems are exported by specific modules.
1850
f5fd4fd2 1851@cindex bag (low-level package representation)
0d5a559f
LC
1852Under the hood, build systems first compile package objects to
1853@dfn{bags}. A @dfn{bag} is like a package, but with less
1854ornamentation---in other words, a bag is a lower-level representation of
1855a package, which includes all the inputs of that package, including some
1856that were implicitly added by the build system. This intermediate
1857representation is then compiled to a derivation (@pxref{Derivations}).
1858
7458bd0a
LC
1859Build systems accept an optional list of @dfn{arguments}. In package
1860definitions, these are passed @i{via} the @code{arguments} field
1861(@pxref{Defining Packages}). They are typically keyword arguments
1862(@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU
1863Guile Reference Manual}). The value of these arguments is usually
1864evaluated in the @dfn{build stratum}---i.e., by a Guile process launched
1865by the daemon (@pxref{Derivations}).
1866
1867The main build system is @var{gnu-build-system}, which implements the
1868standard build procedure for GNU packages and many other packages. It
1869is provided by the @code{(guix build-system gnu)} module.
1870
1871@defvr {Scheme Variable} gnu-build-system
1872@var{gnu-build-system} represents the GNU Build System, and variants
1873thereof (@pxref{Configuration, configuration and makefile conventions,,
1874standards, GNU Coding Standards}).
1875
1876@cindex build phases
1877In a nutshell, packages using it configured, built, and installed with
1878the usual @code{./configure && make && make check && make install}
1879command sequence. In practice, a few additional steps are often needed.
1880All these steps are split up in separate @dfn{phases},
1881notably@footnote{Please see the @code{(guix build gnu-build-system)}
1882modules for more details about the build phases.}:
1883
1884@table @code
1885@item unpack
1886Unpack the source tarball, and change the current directory to the
1887extracted source tree. If the source is actually a directory, copy it
1888to the build tree, and enter that directory.
1889
1890@item patch-source-shebangs
1891Patch shebangs encountered in source files so they refer to the right
1892store file names. For instance, this changes @code{#!/bin/sh} to
1893@code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}.
1894
1895@item configure
1896Run the @file{configure} script with a number of default options, such
1897as @code{--prefix=/gnu/store/@dots{}}, as well as the options specified
1898by the @code{#:configure-flags} argument.
1899
1900@item build
1901Run @code{make} with the list of flags specified with
1902@code{#:make-flags}. If the @code{#:parallel-builds?} argument is true
1903(the default), build with @code{make -j}.
1904
1905@item check
1906Run @code{make check}, or some other target specified with
1907@code{#:test-target}, unless @code{#:tests? #f} is passed. If the
1908@code{#:parallel-tests?} argument is true (the default), run @code{make
1909check -j}.
1910
1911@item install
1912Run @code{make install} with the flags listed in @code{#:make-flags}.
1913
1914@item patch-shebangs
1915Patch shebangs on the installed executable files.
1916
1917@item strip
1918Strip debugging symbols from ELF files (unless @code{#:strip-binaries?}
1919is false), copying them to the @code{debug} output when available
1920(@pxref{Installing Debugging Files}).
1921@end table
1922
1923@vindex %standard-phases
1924The build-side module @code{(guix build gnu-build-system)} defines
1925@var{%standard-phases} as the default list of build phases.
1926@var{%standard-phases} is a list of symbol/procedure pairs, where the
1927procedure implements the actual phase.
1928
1929The list of phases used for a particular package can be changed with the
1930@code{#:phases} parameter. For instance, passing:
1931
1932@example
1933#:phases (alist-delete 'configure %standard-phases)
1934@end example
1935
9bf404e9 1936means that all the phases described above will be used, except the
7458bd0a
LC
1937@code{configure} phase.
1938
1939In addition, this build system ensures that the ``standard'' environment
1940for GNU packages is available. This includes tools such as GCC, libc,
1941Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix
1942build-system gnu)} module for a complete list.) We call these the
1943@dfn{implicit inputs} of a package, because package definitions don't
1944have to mention them.
1945@end defvr
1946
1947Other @code{<build-system>} objects are defined to support other
1948conventions and tools used by free software packages. They inherit most
1949of @var{gnu-build-system}, and differ mainly in the set of inputs
1950implicitly added to the build process, and in the list of phases
1951executed. Some of these build systems are listed below.
1952
1953@defvr {Scheme Variable} cmake-build-system
1954This variable is exported by @code{(guix build-system cmake)}. It
1955implements the build procedure for packages using the
1956@url{http://www.cmake.org, CMake build tool}.
1957
1958It automatically adds the @code{cmake} package to the set of inputs.
1959Which package is used can be specified with the @code{#:cmake}
1960parameter.
9849cfc1
LC
1961
1962The @code{#:configure-flags} parameter is taken as a list of flags
1963passed to the @command{cmake} command. The @code{#:build-type}
1964parameter specifies in abstract terms the flags passed to the compiler;
1965it defaults to @code{"RelWithDebInfo"} (short for ``release mode with
1966debugging information''), which roughly means that code is compiled with
1967@code{-O2 -g}, as is the case for Autoconf-based packages by default.
7458bd0a
LC
1968@end defvr
1969
3afcf52b
FB
1970@defvr {Scheme Variable} glib-or-gtk-build-system
1971This variable is exported by @code{(guix build-system glib-or-gtk)}. It
1972is intended for use with packages making use of GLib or GTK+.
1973
1974This build system adds the following two phases to the ones defined by
1975@var{gnu-build-system}:
1976
1977@table @code
1978@item glib-or-gtk-wrap
1979The phase @code{glib-or-gtk-wrap} ensures that programs found under
1980@file{bin/} are able to find GLib's ``schemas'' and
1981@uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+
1982modules}. This is achieved by wrapping the programs in launch scripts
1983that appropriately set the @code{XDG_DATA_DIRS} and @code{GTK_PATH}
1984environment variables.
1985
73aa8ddb
LC
1986It is possible to exclude specific package outputs from that wrapping
1987process by listing their names in the
1988@code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful
1989when an output is known not to contain any GLib or GTK+ binaries, and
1990where wrapping would gratuitously add a dependency of that output on
1991GLib and GTK+.
1992
3afcf52b
FB
1993@item glib-or-gtk-compile-schemas
1994The phase @code{glib-or-gtk-compile-schemas} makes sure that all GLib's
1995@uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html,
1996GSettings schemas} are compiled. Compilation is performed by the
1997@command{glib-compile-schemas} program. It is provided by the package
1998@code{glib:bin} which is automatically imported by the build system.
1999The @code{glib} package providing @command{glib-compile-schemas} can be
2000specified with the @code{#:glib} parameter.
2001@end table
2002
2003Both phases are executed after the @code{install} phase.
2004@end defvr
2005
7458bd0a
LC
2006@defvr {Scheme Variable} python-build-system
2007This variable is exported by @code{(guix build-system python)}. It
2008implements the more or less standard build procedure used by Python
2009packages, which consists in running @code{python setup.py build} and
2010then @code{python setup.py install --prefix=/gnu/store/@dots{}}.
2011
2012For packages that install stand-alone Python programs under @code{bin/},
2013it takes care of wrapping these programs so their @code{PYTHONPATH}
2014environment variable points to all the Python libraries they depend on.
2015
2016Which Python package is used can be specified with the @code{#:python}
2017parameter.
2018@end defvr
2019
2020@defvr {Scheme Variable} perl-build-system
2021This variable is exported by @code{(guix build-system perl)}. It
2d2a53fc
EB
2022implements the standard build procedure for Perl packages, which either
2023consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}},
2024followed by @code{Build} and @code{Build install}; or in running
2025@code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by
2026@code{make} and @code{make install}; depending on which of
2027@code{Build.PL} or @code{Makefile.PL} is present in the package
2028distribution. Preference is given to the former if both @code{Build.PL}
2029and @code{Makefile.PL} exist in the package distribution. This
2030preference can be reversed by specifying @code{#t} for the
2031@code{#:make-maker?} parameter.
2032
2033The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation
2034passes flags specified by the @code{#:make-maker-flags} or
2035@code{#:module-build-flags} parameter, respectively.
7458bd0a
LC
2036
2037Which Perl package is used can be specified with @code{#:perl}.
2038@end defvr
2039
c08f9818
DT
2040@defvr {Scheme Variable} ruby-build-system
2041This variable is exported by @code{(guix build-system ruby)}. It
2042implements the RubyGems build procedure used by Ruby packages, which
2043involves running @code{gem build} followed by @code{gem install}.
2044
2045Which Ruby package is used can be specified with the @code{#:ruby}
2046parameter.
2047@end defvr
7458bd0a 2048
a677c726
RW
2049@defvr {Scheme Variable} waf-build-system
2050This variable is exported by @code{(guix build-system waf)}. It
2051implements a build procedure around the @code{waf} script. The common
2052phases---@code{configure}, @code{build}, and @code{install}---are
2053implemented by passing their names as arguments to the @code{waf}
2054script.
2055
2056The @code{waf} script is executed by the Python interpreter. Which
2057Python package is used to run the script can be specified with the
2058@code{#:python} parameter.
2059@end defvr
2060
14dfdf2e
FB
2061@defvr {Scheme Variable} haskell-build-system
2062This variable is exported by @code{(guix build-system haskell)}. It
2063implements the Cabal build procedure used by Haskell packages, which
2064involves running @code{runhaskell Setup.hs configure
2065--prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}.
2066Instead of installing the package by running @code{runhaskell Setup.hs
2067install}, to avoid trying to register libraries in the read-only
2068compiler store directory, the build system uses @code{runhaskell
2069Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In
2070addition, the build system generates the package documentation by
2071running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f}
2072is passed. Optional Haddock parameters can be passed with the help of
2073the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is
2074not found, the build system looks for @code{Setup.lhs} instead.
2075
2076Which Haskell compiler is used can be specified with the @code{#:haskell}
2077parameter which defaults to @code{ghc}.
2078@end defvr
2079
7458bd0a
LC
2080Lastly, for packages that do not need anything as sophisticated, a
2081``trivial'' build system is provided. It is trivial in the sense that
2082it provides basically no support: it does not pull any implicit inputs,
2083and does not have a notion of build phases.
2084
2085@defvr {Scheme Variable} trivial-build-system
2086This variable is exported by @code{(guix build-system trivial)}.
2087
2088This build system requires a @code{#:builder} argument. This argument
2089must be a Scheme expression that builds the package's output(s)---as
2090with @code{build-expression->derivation} (@pxref{Derivations,
2091@code{build-expression->derivation}}).
2092@end defvr
2093
568717fd
LC
2094@node The Store
2095@section The Store
2096
e531ac2a
LC
2097@cindex store
2098@cindex store paths
2099
2100Conceptually, the @dfn{store} is where derivations that have been
834129e0 2101successfully built are stored---by default, under @file{/gnu/store}.
e531ac2a
LC
2102Sub-directories in the store are referred to as @dfn{store paths}. The
2103store has an associated database that contains information such has the
2104store paths referred to by each store path, and the list of @emph{valid}
2105store paths---paths that result from a successful build.
2106
2107The store is always accessed by the daemon on behalf of its clients
2108(@pxref{Invoking guix-daemon}). To manipulate the store, clients
2109connect to the daemon over a Unix-domain socket, send it requests, and
2110read the result---these are remote procedure calls, or RPCs.
2111
2112The @code{(guix store)} module provides procedures to connect to the
2113daemon, and to perform RPCs. These are described below.
2114
2115@deffn {Scheme Procedure} open-connection [@var{file}] [#:reserve-space? #t]
2116Connect to the daemon over the Unix-domain socket at @var{file}. When
2117@var{reserve-space?} is true, instruct it to reserve a little bit of
2118extra space on the file system so that the garbage collector can still
2119operate, should the disk become full. Return a server object.
2120
2121@var{file} defaults to @var{%default-socket-path}, which is the normal
2122location given the options that were passed to @command{configure}.
2123@end deffn
2124
2125@deffn {Scheme Procedure} close-connection @var{server}
2126Close the connection to @var{server}.
2127@end deffn
2128
2129@defvr {Scheme Variable} current-build-output-port
2130This variable is bound to a SRFI-39 parameter, which refers to the port
2131where build and error logs sent by the daemon should be written.
2132@end defvr
2133
2134Procedures that make RPCs all take a server object as their first
2135argument.
2136
2137@deffn {Scheme Procedure} valid-path? @var{server} @var{path}
2138Return @code{#t} when @var{path} is a valid store path.
2139@end deffn
2140
cfbf9160 2141@deffn {Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]
e531ac2a
LC
2142Add @var{text} under file @var{name} in the store, and return its store
2143path. @var{references} is the list of store paths referred to by the
2144resulting store path.
2145@end deffn
2146
874e6874 2147@deffn {Scheme Procedure} build-derivations @var{server} @var{derivations}
59688fc4
LC
2148Build @var{derivations} (a list of @code{<derivation>} objects or
2149derivation paths), and return when the worker is done building them.
2150Return @code{#t} on success.
874e6874
LC
2151@end deffn
2152
b860f382
LC
2153Note that the @code{(guix monads)} module provides a monad as well as
2154monadic versions of the above procedures, with the goal of making it
2155more convenient to work with code that accesses the store (@pxref{The
2156Store Monad}).
2157
e531ac2a
LC
2158@c FIXME
2159@i{This section is currently incomplete.}
568717fd
LC
2160
2161@node Derivations
2162@section Derivations
2163
874e6874
LC
2164@cindex derivations
2165Low-level build actions and the environment in which they are performed
2166are represented by @dfn{derivations}. A derivation contain the
2167following pieces of information:
2168
2169@itemize
2170@item
2171The outputs of the derivation---derivations produce at least one file or
2172directory in the store, but may produce more.
2173
2174@item
2175The inputs of the derivations, which may be other derivations or plain
2176files in the store (patches, build scripts, etc.)
2177
2178@item
2179The system type targeted by the derivation---e.g., @code{x86_64-linux}.
2180
2181@item
2182The file name of a build script in the store, along with the arguments
2183to be passed.
2184
2185@item
2186A list of environment variables to be defined.
2187
2188@end itemize
2189
2190@cindex derivation path
2191Derivations allow clients of the daemon to communicate build actions to
2192the store. They exist in two forms: as an in-memory representation,
2193both on the client- and daemon-side, and as files in the store whose
2194name end in @code{.drv}---these files are referred to as @dfn{derivation
2195paths}. Derivations paths can be passed to the @code{build-derivations}
2196procedure to perform the build actions they prescribe (@pxref{The
2197Store}).
2198
2199The @code{(guix derivations)} module provides a representation of
2200derivations as Scheme objects, along with procedures to create and
2201otherwise manipulate derivations. The lowest-level primitive to create
2202a derivation is the @code{derivation} procedure:
2203
1909431c
LC
2204@deffn {Scheme Procedure} derivation @var{store} @var{name} @var{builder} @
2205 @var{args} [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
2096ef47 2206 [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @
1909431c 2207 [#:system (%current-system)] [#:references-graphs #f] @
c0468155 2208 [#:allowed-references #f] [#:leaked-env-vars #f] [#:local-build? #f]
59688fc4
LC
2209Build a derivation with the given arguments, and return the resulting
2210@code{<derivation>} object.
874e6874 2211
2096ef47 2212When @var{hash} and @var{hash-algo} are given, a
874e6874 2213@dfn{fixed-output derivation} is created---i.e., one whose result is
36bbbbd1
LC
2214known in advance, such as a file download. If, in addition,
2215@var{recursive?} is true, then that fixed output may be an executable
2216file or a directory and @var{hash} must be the hash of an archive
2217containing this output.
5b0c9d16 2218
858e9282 2219When @var{references-graphs} is true, it must be a list of file
5b0c9d16
LC
2220name/store path pairs. In that case, the reference graph of each store
2221path is exported in the build environment in the corresponding file, in
2222a simple text format.
1909431c 2223
b53be755
LC
2224When @var{allowed-references} is true, it must be a list of store items
2225or outputs that the derivation's output may refer to.
2226
c0468155
LC
2227When @var{leaked-env-vars} is true, it must be a list of strings
2228denoting environment variables that are allowed to ``leak'' from the
2229daemon's environment to the build environment. This is only applicable
2230to fixed-output derivations---i.e., when @var{hash} is true. The main
2231use is to allow variables such as @code{http_proxy} to be passed to
2232derivations that download files.
2233
1909431c
LC
2234When @var{local-build?} is true, declare that the derivation is not a
2235good candidate for offloading and should rather be built locally
2236(@pxref{Daemon Offload Setup}). This is the case for small derivations
2237where the costs of data transfers would outweigh the benefits.
874e6874
LC
2238@end deffn
2239
2240@noindent
2241Here's an example with a shell script as its builder, assuming
2242@var{store} is an open connection to the daemon, and @var{bash} points
2243to a Bash executable in the store:
2244
2245@lisp
2246(use-modules (guix utils)
2247 (guix store)
2248 (guix derivations))
2249
59688fc4
LC
2250(let ((builder ; add the Bash script to the store
2251 (add-text-to-store store "my-builder.sh"
2252 "echo hello world > $out\n" '())))
2253 (derivation store "foo"
2254 bash `("-e" ,builder)
21b679f6 2255 #:inputs `((,bash) (,builder))
59688fc4 2256 #:env-vars '(("HOME" . "/homeless"))))
834129e0 2257@result{} #<derivation /gnu/store/@dots{}-foo.drv => /gnu/store/@dots{}-foo>
874e6874
LC
2258@end lisp
2259
21b679f6
LC
2260As can be guessed, this primitive is cumbersome to use directly. A
2261better approach is to write build scripts in Scheme, of course! The
2262best course of action for that is to write the build code as a
2263``G-expression'', and to pass it to @code{gexp->derivation}. For more
6621cdb6 2264information, @pxref{G-Expressions}.
21b679f6
LC
2265
2266Once upon a time, @code{gexp->derivation} did not exist and constructing
2267derivations with build code written in Scheme was achieved with
2268@code{build-expression->derivation}, documented below. This procedure
2269is now deprecated in favor of the much nicer @code{gexp->derivation}.
874e6874 2270
dd1a5a15
LC
2271@deffn {Scheme Procedure} build-expression->derivation @var{store} @
2272 @var{name} @var{exp} @
2273 [#:system (%current-system)] [#:inputs '()] @
2274 [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
36bbbbd1 2275 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
63a42824
LC
2276 [#:references-graphs #f] [#:allowed-references #f] @
2277 [#:local-build? #f] [#:guile-for-build #f]
874e6874
LC
2278Return a derivation that executes Scheme expression @var{exp} as a
2279builder for derivation @var{name}. @var{inputs} must be a list of
2280@code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted,
2281@code{"out"} is assumed. @var{modules} is a list of names of Guile
2282modules from the current search path to be copied in the store,
2283compiled, and made available in the load path during the execution of
2284@var{exp}---e.g., @code{((guix build utils) (guix build
2285gnu-build-system))}.
2286
2287@var{exp} is evaluated in an environment where @code{%outputs} is bound
2288to a list of output/path pairs, and where @code{%build-inputs} is bound
2289to a list of string/output-path pairs made from @var{inputs}.
2290Optionally, @var{env-vars} is a list of string pairs specifying the name
2291and value of environment variables visible to the builder. The builder
2292terminates by passing the result of @var{exp} to @code{exit}; thus, when
2293@var{exp} returns @code{#f}, the build is considered to have failed.
2294
2295@var{exp} is built using @var{guile-for-build} (a derivation). When
2296@var{guile-for-build} is omitted or is @code{#f}, the value of the
2297@code{%guile-for-build} fluid is used instead.
9c629a27 2298
63a42824
LC
2299See the @code{derivation} procedure for the meaning of
2300@var{references-graphs}, @var{allowed-references}, and @var{local-build?}.
874e6874
LC
2301@end deffn
2302
2303@noindent
2304Here's an example of a single-output derivation that creates a directory
2305containing one file:
2306
2307@lisp
2308(let ((builder '(let ((out (assoc-ref %outputs "out")))
834129e0 2309 (mkdir out) ; create /gnu/store/@dots{}-goo
874e6874
LC
2310 (call-with-output-file (string-append out "/test")
2311 (lambda (p)
2312 (display '(hello guix) p))))))
dd1a5a15 2313 (build-expression->derivation store "goo" builder))
874e6874 2314
834129e0 2315@result{} #<derivation /gnu/store/@dots{}-goo.drv => @dots{}>
874e6874
LC
2316@end lisp
2317
568717fd 2318
b860f382
LC
2319@node The Store Monad
2320@section The Store Monad
2321
2322@cindex monad
2323
2324The procedures that operate on the store described in the previous
2325sections all take an open connection to the build daemon as their first
2326argument. Although the underlying model is functional, they either have
2327side effects or depend on the current state of the store.
2328
2329The former is inconvenient: the connection to the build daemon has to be
2330carried around in all those functions, making it impossible to compose
2331functions that do not take that parameter with functions that do. The
2332latter can be problematic: since store operations have side effects
2333and/or depend on external state, they have to be properly sequenced.
2334
2335@cindex monadic values
2336@cindex monadic functions
2337This is where the @code{(guix monads)} module comes in. This module
2338provides a framework for working with @dfn{monads}, and a particularly
2339useful monad for our uses, the @dfn{store monad}. Monads are a
2340construct that allows two things: associating ``context'' with values
2341(in our case, the context is the store), and building sequences of
561fb6c3 2342computations (here computations include accesses to the store.) Values
b860f382
LC
2343in a monad---values that carry this additional context---are called
2344@dfn{monadic values}; procedures that return such values are called
2345@dfn{monadic procedures}.
2346
2347Consider this ``normal'' procedure:
2348
2349@example
45adbd62
LC
2350(define (sh-symlink store)
2351 ;; Return a derivation that symlinks the 'bash' executable.
2352 (let* ((drv (package-derivation store bash))
2353 (out (derivation->output-path drv))
2354 (sh (string-append out "/bin/bash")))
2355 (build-expression->derivation store "sh"
2356 `(symlink ,sh %output))))
b860f382
LC
2357@end example
2358
c6f30b81
LC
2359Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten
2360as a monadic function:
b860f382
LC
2361
2362@example
45adbd62 2363(define (sh-symlink)
b860f382 2364 ;; Same, but return a monadic value.
c6f30b81
LC
2365 (mlet %store-monad ((drv (package->derivation bash)))
2366 (gexp->derivation "sh"
2367 #~(symlink (string-append #$drv "/bin/bash")
2368 #$output))))
b860f382
LC
2369@end example
2370
c6f30b81
LC
2371There several things to note in the second version: the @code{store}
2372parameter is now implicit and is ``threaded'' in the calls to the
2373@code{package->derivation} and @code{gexp->derivation} monadic
2374procedures, and the monadic value returned by @code{package->derivation}
2375is @dfn{bound} using @code{mlet} instead of plain @code{let}.
2376
2377As it turns out, the call to @code{package->derivation} can even be
2378omitted since it will take place implicitly, as we will see later
2379(@pxref{G-Expressions}):
2380
2381@example
2382(define (sh-symlink)
2383 (gexp->derivation "sh"
2384 #~(symlink (string-append #$bash "/bin/bash")
2385 #$output)))
2386@end example
b860f382 2387
8e9aa37f 2388Calling the monadic @code{sh-symlink} has no effect. To get the desired
b860f382
LC
2389effect, one must use @code{run-with-store}:
2390
2391@example
8e9aa37f
CAW
2392(run-with-store (open-connection) (sh-symlink))
2393@result{} /gnu/store/...-sh-symlink
b860f382
LC
2394@end example
2395
b9b86078
LC
2396Note that the @code{(guix monad-repl)} module extends Guile's REPL with
2397new ``meta-commands'' to make it easier to deal with monadic procedures:
2398@code{run-in-store}, and @code{enter-store-monad}. The former, is used
2399to ``run'' a single monadic value through the store:
2400
2401@example
2402scheme@@(guile-user)> ,run-in-store (package->derivation hello)
2403$1 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
2404@end example
2405
2406The latter enters a recursive REPL, where all the return values are
2407automatically run through the store:
2408
2409@example
2410scheme@@(guile-user)> ,enter-store-monad
2411store-monad@@(guile-user) [1]> (package->derivation hello)
2412$2 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
2413store-monad@@(guile-user) [1]> (text-file "foo" "Hello!")
2414$3 = "/gnu/store/@dots{}-foo"
2415store-monad@@(guile-user) [1]> ,q
2416scheme@@(guile-user)>
2417@end example
2418
2419@noindent
2420Note that non-monadic values cannot be returned in the
2421@code{store-monad} REPL.
2422
e87f0591
LC
2423The main syntactic forms to deal with monads in general are provided by
2424the @code{(guix monads)} module and are described below.
b860f382
LC
2425
2426@deffn {Scheme Syntax} with-monad @var{monad} @var{body} ...
2427Evaluate any @code{>>=} or @code{return} forms in @var{body} as being
2428in @var{monad}.
2429@end deffn
2430
2431@deffn {Scheme Syntax} return @var{val}
2432Return a monadic value that encapsulates @var{val}.
2433@end deffn
2434
2435@deffn {Scheme Syntax} >>= @var{mval} @var{mproc}
2436@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic
2437procedure @var{mproc}@footnote{This operation is commonly referred to as
2438``bind'', but that name denotes an unrelated procedure in Guile. Thus
2439we use this somewhat cryptic symbol inherited from the Haskell
2440language.}.
2441@end deffn
2442
2443@deffn {Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @
2444 @var{body} ...
2445@deffnx {Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @
2446 @var{body} ...
2447Bind the variables @var{var} to the monadic values @var{mval} in
2448@var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the
2449``normal'' value @var{val}, as per @code{let}.
2450
2451@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let}
2452(@pxref{Local Bindings,,, guile, GNU Guile Reference Manual}).
2453@end deffn
2454
405a9d4e
LC
2455@deffn {Scheme System} mbegin @var{monad} @var{mexp} ...
2456Bind @var{mexp} and the following monadic expressions in sequence,
2457returning the result of the last expression.
2458
2459This is akin to @code{mlet}, except that the return values of the
2460monadic expressions are ignored. In that sense, it is analogous to
2461@code{begin}, but applied to monadic expressions.
2462@end deffn
2463
561fb6c3
LC
2464@cindex state monad
2465The @code{(guix monads)} module provides the @dfn{state monad}, which
2466allows an additional value---the state---to be @emph{threaded} through
2467monadic procedure calls.
2468
2469@defvr {Scheme Variable} %state-monad
2470The state monad. Procedures in the state monad can access and change
2471the state that is threaded.
2472
2473Consider the example below. The @code{square} procedure returns a value
2474in the state monad. It returns the square of its argument, but also
2475increments the current state value:
2476
2477@example
2478(define (square x)
2479 (mlet %state-monad ((count (current-state)))
2480 (mbegin %state-monad
2481 (set-current-state (+ 1 count))
2482 (return (* x x)))))
2483
2484(run-with-state (sequence %state-monad (map square (iota 3))) 0)
2485@result{} (0 1 4)
2486@result{} 3
2487@end example
2488
2489When ``run'' through @var{%state-monad}, we obtain that additional state
2490value, which is the number of @code{square} calls.
2491@end defvr
2492
2493@deffn {Monadic Procedure} current-state
2494Return the current state as a monadic value.
2495@end deffn
2496
2497@deffn {Monadic Procedure} set-current-state @var{value}
2498Set the current state to @var{value} and return the previous state as a
2499monadic value.
2500@end deffn
2501
2502@deffn {Monadic Procedure} state-push @var{value}
2503Push @var{value} to the current state, which is assumed to be a list,
2504and return the previous state as a monadic value.
2505@end deffn
2506
2507@deffn {Monadic Procedure} state-pop
2508Pop a value from the current state and return it as a monadic value.
2509The state is assumed to be a list.
2510@end deffn
2511
2512@deffn {Scheme Procedure} run-with-state @var{mval} [@var{state}]
2513Run monadic value @var{mval} starting with @var{state} as the initial
2514state. Return two values: the resulting value, and the resulting state.
2515@end deffn
2516
e87f0591
LC
2517The main interface to the store monad, provided by the @code{(guix
2518store)} module, is as follows.
b860f382
LC
2519
2520@defvr {Scheme Variable} %store-monad
561fb6c3
LC
2521The store monad---an alias for @var{%state-monad}.
2522
2523Values in the store monad encapsulate accesses to the store. When its
2524effect is needed, a value of the store monad must be ``evaluated'' by
2525passing it to the @code{run-with-store} procedure (see below.)
b860f382
LC
2526@end defvr
2527
2528@deffn {Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]
2529Run @var{mval}, a monadic value in the store monad, in @var{store}, an
2530open store connection.
2531@end deffn
2532
ad372953 2533@deffn {Monadic Procedure} text-file @var{name} @var{text} [@var{references}]
b860f382 2534Return as a monadic value the absolute file name in the store of the file
ad372953
LC
2535containing @var{text}, a string. @var{references} is a list of store items that the
2536resulting text file refers to; it defaults to the empty list.
45adbd62
LC
2537@end deffn
2538
0a90af15
LC
2539@deffn {Monadic Procedure} interned-file @var{file} [@var{name}] @
2540 [#:recursive? #t]
2541Return the name of @var{file} once interned in the store. Use
2542@var{name} as its store name, or the basename of @var{file} if
2543@var{name} is omitted.
2544
2545When @var{recursive?} is true, the contents of @var{file} are added
2546recursively; if @var{file} designates a flat file and @var{recursive?}
2547is true, its contents are added, and its permission bits are kept.
2548
2549The example below adds a file to the store, under two different names:
2550
2551@example
2552(run-with-store (open-connection)
2553 (mlet %store-monad ((a (interned-file "README"))
2554 (b (interned-file "README" "LEGU-MIN")))
2555 (return (list a b))))
2556
2557@result{} ("/gnu/store/rwm@dots{}-README" "/gnu/store/44i@dots{}-LEGU-MIN")
2558@end example
2559
2560@end deffn
2561
e87f0591
LC
2562The @code{(guix packages)} module exports the following package-related
2563monadic procedures:
2564
b860f382 2565@deffn {Monadic Procedure} package-file @var{package} [@var{file}] @
4231f05b
LC
2566 [#:system (%current-system)] [#:target #f] @
2567 [#:output "out"] Return as a monadic
b860f382
LC
2568value in the absolute file name of @var{file} within the @var{output}
2569directory of @var{package}. When @var{file} is omitted, return the name
4231f05b
LC
2570of the @var{output} directory of @var{package}. When @var{target} is
2571true, use it as a cross-compilation target triplet.
b860f382
LC
2572@end deffn
2573
b860f382 2574@deffn {Monadic Procedure} package->derivation @var{package} [@var{system}]
4231f05b
LC
2575@deffnx {Monadic Procedure} package->cross-derivation @var{package} @
2576 @var{target} [@var{system}]
2577Monadic version of @code{package-derivation} and
2578@code{package-cross-derivation} (@pxref{Defining Packages}).
b860f382
LC
2579@end deffn
2580
2581
21b679f6
LC
2582@node G-Expressions
2583@section G-Expressions
2584
2585@cindex G-expression
2586@cindex build code quoting
2587So we have ``derivations'', which represent a sequence of build actions
2588to be performed to produce an item in the store (@pxref{Derivations}).
2589Those build actions are performed when asking the daemon to actually
2590build the derivations; they are run by the daemon in a container
2591(@pxref{Invoking guix-daemon}).
2592
2593@cindex strata of code
2594It should come as no surprise that we like to write those build actions
2595in Scheme. When we do that, we end up with two @dfn{strata} of Scheme
2596code@footnote{The term @dfn{stratum} in this context was coined by
ef4ab0a4
LC
2597Manuel Serrano et al.@: in the context of their work on Hop. Oleg
2598Kiselyov, who has written insightful
2599@url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code
2600on this topic}, refers to this kind of code generation as
2601@dfn{staging}.}: the ``host code''---code that defines packages, talks
2602to the daemon, etc.---and the ``build code''---code that actually
2603performs build actions, such as making directories, invoking
2604@command{make}, etc.
21b679f6
LC
2605
2606To describe a derivation and its build actions, one typically needs to
2607embed build code inside host code. It boils down to manipulating build
2608code as data, and Scheme's homoiconicity---code has a direct
2609representation as data---comes in handy for that. But we need more than
2610Scheme's normal @code{quasiquote} mechanism to construct build
2611expressions.
2612
2613The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of
2614S-expressions adapted to build expressions. G-expressions, or
2615@dfn{gexps}, consist essentially in three syntactic forms: @code{gexp},
2616@code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~},
2617@code{#$}, and @code{#$@@}), which are comparable respectively to
2618@code{quasiquote}, @code{unquote}, and @code{unquote-splicing}
2619(@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile
2620Reference Manual}). However, there are major differences:
2621
2622@itemize
2623@item
2624Gexps are meant to be written to a file and run or manipulated by other
2625processes.
2626
2627@item
b39fc6f7
LC
2628When a high-level object such as a package or derivation is unquoted
2629inside a gexp, the result is as if its output file name had been
2630introduced.
ff40e9b7 2631
21b679f6
LC
2632@item
2633Gexps carry information about the packages or derivations they refer to,
2634and these dependencies are automatically added as inputs to the build
2635processes that use them.
2636@end itemize
2637
b39fc6f7
LC
2638Actually this mechanism is not limited to package and derivation
2639objects; @dfn{compilers} able to ``lower'' other high-level objects to
2640derivations can be defined, such that these objects can also be inserted
d9ae938f
LC
2641into gexps. Another useful type of high-level object that can be
2642inserted in a gexp is @dfn{local files}, which allows files from the
2643local file system to be added to the store and referred to by
2644derivations and such (see @code{local-file} below.)
b39fc6f7 2645
21b679f6
LC
2646To illustrate the idea, here is an example of a gexp:
2647
2648@example
2649(define build-exp
2650 #~(begin
2651 (mkdir #$output)
2652 (chdir #$output)
aff8ce7c 2653 (symlink (string-append #$coreutils "/bin/ls")
21b679f6
LC
2654 "list-files")))
2655@end example
2656
2657This gexp can be passed to @code{gexp->derivation}; we obtain a
2658derivation that builds a directory containing exactly one symlink to
2659@file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:
2660
2661@example
2662(gexp->derivation "the-thing" build-exp)
2663@end example
2664
e20fd1bf 2665As one would expect, the @code{"/gnu/store/@dots{}-coreutils-8.22"} string is
21b679f6
LC
2666substituted to the reference to the @var{coreutils} package in the
2667actual build code, and @var{coreutils} is automatically made an input to
2668the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp
2669output)}) is replaced by a string containing the derivation's output
667b2508
LC
2670directory name.
2671
2672@cindex cross compilation
2673In a cross-compilation context, it is useful to distinguish between
2674references to the @emph{native} build of a package---that can run on the
2675host---versus references to cross builds of a package. To that end, the
2676@code{#+} plays the same role as @code{#$}, but is a reference to a
2677native package build:
2678
2679@example
2680(gexp->derivation "vi"
2681 #~(begin
2682 (mkdir #$output)
2683 (system* (string-append #+coreutils "/bin/ln")
2684 "-s"
2685 (string-append #$emacs "/bin/emacs")
2686 (string-append #$output "/bin/vi")))
2687 #:target "mips64el-linux")
2688@end example
2689
2690@noindent
2691In the example above, the native build of @var{coreutils} is used, so
2692that @command{ln} can actually run on the host; but then the
2693cross-compiled build of @var{emacs} is referenced.
2694
2695The syntactic form to construct gexps is summarized below.
21b679f6
LC
2696
2697@deffn {Scheme Syntax} #~@var{exp}
2698@deffnx {Scheme Syntax} (gexp @var{exp})
2699Return a G-expression containing @var{exp}. @var{exp} may contain one
2700or more of the following forms:
2701
2702@table @code
2703@item #$@var{obj}
2704@itemx (ungexp @var{obj})
b39fc6f7
LC
2705Introduce a reference to @var{obj}. @var{obj} may have one of the
2706supported types, for example a package or a
21b679f6
LC
2707derivation, in which case the @code{ungexp} form is replaced by its
2708output file name---e.g., @code{"/gnu/store/@dots{}-coreutils-8.22}.
2709
b39fc6f7
LC
2710If @var{obj} is a list, it is traversed and references to supported
2711objects are substituted similarly.
21b679f6
LC
2712
2713If @var{obj} is another gexp, its contents are inserted and its
2714dependencies are added to those of the containing gexp.
2715
2716If @var{obj} is another kind of object, it is inserted as is.
2717
b39fc6f7
LC
2718@item #$@var{obj}:@var{output}
2719@itemx (ungexp @var{obj} @var{output})
21b679f6 2720This is like the form above, but referring explicitly to the
b39fc6f7
LC
2721@var{output} of @var{obj}---this is useful when @var{obj} produces
2722multiple outputs (@pxref{Packages with Multiple Outputs}).
21b679f6 2723
667b2508
LC
2724@item #+@var{obj}
2725@itemx #+@var{obj}:output
2726@itemx (ungexp-native @var{obj})
2727@itemx (ungexp-native @var{obj} @var{output})
2728Same as @code{ungexp}, but produces a reference to the @emph{native}
2729build of @var{obj} when used in a cross compilation context.
2730
21b679f6
LC
2731@item #$output[:@var{output}]
2732@itemx (ungexp output [@var{output}])
2733Insert a reference to derivation output @var{output}, or to the main
2734output when @var{output} is omitted.
2735
2736This only makes sense for gexps passed to @code{gexp->derivation}.
2737
2738@item #$@@@var{lst}
2739@itemx (ungexp-splicing @var{lst})
2740Like the above, but splices the contents of @var{lst} inside the
2741containing list.
2742
667b2508
LC
2743@item #+@@@var{lst}
2744@itemx (ungexp-native-splicing @var{lst})
2745Like the above, but refers to native builds of the objects listed in
2746@var{lst}.
2747
21b679f6
LC
2748@end table
2749
2750G-expressions created by @code{gexp} or @code{#~} are run-time objects
2751of the @code{gexp?} type (see below.)
2752@end deffn
2753
2754@deffn {Scheme Procedure} gexp? @var{obj}
2755Return @code{#t} if @var{obj} is a G-expression.
2756@end deffn
2757
2758G-expressions are meant to be written to disk, either as code building
2759some derivation, or as plain files in the store. The monadic procedures
2760below allow you to do that (@pxref{The Store Monad}, for more
2761information about monads.)
2762
2763@deffn {Monadic Procedure} gexp->derivation @var{name} @var{exp} @
ce45eb4c 2764 [#:system (%current-system)] [#:target #f] [#:graft? #t] @
21b679f6
LC
2765 [#:hash #f] [#:hash-algo #f] @
2766 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
4684f301 2767 [#:module-path @var{%load-path}] @
c8351d9a 2768 [#:references-graphs #f] [#:allowed-references #f] @
c0468155 2769 [#:leaked-env-vars #f] @
c8351d9a 2770 [#:local-build? #f] [#:guile-for-build #f]
21b679f6 2771Return a derivation @var{name} that runs @var{exp} (a gexp) with
68a61e9f
LC
2772@var{guile-for-build} (a derivation) on @var{system}. When @var{target}
2773is true, it is used as the cross-compilation target triplet for packages
2774referred to by @var{exp}.
21b679f6 2775
ce45eb4c
LC
2776Make @var{modules} available in the evaluation context of @var{exp};
2777@var{modules} is a list of names of Guile modules searched in
2778@var{module-path} to be copied in the store, compiled, and made available in
21b679f6
LC
2779the load path during the execution of @var{exp}---e.g., @code{((guix
2780build utils) (guix build gnu-build-system))}.
2781
ce45eb4c
LC
2782@var{graft?} determines whether packages referred to by @var{exp} should be grafted when
2783applicable.
2784
b53833b2
LC
2785When @var{references-graphs} is true, it must be a list of tuples of one of the
2786following forms:
2787
2788@example
2789(@var{file-name} @var{package})
2790(@var{file-name} @var{package} @var{output})
2791(@var{file-name} @var{derivation})
2792(@var{file-name} @var{derivation} @var{output})
2793(@var{file-name} @var{store-item})
2794@end example
2795
2796The right-hand-side of each element of @var{references-graphs} is automatically made
2797an input of the build process of @var{exp}. In the build environment, each
2798@var{file-name} contains the reference graph of the corresponding item, in a simple
2799text format.
2800
c8351d9a
LC
2801@var{allowed-references} must be either @code{#f} or a list of output names and packages.
2802In the latter case, the list denotes store items that the result is allowed to
2803refer to. Any reference to another store item will lead to a build error.
2804
e20fd1bf 2805The other arguments are as for @code{derivation} (@pxref{Derivations}).
21b679f6
LC
2806@end deffn
2807
d9ae938f
LC
2808@deffn {Scheme Procedure} local-file @var{file} [@var{name}] @
2809 [#:recursive? #t]
2810Return an object representing local file @var{file} to add to the store; this
2811object can be used in a gexp. @var{file} will be added to the store under @var{name}--by
2812default the base name of @var{file}.
2813
2814When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file}
2815designates a flat file and @var{recursive?} is true, its contents are added, and its
2816permission bits are kept.
2817
2818This is the declarative counterpart of the @code{interned-file} monadic
2819procedure (@pxref{The Store Monad, @code{interned-file}}).
2820@end deffn
2821
21b679f6
LC
2822@deffn {Monadic Procedure} gexp->script @var{name} @var{exp}
2823Return an executable script @var{name} that runs @var{exp} using
2824@var{guile} with @var{modules} in its search path.
2825
2826The example below builds a script that simply invokes the @command{ls}
2827command:
2828
2829@example
2830(use-modules (guix gexp) (gnu packages base))
2831
2832(gexp->script "list-files"
2833 #~(execl (string-append #$coreutils "/bin/ls")
2834 "ls"))
2835@end example
2836
2837When ``running'' it through the store (@pxref{The Store Monad,
e20fd1bf 2838@code{run-with-store}}), we obtain a derivation that produces an
21b679f6
LC
2839executable file @file{/gnu/store/@dots{}-list-files} along these lines:
2840
2841@example
2842#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds
2843!#
2844(execl (string-append "/gnu/store/@dots{}-coreutils-8.22"/bin/ls")
2845 "ls")
2846@end example
2847@end deffn
2848
2849@deffn {Monadic Procedure} gexp->file @var{name} @var{exp}
2850Return a derivation that builds a file @var{name} containing @var{exp}.
2851
2852The resulting file holds references to all the dependencies of @var{exp}
2853or a subset thereof.
2854@end deffn
1ed19464
LC
2855
2856@deffn {Monadic Procedure} text-file* @var{name} @var{text} @dots{}
2857Return as a monadic value a derivation that builds a text file
2858containing all of @var{text}. @var{text} may list, in addition to
d9ae938f
LC
2859strings, objects of any type that can be used in a gexp: packages,
2860derivations, local file objects, etc. The resulting store file holds
2861references to all these.
1ed19464
LC
2862
2863This variant should be preferred over @code{text-file} anytime the file
2864to create will reference items from the store. This is typically the
2865case when building a configuration file that embeds store file names,
2866like this:
2867
2868@example
2869(define (profile.sh)
2870 ;; Return the name of a shell script in the store that
2871 ;; initializes the 'PATH' environment variable.
2872 (text-file* "profile.sh"
2873 "export PATH=" coreutils "/bin:"
2874 grep "/bin:" sed "/bin\n"))
2875@end example
2876
2877In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file
2878will references @var{coreutils}, @var{grep}, and @var{sed}, thereby
2879preventing them from being garbage-collected during its lifetime.
2880@end deffn
21b679f6
LC
2881
2882Of course, in addition to gexps embedded in ``host'' code, there are
2883also modules containing build tools. To make it clear that they are
2884meant to be used in the build stratum, these modules are kept in the
2885@code{(guix build @dots{})} name space.
2886
2887
568717fd
LC
2888@c *********************************************************************
2889@node Utilities
2890@chapter Utilities
2891
210cc920
LC
2892This section describes tools primarily targeted at developers and users
2893who write new package definitions. They complement the Scheme
2894programming interface of Guix in a convenient way.
2895
568717fd 2896@menu
37166310 2897* Invoking guix build:: Building packages from the command line.
210cc920 2898* Invoking guix download:: Downloading a file and printing its hash.
37166310 2899* Invoking guix hash:: Computing the cryptographic hash of a file.
2f7d2d91 2900* Invoking guix import:: Importing package definitions.
37166310 2901* Invoking guix refresh:: Updating package definitions.
b4f5e0e8 2902* Invoking guix lint:: Finding errors in package definitions.
372c4bbc 2903* Invoking guix environment:: Setting up development environments.
aff8ce7c 2904* Invoking guix publish:: Sharing substitutes.
568717fd
LC
2905@end menu
2906
e49951eb
MW
2907@node Invoking guix build
2908@section Invoking @command{guix build}
568717fd 2909
e49951eb 2910The @command{guix build} command builds packages or derivations and
6798a8e4
LC
2911their dependencies, and prints the resulting store paths. Note that it
2912does not modify the user's profile---this is the job of the
e49951eb 2913@command{guix package} command (@pxref{Invoking guix package}). Thus,
6798a8e4
LC
2914it is mainly useful for distribution developers.
2915
2916The general syntax is:
c78bd12b
LC
2917
2918@example
e49951eb 2919guix build @var{options} @var{package-or-derivation}@dots{}
c78bd12b
LC
2920@end example
2921
2922@var{package-or-derivation} may be either the name of a package found in
5401dd75
LC
2923the software distribution such as @code{coreutils} or
2924@code{coreutils-8.20}, or a derivation such as
834129e0 2925@file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a
e7f34eb0
LC
2926package with the corresponding name (and optionally version) is searched
2927for among the GNU distribution modules (@pxref{Package Modules}).
2928
2929Alternatively, the @code{--expression} option may be used to specify a
2930Scheme expression that evaluates to a package; this is useful when
2931disambiguation among several same-named packages or package variants is
2932needed.
c78bd12b
LC
2933
2934The @var{options} may be zero or more of the following:
2935
2936@table @code
2937
2938@item --expression=@var{expr}
2939@itemx -e @var{expr}
ac5de156 2940Build the package or derivation @var{expr} evaluates to.
c78bd12b 2941
5401dd75 2942For example, @var{expr} may be @code{(@@ (gnu packages guile)
c78bd12b
LC
2943guile-1.8)}, which unambiguously designates this specific variant of
2944version 1.8 of Guile.
2945
56b82106
LC
2946Alternately, @var{expr} may be a G-expression, in which case it is used
2947as a build program passed to @code{gexp->derivation}
2948(@pxref{G-Expressions}).
2949
2950Lastly, @var{expr} may refer to a zero-argument monadic procedure
ac5de156
LC
2951(@pxref{The Store Monad}). The procedure must return a derivation as a
2952monadic value, which is then passed through @code{run-with-store}.
2953
c78bd12b
LC
2954@item --source
2955@itemx -S
2956Build the packages' source derivations, rather than the packages
2957themselves.
2958
e49951eb 2959For instance, @code{guix build -S gcc} returns something like
834129e0 2960@file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is GCC's source tarball.
c78bd12b 2961
f9cc8971
LC
2962The returned source tarball is the result of applying any patches and
2963code snippets specified in the package's @code{origin} (@pxref{Defining
2964Packages}).
2965
2cdfe13d
EB
2966@item --sources
2967Fetch and return the source of @var{package-or-derivation} and all their
2968dependencies, recursively. This is a handy way to obtain a local copy
2969of all the source code needed to build @var{packages}, allowing you to
2970eventually build them even without network access. It is an extension
2971of the @code{--source} option and can accept one of the following
2972optional argument values:
2973
2974@table @code
2975@item package
2976This value causes the @code{--sources} option to behave in the same way
2977as the @code{--source} option.
2978
2979@item all
2980Build all packages' source derivations, including any source that might
2981be listed as @code{inputs}. This is the default value.
2982
2983@example
2984$ guix build --sources tzdata
2985The following derivations will be built:
2986 /gnu/store/@dots{}-tzdata2015b.tar.gz.drv
2987 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
2988@end example
2989
2990@item transitive
2991Build all packages' source derivations, as well as all source
2992derivations for packages' transitive inputs. This can be used e.g. to
2993prefetch package source for later offline building.
2994
2995@example
2996$ guix build --sources=transitive tzdata
2997The following derivations will be built:
2998 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
2999 /gnu/store/@dots{}-findutils-4.4.2.tar.xz.drv
3000 /gnu/store/@dots{}-grep-2.21.tar.xz.drv
3001 /gnu/store/@dots{}-coreutils-8.23.tar.xz.drv
3002 /gnu/store/@dots{}-make-4.1.tar.xz.drv
3003 /gnu/store/@dots{}-bash-4.3.tar.xz.drv
3004@dots{}
3005@end example
3006
3007@end table
3008
c78bd12b
LC
3009@item --system=@var{system}
3010@itemx -s @var{system}
3011Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of
3012the host's system type.
3013
3014An example use of this is on Linux-based systems, which can emulate
3015different personalities. For instance, passing
3016@code{--system=i686-linux} on an @code{x86_64-linux} system allows users
3017to build packages in a complete 32-bit environment.
3018
e55ec43d
LC
3019@item --target=@var{triplet}
3020@cindex cross-compilation
3021Cross-build for @var{triplet}, which must be a valid GNU triplet, such
3022as @code{"mips64el-linux-gnu"} (@pxref{Configuration Names, GNU
3023configuration triplets,, configure, GNU Configure and Build System}).
3024
7f3673f2
LC
3025@item --with-source=@var{source}
3026Use @var{source} as the source of the corresponding package.
3027@var{source} must be a file name or a URL, as for @command{guix
3028download} (@pxref{Invoking guix download}).
3029
3030The ``corresponding package'' is taken to be one specified on the
3031command line whose name matches the base of @var{source}---e.g., if
3032@var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding
3033package is @code{guile}. Likewise, the version string is inferred from
3034@var{source}; in the previous example, it's @code{2.0.10}.
3035
3036This option allows users to try out versions of packages other than the
3037one provided by the distribution. The example below downloads
3038@file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for
3039the @code{ed} package:
3040
3041@example
3042guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz
3043@end example
3044
3045As a developer, @code{--with-source} makes it easy to test release
3046candidates:
3047
3048@example
3049guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz
3050@end example
3051
05962f29
LC
3052@item --no-grafts
3053Do not ``graft'' packages. In practice, this means that package updates
3054available as grafts are not applied. @xref{Security Updates}, for more
3055information on grafts.
7f3673f2 3056
c78bd12b
LC
3057@item --derivations
3058@itemx -d
3059Return the derivation paths, not the output paths, of the given
3060packages.
3061
70ee5642
LC
3062@item --root=@var{file}
3063@itemx -r @var{file}
3064Make @var{file} a symlink to the result, and register it as a garbage
3065collector root.
3066
3067@item --log-file
3068Return the build log file names for the given
3069@var{package-or-derivation}s, or raise an error if build logs are
3070missing.
3071
3072This works regardless of how packages or derivations are specified. For
3073instance, the following invocations are equivalent:
3074
3075@example
3076guix build --log-file `guix build -d guile`
3077guix build --log-file `guix build guile`
3078guix build --log-file guile
3079guix build --log-file -e '(@@ (gnu packages guile) guile-2.0)'
3080@end example
3081
3082
3083@end table
3084
3085@cindex common build options
3086In addition, a number of options that control the build process are
3087common to @command{guix build} and other commands that can spawn builds,
3088such as @command{guix package} or @command{guix archive}. These are the
3089following:
3090
3091@table @code
3092
300868ba
LC
3093@item --load-path=@var{directory}
3094@itemx -L @var{directory}
3095Add @var{directory} to the front of the package module search path
3096(@pxref{Package Modules}).
3097
3098This allows users to define their own packages and make them visible to
3099the command-line tools.
3100
c78bd12b
LC
3101@item --keep-failed
3102@itemx -K
3103Keep the build tree of failed builds. Thus, if a build fail, its build
3104tree is kept under @file{/tmp}, in a directory whose name is shown at
3105the end of the build log. This is useful when debugging build issues.
3106
3107@item --dry-run
3108@itemx -n
3109Do not build the derivations.
3110
56b1f4b7
LC
3111@item --fallback
3112When substituting a pre-built binary fails, fall back to building
3113packages locally.
3114
c78bd12b 3115@item --no-substitutes
b5385b52 3116Do not use substitutes for build products. That is, always build things
c4202d60
LC
3117locally instead of allowing downloads of pre-built binaries
3118(@pxref{Substitutes}).
c78bd12b 3119
425b0bfc 3120@item --no-build-hook
4ec2e92d
LC
3121Do not attempt to offload builds @i{via} the daemon's ``build hook''
3122(@pxref{Daemon Offload Setup}). That is, always build things locally
3123instead of offloading builds to remote machines.
425b0bfc 3124
969e678e
LC
3125@item --max-silent-time=@var{seconds}
3126When the build or substitution process remains silent for more than
3127@var{seconds}, terminate it and report a build failure.
3128
002622b6
LC
3129@item --timeout=@var{seconds}
3130Likewise, when the build or substitution process lasts for more than
3131@var{seconds}, terminate it and report a build failure.
3132
3133By default there is no timeout. This behavior can be restored with
3134@code{--timeout=0}.
3135
07ab4bf1
LC
3136@item --verbosity=@var{level}
3137Use the given verbosity level. @var{level} must be an integer between 0
3138and 5; higher means more verbose output. Setting a level of 4 or more
3139may be helpful when debugging setup issues with the build daemon.
3140
70ee5642
LC
3141@item --cores=@var{n}
3142@itemx -c @var{n}
3143Allow the use of up to @var{n} CPU cores for the build. The special
3144value @code{0} means to use as many CPU cores as available.
bf421152 3145
f6526eb3
LC
3146@item --max-jobs=@var{n}
3147@itemx -M @var{n}
3148Allow at most @var{n} build jobs in parallel. @xref{Invoking
3149guix-daemon, @code{--max-jobs}}, for details about this option and the
3150equivalent @command{guix-daemon} option.
3151
c78bd12b
LC
3152@end table
3153
e49951eb 3154Behind the scenes, @command{guix build} is essentially an interface to
c78bd12b
LC
3155the @code{package-derivation} procedure of the @code{(guix packages)}
3156module, and to the @code{build-derivations} procedure of the @code{(guix
01d8ac64 3157derivations)} module.
c78bd12b 3158
16eb115e
DP
3159In addition to options explicitly passed on the command line,
3160@command{guix build} and other @command{guix} commands that support
3161building honor the @code{GUIX_BUILD_OPTIONS} environment variable.
3162
3163@defvr {Environment Variable} GUIX_BUILD_OPTIONS
3164Users can define this variable to a list of command line options that
3165will automatically be used by @command{guix build} and other
3166@command{guix} commands that can perform builds, as in the example
3167below:
3168
3169@example
3170$ export GUIX_BUILD_OPTIONS="--no-substitutes -c 2 -L /foo/bar"
3171@end example
3172
847391fe
DP
3173These options are parsed independently, and the result is appended to
3174the parsed command-line options.
16eb115e
DP
3175@end defvr
3176
3177
210cc920
LC
3178@node Invoking guix download
3179@section Invoking @command{guix download}
3180
3181When writing a package definition, developers typically need to download
3182the package's source tarball, compute its SHA256 hash, and write that
3183hash in the package definition (@pxref{Defining Packages}). The
3184@command{guix download} tool helps with this task: it downloads a file
3185from the given URI, adds it to the store, and prints both its file name
3186in the store and its SHA256 hash.
3187
3188The fact that the downloaded file is added to the store saves bandwidth:
3189when the developer eventually tries to build the newly defined package
3190with @command{guix build}, the source tarball will not have to be
3191downloaded again because it is already in the store. It is also a
3192convenient way to temporarily stash files, which may be deleted
3193eventually (@pxref{Invoking guix gc}).
3194
3195The @command{guix download} command supports the same URIs as used in
3196package definitions. In particular, it supports @code{mirror://} URIs.
3197@code{https} URIs (HTTP over TLS) are supported @emph{provided} the
3198Guile bindings for GnuTLS are available in the user's environment; when
537c8bb3
LC
3199they are not available, an error is raised. @xref{Guile Preparations,
3200how to install the GnuTLS bindings for Guile,, gnutls-guile,
3201GnuTLS-Guile}, for more information.
210cc920
LC
3202
3203The following option is available:
3204
3205@table @code
3206@item --format=@var{fmt}
3207@itemx -f @var{fmt}
3208Write the hash in the format specified by @var{fmt}. For more
081145cf 3209information on the valid values for @var{fmt}, @pxref{Invoking guix hash}.
210cc920
LC
3210@end table
3211
6c365eca
NK
3212@node Invoking guix hash
3213@section Invoking @command{guix hash}
3214
210cc920 3215The @command{guix hash} command computes the SHA256 hash of a file.
6c365eca
NK
3216It is primarily a convenience tool for anyone contributing to the
3217distribution: it computes the cryptographic hash of a file, which can be
3218used in the definition of a package (@pxref{Defining Packages}).
3219
3220The general syntax is:
3221
3222@example
3223guix hash @var{option} @var{file}
3224@end example
3225
3226@command{guix hash} has the following option:
3227
3228@table @code
3229
3230@item --format=@var{fmt}
3231@itemx -f @var{fmt}
210cc920 3232Write the hash in the format specified by @var{fmt}.
6c365eca
NK
3233
3234Supported formats: @code{nix-base32}, @code{base32}, @code{base16}
3235(@code{hex} and @code{hexadecimal} can be used as well).
3236
3237If the @option{--format} option is not specified, @command{guix hash}
3238will output the hash in @code{nix-base32}. This representation is used
3239in the definitions of packages.
3240
3140f2df
LC
3241@item --recursive
3242@itemx -r
3243Compute the hash on @var{file} recursively.
3244
3245In this case, the hash is computed on an archive containing @var{file},
3246including its children if it is a directory. Some of @var{file}'s
3247meta-data is part of the archive; for instance, when @var{file} is a
3248regular file, the hash is different depending on whether @var{file} is
3249executable or not. Meta-data such as time stamps has no impact on the
3250hash (@pxref{Invoking guix archive}).
3251@c FIXME: Replace xref above with xref to an ``Archive'' section when
3252@c it exists.
3253
6c365eca
NK
3254@end table
3255
2f7d2d91
LC
3256@node Invoking guix import
3257@section Invoking @command{guix import}
3258
3259@cindex importing packages
3260@cindex package import
3261@cindex package conversion
3262The @command{guix import} command is useful for people willing to add a
3263package to the distribution but who'd rather do as little work as
3264possible to get there---a legitimate demand. The command knows of a few
3265repositories from which it can ``import'' package meta-data. The result
3266is a package definition, or a template thereof, in the format we know
3267(@pxref{Defining Packages}).
3268
3269The general syntax is:
3270
3271@example
3272guix import @var{importer} @var{options}@dots{}
3273@end example
3274
3275@var{importer} specifies the source from which to import package
3276meta-data, and @var{options} specifies a package identifier and other
3277options specific to @var{importer}. Currently, the available
3278``importers'' are:
3279
3280@table @code
3281@item gnu
3282Import meta-data for the given GNU package. This provides a template
3283for the latest version of that GNU package, including the hash of its
3284source tarball, and its canonical synopsis and description.
3285
3286Additional information such as the package's dependencies and its
3287license needs to be figured out manually.
3288
3289For example, the following command returns a package definition for
3290GNU@tie{}Hello:
3291
3292@example
3293guix import gnu hello
3294@end example
3295
3296Specific command-line options are:
3297
3298@table @code
3299@item --key-download=@var{policy}
3300As for @code{guix refresh}, specify the policy to handle missing OpenPGP
3301keys when verifying the package's signature. @xref{Invoking guix
3302refresh, @code{--key-download}}.
3303@end table
3304
3305@item pypi
3306@cindex pypi
3307Import meta-data from the @uref{https://pypi.python.org/, Python Package
3308Index}@footnote{This functionality requires Guile-JSON to be installed.
3309@xref{Requirements}.}. Information is taken from the JSON-formatted
3310description available at @code{pypi.python.org} and usually includes all
3311the relevant information, including package dependencies.
3312
3313The command below imports meta-data for the @code{itsdangerous} Python
3314package:
3315
3316@example
3317guix import pypi itsdangerous
3318@end example
3319
d45dc6da
EB
3320@item cpan
3321@cindex CPAN
3322Import meta-data from @uref{https://www.metacpan.org/, MetaCPAN}.
3323Information is taken from the JSON-formatted meta-data provided through
3324@uref{https://api.metacpan.org/, MetaCPAN's API} and includes most
66392e47
EB
3325relevant information, such as module dependencies. License information
3326should be checked closely. If Perl is available in the store, then the
3327@code{corelist} utility will be used to filter core modules out of the
3328list of dependencies.
d45dc6da
EB
3329
3330The command command below imports meta-data for the @code{Acme::Boolean}
3331Perl module:
3332
3333@example
3334guix import cpan Acme::Boolean
3335@end example
3336
2f7d2d91
LC
3337@item nix
3338Import meta-data from a local copy of the source of the
3339@uref{http://nixos.org/nixpkgs/, Nixpkgs distribution}@footnote{This
3340relies on the @command{nix-instantiate} command of
3341@uref{http://nixos.org/nix/, Nix}.}. Package definitions in Nixpkgs are
3342typically written in a mixture of Nix-language and Bash code. This
3343command only imports the high-level package structure that is written in
3344the Nix language. It normally includes all the basic fields of a
3345package definition.
3346
3347When importing a GNU package, the synopsis and descriptions are replaced
3348by their canonical upstream variant.
3349
3350As an example, the command below imports the package definition of
3351LibreOffice (more precisely, it imports the definition of the package
3352bound to the @code{libreoffice} top-level attribute):
3353
3354@example
3355guix import nix ~/path/to/nixpkgs libreoffice
3356@end example
863af4e1
FB
3357
3358@item hackage
3359@cindex hackage
3360Import meta-data from Haskell community's central package archive
3361@uref{https://hackage.haskell.org/, Hackage}. Information is taken from
3362Cabal files and includes all the relevant information, including package
3363dependencies.
3364
3365Specific command-line options are:
3366
3367@table @code
3368@item --no-test-dependencies
3369@itemx -t
3370Do not include dependencies only required to run the test suite.
3371@end table
3372
3373The command below imports meta-data for the latest version of the
3374@code{HTTP} Haskell package without including test dependencies:
3375
3376@example
3377guix import hackage -t HTTP
3378@end example
3379
3380A specific package version may optionally be specified by following the
3381package name by a hyphen and a version number as in the following example:
3382
3383@example
3384guix import hackage mtl-2.1.3.1
3385@end example
3386
3387Currently only indentation structured Cabal files are supported.
2f7d2d91
LC
3388@end table
3389
3390The structure of the @command{guix import} code is modular. It would be
3391useful to have more importers for other package formats, and your help
3392is welcome here (@pxref{Contributing}).
3393
37166310
LC
3394@node Invoking guix refresh
3395@section Invoking @command{guix refresh}
3396
3397The primary audience of the @command{guix refresh} command is developers
3398of the GNU software distribution. By default, it reports any packages
3399provided by the distribution that are outdated compared to the latest
3400upstream version, like this:
3401
3402@example
3403$ guix refresh
3404gnu/packages/gettext.scm:29:13: gettext would be upgraded from 0.18.1.1 to 0.18.2.1
3405gnu/packages/glib.scm:77:12: glib would be upgraded from 2.34.3 to 2.37.0
3406@end example
3407
3408It does so by browsing each package's FTP directory and determining the
3409highest version number of the source tarballs
3410therein@footnote{Currently, this only works for GNU packages.}.
3411
3412When passed @code{--update}, it modifies distribution source files to
3413update the version numbers and source tarball hashes of those packages'
3414recipes (@pxref{Defining Packages}). This is achieved by downloading
3415each package's latest source tarball and its associated OpenPGP
3416signature, authenticating the downloaded tarball against its signature
3417using @command{gpg}, and finally computing its hash. When the public
3418key used to sign the tarball is missing from the user's keyring, an
3419attempt is made to automatically retrieve it from a public key server;
3420when it's successful, the key is added to the user's keyring; otherwise,
3421@command{guix refresh} reports an error.
3422
3423The following options are supported:
3424
3425@table @code
3426
3427@item --update
3428@itemx -u
3429Update distribution source files (package recipes) in place.
081145cf 3430@xref{Defining Packages}, for more information on package definitions.
37166310
LC
3431
3432@item --select=[@var{subset}]
3433@itemx -s @var{subset}
3434Select all the packages in @var{subset}, one of @code{core} or
3435@code{non-core}.
3436
3437The @code{core} subset refers to all the packages at the core of the
3438distribution---i.e., packages that are used to build ``everything
3439else''. This includes GCC, libc, Binutils, Bash, etc. Usually,
3440changing one of these packages in the distribution entails a rebuild of
3441all the others. Thus, such updates are an inconvenience to users in
3442terms of build time or bandwidth used to achieve the upgrade.
3443
3444The @code{non-core} subset refers to the remaining packages. It is
3445typically useful in cases where an update of the core packages would be
3446inconvenient.
3447
3448@end table
3449
3450In addition, @command{guix refresh} can be passed one or more package
3451names, as in this example:
3452
3453@example
4b9b3cbb 3454guix refresh -u emacs idutils gcc-4.8.4
37166310
LC
3455@end example
3456
3457@noindent
3458The command above specifically updates the @code{emacs} and
3459@code{idutils} packages. The @code{--select} option would have no
3460effect in this case.
3461
7d193ec3
EB
3462When considering whether to upgrade a package, it is sometimes
3463convenient to know which packages would be affected by the upgrade and
3464should be checked for compatibility. For this the following option may
3465be used when passing @command{guix refresh} one or more package names:
3466
3467@table @code
3468
3469@item --list-dependent
3470@itemx -l
3471List top-level dependent packages that would need to be rebuilt as a
3472result of upgrading one or more packages.
3473
3474@end table
3475
3476Be aware that the @code{--list-dependent} option only
3477@emph{approximates} the rebuilds that would be required as a result of
3478an upgrade. More rebuilds might be required under some circumstances.
3479
3480@example
7779ab61
LC
3481$ guix refresh --list-dependent flex
3482Building the following 120 packages would ensure 213 dependent packages are rebuilt:
3483hop-2.4.0 geiser-0.4 notmuch-0.18 mu-0.9.9.5 cflow-1.4 idutils-4.6 @dots{}
7d193ec3
EB
3484@end example
3485
3486The command above lists a set of packages that could be built to check
3487for compatibility with an upgraded @code{flex} package.
3488
f9230085
LC
3489The following options can be used to customize GnuPG operation:
3490
3491@table @code
3492
f9230085
LC
3493@item --gpg=@var{command}
3494Use @var{command} as the GnuPG 2.x command. @var{command} is searched
3495for in @code{$PATH}.
3496
2bc53ba9
LC
3497@item --key-download=@var{policy}
3498Handle missing OpenPGP keys according to @var{policy}, which may be one
3499of:
3500
3501@table @code
3502@item always
3503Always download missing OpenPGP keys from the key server, and add them
3504to the user's GnuPG keyring.
3505
3506@item never
3507Never try to download missing OpenPGP keys. Instead just bail out.
3508
3509@item interactive
3510When a package signed with an unknown OpenPGP key is encountered, ask
3511the user whether to download it or not. This is the default behavior.
3512@end table
3513
3514@item --key-server=@var{host}
3515Use @var{host} as the OpenPGP key server when importing a public key.
3516
f9230085
LC
3517@end table
3518
b4f5e0e8
CR
3519@node Invoking guix lint
3520@section Invoking @command{guix lint}
3521The @command{guix lint} is meant to help package developers avoid common
873c4085
LC
3522errors and use a consistent style. It runs a number of checks on a
3523given set of packages in order to find common mistakes in their
3524definitions. Available @dfn{checkers} include (see
3525@code{--list-checkers} for a complete list):
3526
3527@table @code
3528@item synopsis
3529@itemx description
3530Validate certain typographical and stylistic rules about package
3531descriptions and synopses.
3532
3533@item inputs-should-be-native
3534Identify inputs that should most likely be native inputs.
3535
3536@item source
3537@itemx home-page
3538Probe @code{home-page} and @code{source} URLs and report those that are
3539invalid.
3540@end table
b4f5e0e8
CR
3541
3542The general syntax is:
3543
3544@example
3545guix lint @var{options} @var{package}@dots{}
3546@end example
3547
3548If no package is given on the command line, then all packages are checked.
3549The @var{options} may be zero or more of the following:
3550
3551@table @code
3552
dd7c013d
CR
3553@item --checkers
3554@itemx -c
3555Only enable the checkers specified in a comma-separated list using the
3556names returned by @code{--list-checkers}.
3557
b4f5e0e8
CR
3558@item --list-checkers
3559@itemx -l
3560List and describe all the available checkers that will be run on packages
3561and exit.
3562
3563@end table
37166310 3564
372c4bbc
DT
3565@node Invoking guix environment
3566@section Invoking @command{guix environment}
3567
f5fd4fd2 3568@cindex reproducible build environments
372c4bbc
DT
3569The purpose of @command{guix environment} is to assist hackers in
3570creating reproducible development environments without polluting their
3571package profile. The @command{guix environment} tool takes one or more
3572packages, builds all of the necessary inputs, and creates a shell
3573environment to use them.
3574
3575The general syntax is:
3576
3577@example
3578guix environment @var{options} @var{package}@dots{}
3579@end example
3580
3581The following examples spawns a new shell that is capable of building
3582the GNU Guile source code:
3583
3584@example
3585guix environment guile
3586@end example
3587
3588If the specified packages are not built yet, @command{guix environment}
3589automatically builds them. The new shell's environment is an augmented
3590version of the environment that @command{guix environment} was run in.
3591It contains the necessary search paths for building the given package
3592added to the existing environment variables. To create a ``pure''
3593environment in which the original environment variables have been unset,
3594use the @code{--pure} option.
3595
3596Additionally, more than one package may be specified, in which case the
3597union of the inputs for the given packages are used. For example, the
3598command below spawns a shell where all of the dependencies of both Guile
3599and Emacs are available:
3600
3601@example
3602guix environment guile emacs
3603@end example
3604
3605Sometimes an interactive shell session is not desired. The
3606@code{--exec} option can be used to specify the command to run instead.
3607
3608@example
3609guix environment guile --exec=make
3610@end example
3611
3612The following options are available:
3613
3614@table @code
3615@item --expression=@var{expr}
3616@itemx -e @var{expr}
3617Create an environment for the package that @var{expr} evaluates to.
3618
3619@item --load=@var{file}
3620@itemx -l @var{file}
3621Create an environment for the package that the code within @var{file}
3622evaluates to.
3623
3624@item --exec=@var{command}
3625@item -E @var{command}
3626Execute @var{command} in the new environment.
3627
3628@item --pure
3629Unset existing environment variables when building the new environment.
3630This has the effect of creating an environment in which search paths
3631only contain package inputs.
3632
3633@item --search-paths
3634Display the environment variable definitions that make up the
3635environment.
3636@end table
3637
3638It also supports all of the common build options that @command{guix
3639build} supports (@pxref{Invoking guix build, common build options}).
3640
aff8ce7c
DT
3641@node Invoking guix publish
3642@section Invoking @command{guix publish}
3643
3644The purpose of @command{guix publish} is to enable users to easily share
3645their store with others. When @command{guix publish} runs, it spawns an
3646HTTP server which allows anyone with network access to obtain
3647substitutes from it. This means that any machine running Guix can also
3648act as if it were a build farm, since the HTTP interface is
3649Hydra-compatible.
3650
3651For security, each substitute is signed, allowing recipients to check
3652their authenticity and integrity (@pxref{Substitutes}). Because
3653@command{guix publish} uses the system's signing key, which is only
3654readable by the system administrator, it must run as root.
3655
3656The general syntax is:
3657
3658@example
3659guix publish @var{options}@dots{}
3660@end example
3661
3662Running @command{guix publish} without any additional arguments will
3663spawn an HTTP server on port 8080:
3664
3665@example
3666guix publish
3667@end example
3668
3669Once a publishing server has been authorized (@pxref{Invoking guix
3670archive}), the daemon may download substitutes from it:
3671
3672@example
3673guix-daemon --substitute-urls=http://example.org:8080
3674@end example
3675
3676The following options are available:
3677
3678@table @code
3679@item --port=@var{port}
3680@itemx -p @var{port}
3681Listen for HTTP requests on @var{port}.
3682
3683@item --repl[=@var{port}]
3684@itemx -r [@var{port}]
3685Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile
3686Reference Manual}) on @var{port} (37146 by default).
3687@end table
3688
a1ba8475
LC
3689@c *********************************************************************
3690@node GNU Distribution
3691@chapter GNU Distribution
3692
3ca2731c
LC
3693@cindex Guix System Distribution
3694@cindex GSD
3695Guix comes with a distribution of the GNU system consisting entirely of
3696free software@footnote{The term ``free'' here refers to the
a1ba8475 3697@url{http://www.gnu.org/philosophy/free-sw.html,freedom provided to
3ca2731c 3698users of that software}.}. The
35ed9306
LC
3699distribution can be installed on its own (@pxref{System Installation}),
3700but it is also possible to install Guix as a package manager on top of
3701an installed GNU/Linux system (@pxref{Installation}). To distinguish
3ca2731c
LC
3702between the two, we refer to the standalone distribution as the Guix
3703System Distribution, or GNU@tie{}GSD.
35ed9306
LC
3704
3705The distribution provides core GNU packages such as GNU libc, GCC, and
3706Binutils, as well as many GNU and non-GNU applications. The complete
3707list of available packages can be browsed
d03bb653
LC
3708@url{http://www.gnu.org/software/guix/package-list.html,on-line} or by
3709running @command{guix package} (@pxref{Invoking guix package}):
a1ba8475
LC
3710
3711@example
e49951eb 3712guix package --list-available
a1ba8475
LC
3713@end example
3714
35ed9306 3715Our goal has been to provide a practical 100% free software distribution of
401c53c4
LC
3716Linux-based and other variants of GNU, with a focus on the promotion and
3717tight integration of GNU components, and an emphasis on programs and
3718tools that help users exert that freedom.
3719
3ca2731c 3720Packages are currently available on the following platforms:
c320011d
LC
3721
3722@table @code
3723
3724@item x86_64-linux
3725Intel/AMD @code{x86_64} architecture, Linux-Libre kernel;
3726
3727@item i686-linux
3728Intel 32-bit architecture (IA32), Linux-Libre kernel;
3729
aa1e1947
MW
3730@item armhf-linux
3731ARMv7-A architecture with hard float, Thumb-2 and VFP3D16 coprocessor,
3732using the EABI hard-float ABI, and Linux-Libre kernel.
3733
c320011d
LC
3734@item mips64el-linux
3735little-endian 64-bit MIPS processors, specifically the Loongson series,
3736n32 application binary interface (ABI), and Linux-Libre kernel.
3737
3738@end table
3739
3ca2731c
LC
3740GSD itself is currently only available on @code{i686} and @code{x86_64}.
3741
c320011d
LC
3742@noindent
3743For information on porting to other architectures or kernels,
3744@xref{Porting}.
3745
401c53c4 3746@menu
5af6de3e 3747* System Installation:: Installing the whole operating system.
35ed9306 3748* System Configuration:: Configuring the operating system.
91ef73d4 3749* Installing Debugging Files:: Feeding the debugger.
05962f29 3750* Security Updates:: Deploying security fixes quickly.
401c53c4 3751* Package Modules:: Packages from the programmer's viewpoint.
da7cabd4 3752* Packaging Guidelines:: Growing the distribution.
401c53c4 3753* Bootstrapping:: GNU/Linux built from scratch.
8b315a6d 3754* Porting:: Targeting another platform or kernel.
401c53c4
LC
3755@end menu
3756
3757Building this distribution is a cooperative effort, and you are invited
081145cf 3758to join! @xref{Contributing}, for information about how you can help.
401c53c4 3759
5af6de3e
LC
3760@node System Installation
3761@section System Installation
3762
3ca2731c
LC
3763@cindex Guix System Distribution
3764This section explains how to install the Guix System Distribution
3765on a machine. The Guix package manager can
35ed9306
LC
3766also be installed on top of a running GNU/Linux system,
3767@pxref{Installation}.
5af6de3e
LC
3768
3769@ifinfo
3770@c This paragraph is for people reading this from tty2 of the
3771@c installation image.
3772You're reading this documentation with an Info reader. For details on
3773how to use it, hit the @key{RET} key (``return'' or ``enter'') on the
6621cdb6 3774link that follows: @pxref{Help,,, info, Info: An Introduction}. Hit
5af6de3e
LC
3775@kbd{l} afterwards to come back here.
3776@end ifinfo
3777
8aaaae38
LC
3778@subsection Limitations
3779
3ca2731c
LC
3780As of version @value{VERSION}, the Guix System Distribution (GSD) is
3781not production-ready. It may contain bugs and lack important
8aaaae38
LC
3782features. Thus, if you are looking for a stable production system that
3783respects your freedom as a computer user, a good solution at this point
3784is to consider @url{http://www.gnu.org/distros/free-distros.html, one of
3785more established GNU/Linux distributions}. We hope you can soon switch
3ca2731c 3786to the GSD without fear, of course. In the meantime, you can
8aaaae38
LC
3787also keep using your distribution and try out the package manager on top
3788of it (@pxref{Installation}).
3789
3790Before you proceed with the installation, be aware of the following
3791noteworthy limitations applicable to version @value{VERSION}:
3792
3793@itemize
3794@item
3795The installation process does not include a graphical user interface and
3796requires familiarity with GNU/Linux (see the following subsections to
3797get a feel of what that means.)
3798
3799@item
b1e95eca
LC
3800The system does not yet provide GNOME and KDE; it provides Xfce, though,
3801if graphical desktop environments are your thing.
8aaaae38
LC
3802
3803@item
dbcb0ab1 3804Support for the Logical Volume Manager (LVM) is missing.
8aaaae38
LC
3805
3806@item
3807Few system services are currently supported out-of-the-box
3808(@pxref{Services}).
3809
3810@item
b1e95eca 3811On the order of 1,200 packages are available, which means that you may
8aaaae38
LC
3812occasionally find that a useful package is missing.
3813@end itemize
3814
3815You've been warned. But more than a disclaimer, this is an invitation
3816to report issues (and success stories!), and join us in improving it.
3817@xref{Contributing}, for more info.
5af6de3e
LC
3818
3819@subsection USB Stick Installation
3820
3821An installation image for USB sticks can be downloaded from
ab3872de 3822@code{ftp://alpha.gnu.org/gnu/guix/gsd-usb-install-@value{VERSION}.@var{system}.xz},
5af6de3e
LC
3823where @var{system} is one of:
3824
3825@table @code
3826@item x86_64-linux
3827for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;
3828
3829@item i686-linux
3830for a 32-bit GNU/Linux system on Intel-compatible CPUs.
3831@end table
3832
3833This image contains a single partition with the tools necessary for an
3834installation. It is meant to be copied @emph{as is} to a large-enough
3835USB stick.
3836
3837To copy the image to a USB stick, follow these steps:
3838
3839@enumerate
3840@item
3841Decompress the image using the @command{xz} command:
3842
3843@example
3a5d914b 3844xz -d gsd-usb-install-@value{VERSION}.@var{system}.xz
5af6de3e
LC
3845@end example
3846
3847@item
3848Insert a USB stick of 1@tie{}GiB or more in your machine, and determine
3849its device name. Assuming that USB stick is known as @file{/dev/sdX},
3850copy the image with:
3851
3852@example
3a5d914b 3853dd if=gsd-usb-install-@value{VERSION}.x86_64 of=/dev/sdX
5af6de3e
LC
3854@end example
3855
3856Access to @file{/dev/sdX} usually requires root privileges.
3857@end enumerate
3858
3859Once this is done, you should be able to reboot the system and boot from
3860the USB stick. The latter usually requires you to get in the BIOS' boot
3861menu, where you can choose to boot from the USB stick.
3862
3863@subsection Preparing for Installation
3864
3865Once you have successfully booted the image on the USB stick, you should
3866end up with a root prompt. Several console TTYs are configured and can
3867be used to run commands as root. TTY2 shows this documentation,
3868browsable using the Info reader commands (@pxref{Help,,, info, Info: An
3869Introduction}).
3870
3871To install the system, you would:
3872
3873@enumerate
3874
3875@item
95c559c1 3876Configure the network, by running @command{dhclient eno1} (to get an
5af6de3e 3877automatically assigned IP address from the wired network interface
95c559c1
LC
3878controller@footnote{
3879@c http://cgit.freedesktop.org/systemd/systemd/tree/src/udev/udev-builtin-net_id.c#n20
3880The name @code{eno1} is for the first on-board Ethernet controller. The
3881interface name for an Ethernet controller that is in the first slot of
3882the first PCI bus, for instance, would be @code{enp1s0}. Use
3883@command{ifconfig -a} to list all the available network interfaces.}),
3884or using the @command{ifconfig} command.
5af6de3e
LC
3885
3886The system automatically loads drivers for your network interface
3887controllers.
3888
3889Setting up network access is almost always a requirement because the
3890image does not contain all the software and tools that may be needed.
3891
3892@item
3893Unless this has already been done, you must partition and format the
3894target partitions.
3895
7ab44369
LC
3896Preferably, assign partitions a label so that you can easily and
3897reliably refer to them in @code{file-system} declarations (@pxref{File
3898Systems}). This is typically done using the @code{-L} option of
3899@command{mkfs.ext4} and related commands.
3900
5af6de3e 3901The installation image includes Parted (@pxref{Overview,,, parted, GNU
b419c7f5
LC
3902Parted User Manual}), @command{fdisk}, Cryptsetup/LUKS for disk
3903encryption, and e2fsprogs, the suite of tools to manipulate
3904ext2/ext3/ext4 file systems.
5af6de3e 3905
83a17b62
LC
3906@item
3907Once that is done, mount the target root partition under @file{/mnt}.
3908
3909@item
3910Lastly, run @code{deco start cow-store /mnt}.
3911
3912This will make @file{/gnu/store} copy-on-write, such that packages added
3913to it during the installation phase will be written to the target disk
3914rather than kept in memory.
3915
5af6de3e
LC
3916@end enumerate
3917
5af6de3e
LC
3918
3919@subsection Proceeding with the Installation
3920
3921With the target partitions ready, you now have to edit a file and
3922provide the declaration of the operating system to be installed. To
3923that end, the installation system comes with two text editors: GNU nano
3924(@pxref{Top,,, nano, GNU nano Manual}), and GNU Zile, an Emacs clone.
3925It is better to store that file on the target root file system, say, as
3926@file{/mnt/etc/config.scm}.
3927
3928A minimal operating system configuration, with just the bare minimum and
1dac8566
LC
3929only a root account would look like this (on the installation system,
3930this example is available as @file{/etc/configuration-template.scm}):
5af6de3e
LC
3931
3932@example
931c132a 3933@include os-config.texi
5af6de3e
LC
3934@end example
3935
3936@noindent
3937For more information on @code{operating-system} declarations,
6621cdb6 3938@pxref{Using the Configuration System}.
5af6de3e
LC
3939
3940Once that is done, the new system must be initialized (remember that the
3941target root file system is mounted under @file{/mnt}):
3942
3943@example
3944guix system init /mnt/etc/config.scm /mnt
3945@end example
3946
3947@noindent
3948This will copy all the necessary files, and install GRUB on
3949@file{/dev/sdX}, unless you pass the @option{--no-grub} option. For
6621cdb6 3950more information, @pxref{Invoking guix system}. This command may trigger
5af6de3e
LC
3951downloads or builds of missing packages, which can take some time.
3952
3953Once that command has completed---and hopefully succeeded!---you can
ad14d9e7 3954run @command{reboot} and boot into the new system. Cross fingers, and
5af6de3e
LC
3955join us on @code{#guix} on the Freenode IRC network or on
3956@file{guix-devel@@gnu.org} to share your experience---good or not so
3957good.
3958
3959@subsection Building the Installation Image
3960
3961The installation image described above was built using the @command{guix
3962system} command, specifically:
3963
3964@example
8a225c66 3965guix system disk-image --image-size=850MiB gnu/system/install.scm
5af6de3e
LC
3966@end example
3967
3968@xref{Invoking guix system}, for more information. See
3969@file{gnu/system/install.scm} in the source tree for more information
3970about the installation image.
3971
cf4a9129
LC
3972@node System Configuration
3973@section System Configuration
b208a005 3974
cf4a9129 3975@cindex system configuration
3ca2731c 3976The Guix System Distribution supports a consistent whole-system configuration
cf4a9129
LC
3977mechanism. By that we mean that all aspects of the global system
3978configuration---such as the available system services, timezone and
3979locale settings, user accounts---are declared in a single place. Such
3980a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected.
91ef73d4 3981
cf4a9129
LC
3982One of the advantages of putting all the system configuration under the
3983control of Guix is that it supports transactional system upgrades, and
3984makes it possible to roll-back to a previous system instantiation,
3985should something go wrong with the new one (@pxref{Features}). Another
3986one is that it makes it easy to replicate the exact same configuration
3987across different machines, or at different points in time, without
3988having to resort to additional administration tools layered on top of
3989the system's own tools.
3990@c Yes, we're talking of Puppet, Chef, & co. here. ↑
91ef73d4 3991
cf4a9129
LC
3992This section describes this mechanism. First we focus on the system
3993administrator's viewpoint---explaining how the system is configured and
3994instantiated. Then we show how this mechanism can be extended, for
3995instance to support new system services.
91ef73d4 3996
cf4a9129
LC
3997@menu
3998* Using the Configuration System:: Customizing your GNU system.
7313a52e 3999* operating-system Reference:: Detail of operating-system declarations.
cf4a9129 4000* File Systems:: Configuring file system mounts.
510f9d86 4001* Mapped Devices:: Block device extra processing.
cf4a9129 4002* User Accounts:: Specifying user accounts.
598e19dc 4003* Locales:: Language and cultural convention settings.
cf4a9129 4004* Services:: Specifying system services.
0ae8c15a 4005* Setuid Programs:: Programs running with root privileges.
996ed739 4006* Name Service Switch:: Configuring libc's name service switch.
fd1b1fa2 4007* Initial RAM Disk:: Linux-Libre bootstrapping.
88faf933 4008* GRUB Configuration:: Configuring the boot loader.
cf4a9129
LC
4009* Invoking guix system:: Instantiating a system configuration.
4010* Defining Services:: Adding new service definitions.
4011@end menu
91ef73d4 4012
cf4a9129
LC
4013@node Using the Configuration System
4014@subsection Using the Configuration System
64d76fa6 4015
cf4a9129
LC
4016The operating system is configured by providing an
4017@code{operating-system} declaration in a file that can then be passed to
4018the @command{guix system} command (@pxref{Invoking guix system}). A
4019simple setup, with the default system services, the default Linux-Libre
4020kernel, initial RAM disk, and boot loader looks like this:
91ef73d4 4021
cf4a9129
LC
4022@findex operating-system
4023@lisp
4024(use-modules (gnu) ; for 'user-account', '%base-services', etc.
4025 (gnu packages emacs) ; for 'emacs'
4026 (gnu services ssh)) ; for 'lsh-service'
91ef73d4 4027
cf4a9129
LC
4028(operating-system
4029 (host-name "komputilo")
4030 (timezone "Europe/Paris")
598e19dc 4031 (locale "fr_FR.utf8")
cf4a9129
LC
4032 (bootloader (grub-configuration
4033 (device "/dev/sda")))
a69576ea 4034 (file-systems (cons (file-system
cf4a9129
LC
4035 (device "/dev/sda1") ; or partition label
4036 (mount-point "/")
a69576ea
LC
4037 (type "ext3"))
4038 %base-file-systems))
cf4a9129
LC
4039 (users (list (user-account
4040 (name "alice")
bc73aa43 4041 (group "users")
cf4a9129
LC
4042 (comment "Bob's sister")
4043 (home-directory "/home/alice"))))
4044 (packages (cons emacs %base-packages))
21cc905a 4045 (services (cons (lsh-service #:port 2222 #:root-login? #t)
cf4a9129
LC
4046 %base-services)))
4047@end lisp
401c53c4 4048
cf4a9129
LC
4049This example should be self-describing. Some of the fields defined
4050above, such as @code{host-name} and @code{bootloader}, are mandatory.
4051Others, such as @code{packages} and @code{services}, can be omitted, in
4052which case they get a default value.
e7f34eb0 4053
cf4a9129
LC
4054@vindex %base-packages
4055The @code{packages} field lists
4056packages that will be globally visible on the system, for all user
4057accounts---i.e., in every user's @code{PATH} environment variable---in
4058addition to the per-user profiles (@pxref{Invoking guix package}). The
4059@var{%base-packages} variable provides all the tools one would expect
4060for basic user and administrator tasks---including the GNU Core
4061Utilities, the GNU Networking Utilities, the GNU Zile lightweight text
4062editor, @command{find}, @command{grep}, etc. The example above adds
4063Emacs to those, taken from the @code{(gnu packages emacs)} module
4064(@pxref{Package Modules}).
e7f34eb0 4065
cf4a9129
LC
4066@vindex %base-services
4067The @code{services} field lists @dfn{system services} to be made
4068available when the system starts (@pxref{Services}).
4069The @code{operating-system} declaration above specifies that, in
4070addition to the basic services, we want the @command{lshd} secure shell
4071daemon listening on port 2222, and allowing remote @code{root} logins
4072(@pxref{Invoking lshd,,, lsh, GNU lsh Manual}). Under the hood,
4073@code{lsh-service} arranges so that @code{lshd} is started with the
4074right command-line options, possibly with supporting configuration files
7313a52e
LC
4075generated as needed (@pxref{Defining Services}). @xref{operating-system
4076Reference}, for details about the available @code{operating-system}
4077fields.
a1ba8475 4078
cf4a9129
LC
4079Assuming the above snippet is stored in the @file{my-system-config.scm}
4080file, the @command{guix system reconfigure my-system-config.scm} command
4081instantiates that configuration, and makes it the default GRUB boot
4082entry (@pxref{Invoking guix system}). The normal way to change the
4083system's configuration is by updating this file and re-running the
4084@command{guix system} command.
b81e1947 4085
cf4a9129
LC
4086At the Scheme level, the bulk of an @code{operating-system} declaration
4087is instantiated with the following monadic procedure (@pxref{The Store
4088Monad}):
b81e1947 4089
cf4a9129
LC
4090@deffn {Monadic Procedure} operating-system-derivation os
4091Return a derivation that builds @var{os}, an @code{operating-system}
4092object (@pxref{Derivations}).
b81e1947 4093
cf4a9129
LC
4094The output of the derivation is a single directory that refers to all
4095the packages, configuration files, and other supporting files needed to
4096instantiate @var{os}.
4097@end deffn
b81e1947 4098
7313a52e
LC
4099@node operating-system Reference
4100@subsection @code{operating-system} Reference
4101
4102This section summarizes all the options available in
4103@code{operating-system} declarations (@pxref{Using the Configuration
4104System}).
4105
4106@deftp {Data Type} operating-system
4107This is the data type representing an operating system configuration.
4108By that, we mean all the global system configuration, not per-user
4109configuration (@pxref{Using the Configuration System}).
4110
4111@table @asis
4112@item @code{kernel} (default: @var{linux-libre})
4113The package object of the operating system to use@footnote{Currently
4114only the Linux-libre kernel is supported. In the future, it will be
4115possible to use the GNU@tie{}Hurd.}.
4116
4117@item @code{bootloader}
88faf933 4118The system bootloader configuration object. @xref{GRUB Configuration}.
7313a52e
LC
4119
4120@item @code{initrd} (default: @code{base-initrd})
4121A two-argument monadic procedure that returns an initial RAM disk for
4122the Linux kernel. @xref{Initial RAM Disk}.
4123
f34c56be
LC
4124@item @code{firmware} (default: @var{%base-firmware})
4125@cindex firmware
4126List of firmware packages loadable by the operating system kernel.
4127
4128The default includes firmware needed for Atheros-based WiFi devices
4129(Linux-libre module @code{ath9k}.)
4130
7313a52e
LC
4131@item @code{host-name}
4132The host name.
4133
4134@item @code{hosts-file}
4135@cindex hosts file
4136A zero-argument monadic procedure that returns a text file for use as
4137@file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library
4138Reference Manual}). The default is to produce a file with entries for
4139@code{localhost} and @var{host-name}.
4140
4141@item @code{mapped-devices} (default: @code{'()})
4142A list of mapped devices. @xref{Mapped Devices}.
4143
4144@item @code{file-systems}
4145A list of file systems. @xref{File Systems}.
4146
4147@item @code{swap-devices} (default: @code{'()})
4148@cindex swap devices
4149A list of strings identifying devices to be used for ``swap space''
4150(@pxref{Memory Concepts,,, libc, The GNU C Library Reference Manual}).
4151For example, @code{'("/dev/sda3")}.
4152
4153@item @code{users} (default: @code{'()})
4154@itemx @code{groups} (default: @var{%base-groups})
4155List of user accounts and groups. @xref{User Accounts}.
4156
4157@item @code{skeletons} (default: @code{(default-skeletons)})
4158A monadic list of pairs of target file name and files. These are the
4159files that will be used as skeletons as new accounts are created.
4160
4161For instance, a valid value may look like this:
4162
4163@example
4164(mlet %store-monad ((bashrc (text-file "bashrc" "\
4165 export PATH=$HOME/.guix-profile/bin")))
4166 (return `((".bashrc" ,bashrc))))
4167@end example
4168
4169@item @code{issue} (default: @var{%default-issue})
4170A string denoting the contents of the @file{/etc/issue} file, which is
4171what displayed when users log in on a text console.
4172
4173@item @code{packages} (default: @var{%base-packages})
4174The set of packages installed in the global profile, which is accessible
4175at @file{/run/current-system/profile}.
4176
4177The default set includes core utilities, but it is good practice to
4178install non-core utilities in user profiles (@pxref{Invoking guix
4179package}).
4180
4181@item @code{timezone}
4182A timezone identifying string---e.g., @code{"Europe/Paris"}.
4183
598e19dc
LC
4184@item @code{locale} (default: @code{"en_US.utf8"})
4185The name of the default locale (@pxref{Locale Names,,, libc, The GNU C
4186Library Reference Manual}). @xref{Locales}, for more information.
4187
4188@item @code{locale-definitions} (default: @var{%default-locale-definitions})
4189The list of locale definitions to be compiled and that may be used at
4190run time. @xref{Locales}.
7313a52e 4191
996ed739
LC
4192@item @code{name-service-switch} (default: @var{%default-nss})
4193Configuration of libc's name service switch (NSS)---a
4194@code{<name-service-switch>} object. @xref{Name Service Switch}, for
4195details.
4196
7313a52e
LC
4197@item @code{services} (default: @var{%base-services})
4198A list of monadic values denoting system services. @xref{Services}.
4199
4200@item @code{pam-services} (default: @code{(base-pam-services)})
4201@cindex PAM
4202@cindex pluggable authentication modules
4203Linux @dfn{pluggable authentication module} (PAM) services.
4204@c FIXME: Add xref to PAM services section.
4205
4206@item @code{setuid-programs} (default: @var{%setuid-programs})
4207List of string-valued G-expressions denoting setuid programs.
4208@xref{Setuid Programs}.
4209
4210@item @code{sudoers} (default: @var{%sudoers-specification})
4211@cindex sudoers
4212The contents of the @file{/etc/sudoers} file as a string.
4213
4214This file specifies which users can use the @command{sudo} command, what
4215they are allowed to do, and what privileges they may gain. The default
4216is that only @code{root} and members of the @code{wheel} group may use
4217@code{sudo}.
4218
4219@end table
4220@end deftp
4221
cf4a9129
LC
4222@node File Systems
4223@subsection File Systems
b81e1947 4224
cf4a9129
LC
4225The list of file systems to be mounted is specified in the
4226@code{file-systems} field of the operating system's declaration
4227(@pxref{Using the Configuration System}). Each file system is declared
4228using the @code{file-system} form, like this:
b81e1947
LC
4229
4230@example
cf4a9129
LC
4231(file-system
4232 (mount-point "/home")
4233 (device "/dev/sda3")
4234 (type "ext4"))
b81e1947
LC
4235@end example
4236
cf4a9129
LC
4237As usual, some of the fields are mandatory---those shown in the example
4238above---while others can be omitted. These are described below.
b81e1947 4239
cf4a9129
LC
4240@deftp {Data Type} file-system
4241Objects of this type represent file systems to be mounted. They
4242contain the following members:
5ff3c4b8 4243
cf4a9129
LC
4244@table @asis
4245@item @code{type}
4246This is a string specifying the type of the file system---e.g.,
4247@code{"ext4"}.
5ff3c4b8 4248
cf4a9129
LC
4249@item @code{mount-point}
4250This designates the place where the file system is to be mounted.
b81e1947 4251
cf4a9129
LC
4252@item @code{device}
4253This names the ``source'' of the file system. By default it is the name
4254of a node under @file{/dev}, but its meaning depends on the @code{title}
4255field described below.
401c53c4 4256
cf4a9129
LC
4257@item @code{title} (default: @code{'device})
4258This is a symbol that specifies how the @code{device} field is to be
4259interpreted.
401c53c4 4260
cf4a9129
LC
4261When it is the symbol @code{device}, then the @code{device} field is
4262interpreted as a file name; when it is @code{label}, then @code{device}
4263is interpreted as a partition label name; when it is @code{uuid},
4264@code{device} is interpreted as a partition unique identifier (UUID).
da7cabd4 4265
cf4a9129
LC
4266The @code{label} and @code{uuid} options offer a way to refer to disk
4267partitions without having to hard-code their actual device name.
da7cabd4 4268
5f86a66e
LC
4269However, when a file system's source is a mapped device (@pxref{Mapped
4270Devices}), its @code{device} field @emph{must} refer to the mapped
4271device name---e.g., @file{/dev/mapper/root-partition}---and consequently
4272@code{title} must be set to @code{'device}. This is required so that
4273the system knows that mounting the file system depends on having the
4274corresponding device mapping established.
4275
cf4a9129
LC
4276@item @code{flags} (default: @code{'()})
4277This is a list of symbols denoting mount flags. Recognized flags
2c071ce9
LC
4278include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow
4279access to special files), @code{no-suid} (ignore setuid and setgid
4280bits), and @code{no-exec} (disallow program execution.)
da7cabd4 4281
cf4a9129
LC
4282@item @code{options} (default: @code{#f})
4283This is either @code{#f}, or a string denoting mount options.
da7cabd4 4284
cf4a9129
LC
4285@item @code{needed-for-boot?} (default: @code{#f})
4286This Boolean value indicates whether the file system is needed when
4287booting. If that is true, then the file system is mounted when the
4288initial RAM disk (initrd) is loaded. This is always the case, for
4289instance, for the root file system.
da7cabd4 4290
cf4a9129
LC
4291@item @code{check?} (default: @code{#t})
4292This Boolean indicates whether the file system needs to be checked for
4293errors before being mounted.
f9cc8971 4294
4e469051
LC
4295@item @code{create-mount-point?} (default: @code{#f})
4296When true, the mount point is created if it does not exist yet.
4297
cf4a9129
LC
4298@end table
4299@end deftp
da7cabd4 4300
a69576ea
LC
4301The @code{(gnu system file-systems)} exports the following useful
4302variables.
4303
4304@defvr {Scheme Variable} %base-file-systems
4305These are essential file systems that are required on normal systems,
3392ce5d
LC
4306such as @var{%devtmpfs-file-system} and @var{%immutable-store} (see
4307below.) Operating system declarations should always contain at least
4308these.
a69576ea
LC
4309@end defvr
4310
4311@defvr {Scheme Variable} %devtmpfs-file-system
4312The @code{devtmpfs} file system to be mounted on @file{/dev}. This is a
4313requirement for udev (@pxref{Base Services, @code{udev-service}}).
4314@end defvr
4315
7f239fd3
LC
4316@defvr {Scheme Variable} %pseudo-terminal-file-system
4317This is the file system to be mounted as @file{/dev/pts}. It supports
4318@dfn{pseudo-terminals} created @i{via} @code{openpty} and similar
4319functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference
4320Manual}). Pseudo-terminals are used by terminal emulators such as
4321@command{xterm}.
4322@end defvr
4323
db17ae5c
LC
4324@defvr {Scheme Variable} %shared-memory-file-system
4325This file system is mounted as @file{/dev/shm} and is used to support
4326memory sharing across processes (@pxref{Memory-mapped I/O,
4327@code{shm_open},, libc, The GNU C Library Reference Manual}).
4328@end defvr
4329
3392ce5d
LC
4330@defvr {Scheme Variable} %immutable-store
4331This file system performs a read-only ``bind mount'' of
4332@file{/gnu/store}, making it read-only for all the users including
4333@code{root}. This prevents against accidental modification by software
4334running as @code{root} or by system administrators.
4335
4336The daemon itself is still able to write to the store: it remounts it
4337read-write in its own ``name space.''
4338@end defvr
4339
a69576ea
LC
4340@defvr {Scheme Variable} %binary-format-file-system
4341The @code{binfmt_misc} file system, which allows handling of arbitrary
4342executable file types to be delegated to user space. This requires the
4343@code{binfmt.ko} kernel module to be loaded.
4344@end defvr
4345
4346@defvr {Scheme Variable} %fuse-control-file-system
4347The @code{fusectl} file system, which allows unprivileged users to mount
4348and unmount user-space FUSE file systems. This requires the
4349@code{fuse.ko} kernel module to be loaded.
4350@end defvr
4351
510f9d86
LC
4352@node Mapped Devices
4353@subsection Mapped Devices
4354
4355@cindex device mapping
4356@cindex mapped devices
4357The Linux kernel has a notion of @dfn{device mapping}: a block device,
4358such as a hard disk partition, can be @dfn{mapped} into another device,
4359with additional processing over the data that flows through
4360it@footnote{Note that the GNU@tie{}Hurd makes no difference between the
4361concept of a ``mapped device'' and that of a file system: both boil down
4362to @emph{translating} input/output operations made on a file to
4363operations on its backing store. Thus, the Hurd implements mapped
4364devices, like file systems, using the generic @dfn{translator} mechanism
4365(@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A
4366typical example is encryption device mapping: all writes to the mapped
4367device are encrypted, and all reads are deciphered, transparently.
4368
4369Mapped devices are declared using the @code{mapped-device} form:
4370
4371@example
4372(mapped-device
4373 (source "/dev/sda3")
4374 (target "home")
4375 (type luks-device-mapping))
4376@end example
4377
4378@noindent
4379@cindex disk encryption
4380@cindex LUKS
4381This example specifies a mapping from @file{/dev/sda3} to
4382@file{/dev/mapper/home} using LUKS---the
4383@url{http://code.google.com/p/cryptsetup,Linux Unified Key Setup}, a
4384standard mechanism for disk encryption. The @file{/dev/mapper/home}
4385device can then be used as the @code{device} of a @code{file-system}
4386declaration (@pxref{File Systems}). The @code{mapped-device} form is
4387detailed below.
4388
4389@deftp {Data Type} mapped-device
4390Objects of this type represent device mappings that will be made when
4391the system boots up.
4392
9cb426b8
LC
4393@table @code
4394@item source
510f9d86
LC
4395This string specifies the name of the block device to be mapped, such as
4396@code{"/dev/sda3"}.
4397
9cb426b8 4398@item target
510f9d86
LC
4399This string specifies the name of the mapping to be established. For
4400example, specifying @code{"my-partition"} will lead to the creation of
4401the @code{"/dev/mapper/my-partition"} device.
4402
9cb426b8 4403@item type
510f9d86
LC
4404This must be a @code{mapped-device-kind} object, which specifies how
4405@var{source} is mapped to @var{target}.
4406@end table
4407@end deftp
4408
4409@defvr {Scheme Variable} luks-device-mapping
4410This defines LUKS block device encryption using the @command{cryptsetup}
4411command, from the same-named package. This relies on the
4412@code{dm-crypt} Linux kernel module.
4413@end defvr
4414
cf4a9129
LC
4415@node User Accounts
4416@subsection User Accounts
ee85f3db 4417
9bea87a5
LC
4418User accounts and groups are entirely managed through the
4419@code{operating-system} declaration. They are specified with the
4420@code{user-account} and @code{user-group} forms:
ee85f3db 4421
cf4a9129
LC
4422@example
4423(user-account
4424 (name "alice")
4425 (group "users")
24e752c0
LC
4426 (supplementary-groups '("wheel" ;allow use of sudo, etc.
4427 "audio" ;sound card
4428 "video" ;video devices such as webcams
4429 "cdrom")) ;the good ol' CD-ROM
cf4a9129
LC
4430 (comment "Bob's sister")
4431 (home-directory "/home/alice"))
4432@end example
25083588 4433
9bea87a5
LC
4434When booting or upon completion of @command{guix system reconfigure},
4435the system ensures that only the user accounts and groups specified in
4436the @code{operating-system} declaration exist, and with the specified
4437properties. Thus, account or group creations or modifications made by
4438directly invoking commands such as @command{useradd} are lost upon
4439reconfiguration or reboot. This ensures that the system remains exactly
4440as declared.
4441
cf4a9129
LC
4442@deftp {Data Type} user-account
4443Objects of this type represent user accounts. The following members may
4444be specified:
ee85f3db 4445
cf4a9129
LC
4446@table @asis
4447@item @code{name}
4448The name of the user account.
ee85f3db 4449
cf4a9129
LC
4450@item @code{group}
4451This is the name (a string) or identifier (a number) of the user group
4452this account belongs to.
ee85f3db 4453
cf4a9129
LC
4454@item @code{supplementary-groups} (default: @code{'()})
4455Optionally, this can be defined as a list of group names that this
4456account belongs to.
ee85f3db 4457
cf4a9129
LC
4458@item @code{uid} (default: @code{#f})
4459This is the user ID for this account (a number), or @code{#f}. In the
4460latter case, a number is automatically chosen by the system when the
4461account is created.
ee85f3db 4462
cf4a9129
LC
4463@item @code{comment} (default: @code{""})
4464A comment about the account, such as the account's owner full name.
c8c871d1 4465
cf4a9129
LC
4466@item @code{home-directory}
4467This is the name of the home directory for the account.
ee85f3db 4468
cf4a9129
LC
4469@item @code{shell} (default: Bash)
4470This is a G-expression denoting the file name of a program to be used as
4471the shell (@pxref{G-Expressions}).
ee85f3db 4472
cf4a9129
LC
4473@item @code{system?} (default: @code{#f})
4474This Boolean value indicates whether the account is a ``system''
4475account. System accounts are sometimes treated specially; for instance,
4476graphical login managers do not list them.
ee85f3db 4477
cf4a9129 4478@item @code{password} (default: @code{#f})
eb59595c
LC
4479You would normally leave this field to @code{#f}, initialize user
4480passwords as @code{root} with the @command{passwd} command, and then let
9bea87a5
LC
4481users change it with @command{passwd}. Passwords set with
4482@command{passwd} are of course preserved across reboot and
4483reconfiguration.
eb59595c
LC
4484
4485If you @emph{do} want to have a preset password for an account, then
4486this field must contain the encrypted password, as a string.
5d1f1177
LC
4487@xref{crypt,,, libc, The GNU C Library Reference Manual}, for more information
4488on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference
eb59595c 4489Manual}, for information on Guile's @code{crypt} procedure.
c8c871d1 4490
cf4a9129
LC
4491@end table
4492@end deftp
ee85f3db 4493
cf4a9129 4494User group declarations are even simpler:
ee85f3db 4495
cf4a9129
LC
4496@example
4497(user-group (name "students"))
4498@end example
ee85f3db 4499
cf4a9129
LC
4500@deftp {Data Type} user-group
4501This type is for, well, user groups. There are just a few fields:
af8a56b8 4502
cf4a9129
LC
4503@table @asis
4504@item @code{name}
4505The group's name.
ee85f3db 4506
cf4a9129
LC
4507@item @code{id} (default: @code{#f})
4508The group identifier (a number). If @code{#f}, a new number is
4509automatically allocated when the group is created.
ee85f3db 4510
c8fa3426
LC
4511@item @code{system?} (default: @code{#f})
4512This Boolean value indicates whether the group is a ``system'' group.
4513System groups have low numerical IDs.
4514
cf4a9129
LC
4515@item @code{password} (default: @code{#f})
4516What, user groups can have a password? Well, apparently yes. Unless
4517@code{#f}, this field specifies the group's password.
ee85f3db 4518
cf4a9129
LC
4519@end table
4520@end deftp
401c53c4 4521
cf4a9129
LC
4522For convenience, a variable lists all the basic user groups one may
4523expect:
401c53c4 4524
cf4a9129
LC
4525@defvr {Scheme Variable} %base-groups
4526This is the list of basic user groups that users and/or packages expect
4527to be present on the system. This includes groups such as ``root'',
4528``wheel'', and ``users'', as well as groups used to control access to
4529specific devices such as ``audio'', ``disk'', and ``cdrom''.
4530@end defvr
401c53c4 4531
598e19dc
LC
4532@node Locales
4533@subsection Locales
4534
4535@cindex locale
4536A @dfn{locale} defines cultural conventions for a particular language
4537and region of the world (@pxref{Locales,,, libc, The GNU C Library
4538Reference Manual}). Each locale has a name that typically has the form
4539@code{@var{language}_@var{territory}.@var{charset}}---e.g.,
4540@code{fr_LU.utf8} designates the locale for the French language, with
4541cultural conventions from Luxembourg, and using the UTF-8 encoding.
4542
4543@cindex locale definition
4544Usually, you will want to specify the default locale for the machine
4545using the @code{locale} field of the @code{operating-system} declaration
4546(@pxref{operating-system Reference, @code{locale}}).
4547
4548That locale must be among the @dfn{locale definitions} that are known to
4549the system---and these are specified in the @code{locale-definitions}
4550slot of @code{operating-system}. The default value includes locale
4551definition for some widely used locales, but not for all the available
4552locales, in order to save space.
4553
4554If the locale specified in the @code{locale} field is not among the
4555definitions listed in @code{locale-definitions}, @command{guix system}
4556raises an error. In that case, you should add the locale definition to
4557the @code{locale-definitions} field. For instance, to add the North
4558Frisian locale for Germany, the value of that field may be:
4559
4560@example
4561(cons (locale-definition
4562 (name "fy_DE.utf8") (source "fy_DE"))
4563 %default-locale-definitions)
4564@end example
4565
4566Likewise, to save space, one might want @code{locale-definitions} to
4567list only the locales that are actually used, as in:
4568
4569@example
4570(list (locale-definition
4571 (name "ja_JP.eucjp") (source "ja_JP")
4572 (charset "EUC-JP")))
4573@end example
4574
4575The @code{locale-definition} form is provided by the @code{(gnu system
4576locale)} module. Details are given below.
4577
4578@deftp {Data Type} locale-definition
4579This is the data type of a locale definition.
4580
4581@table @asis
4582
4583@item @code{name}
4584The name of the locale. @xref{Locale Names,,, libc, The GNU C Library
4585Reference Manual}, for more information on locale names.
4586
4587@item @code{source}
4588The name of the source for that locale. This is typically the
4589@code{@var{language}_@var{territory}} part of the locale name.
4590
4591@item @code{charset} (default: @code{"UTF-8"})
4592The ``character set'' or ``code set'' for that locale,
4593@uref{http://www.iana.org/assignments/character-sets, as defined by
4594IANA}.
4595
4596@end table
4597@end deftp
4598
4599@defvr {Scheme Variable} %default-locale-definitions
4600An arbitrary list of commonly used locales, used as the default value of
4601the @code{locale-definitions} field of @code{operating-system}
4602declarations.
4603@end defvr
401c53c4 4604
cf4a9129
LC
4605@node Services
4606@subsection Services
401c53c4 4607
cf4a9129
LC
4608@cindex system services
4609An important part of preparing an @code{operating-system} declaration is
4610listing @dfn{system services} and their configuration (@pxref{Using the
4611Configuration System}). System services are typically daemons launched
4612when the system boots, or other actions needed at that time---e.g.,
d8b94dbd
LC
4613configuring network access.
4614
4615Services are managed by GNU@tie{}dmd (@pxref{Introduction,,, dmd, GNU
4616dmd Manual}). On a running system, the @command{deco} command allows
4617you to list the available services, show their status, start and stop
4618them, or do other specific operations (@pxref{Jump Start,,, dmd, GNU dmd
4619Manual}). For example:
4620
4621@example
4622# deco status dmd
4623@end example
4624
4625The above command, run as @code{root}, lists the currently defined
4626services. The @command{deco doc} command shows a synopsis of the given
4627service:
4628
4629@example
4630# deco doc nscd
4631Run libc's name service cache daemon (nscd).
4632@end example
4633
4634The @command{start}, @command{stop}, and @command{restart} sub-commands
4635have the effect you would expect. For instance, the commands below stop
4636the nscd service and restart the Xorg display server:
4637
4638@example
4639# deco stop nscd
4640Service nscd has been stopped.
4641# deco restart xorg-server
4642Service xorg-server has been stopped.
4643Service xorg-server has been started.
4644@end example
401c53c4 4645
cf4a9129 4646The following sections document the available services, starting with
d8b94dbd
LC
4647the core services, that may be used in an @code{operating-system}
4648declaration.
401c53c4 4649
cf4a9129
LC
4650@menu
4651* Base Services:: Essential system services.
4652* Networking Services:: Network setup, SSH daemon, etc.
4653* X Window:: Graphical display.
fe1a39d3 4654* Desktop Services:: D-Bus and desktop services.
105369a4 4655* Database Services:: SQL databases.
aa4ed923 4656* Various Services:: Other services.
cf4a9129 4657@end menu
401c53c4 4658
cf4a9129
LC
4659@node Base Services
4660@subsubsection Base Services
a1ba8475 4661
cf4a9129
LC
4662The @code{(gnu services base)} module provides definitions for the basic
4663services that one expects from the system. The services exported by
4664this module are listed below.
401c53c4 4665
cf4a9129
LC
4666@defvr {Scheme Variable} %base-services
4667This variable contains a list of basic services@footnote{Technically,
4668this is a list of monadic services. @xref{The Store Monad}.} one would
4669expect from the system: a login service (mingetty) on each tty, syslogd,
4670libc's name service cache daemon (nscd), the udev device manager, and
4671more.
401c53c4 4672
cf4a9129
LC
4673This is the default value of the @code{services} field of
4674@code{operating-system} declarations. Usually, when customizing a
4675system, you will want to append services to @var{%base-services}, like
4676this:
401c53c4 4677
cf4a9129 4678@example
fa1e31b8 4679(cons* (avahi-service) (lsh-service) %base-services)
cf4a9129
LC
4680@end example
4681@end defvr
401c53c4 4682
cf4a9129
LC
4683@deffn {Monadic Procedure} host-name-service @var{name}
4684Return a service that sets the host name to @var{name}.
4685@end deffn
401c53c4 4686
cf4a9129
LC
4687@deffn {Monadic Procedure} mingetty-service @var{tty} [#:motd] @
4688 [#:auto-login #f] [#:login-program] [#:login-pause? #f] @
4689 [#:allow-empty-passwords? #f]
4690Return a service to run mingetty on @var{tty}.
401c53c4 4691
cf4a9129
LC
4692When @var{allow-empty-passwords?} is true, allow empty log-in password. When
4693@var{auto-login} is true, it must be a user name under which to log-in
4694automatically. @var{login-pause?} can be set to @code{#t} in conjunction with
4695@var{auto-login}, in which case the user will have to press a key before the
4696login shell is launched.
401c53c4 4697
cf4a9129
LC
4698When true, @var{login-program} is a gexp or a monadic gexp denoting the name
4699of the log-in program (the default is the @code{login} program from the Shadow
4700tool suite.)
401c53c4 4701
cf4a9129
LC
4702@var{motd} is a monadic value containing a text file to use as
4703the ``message of the day''.
4704@end deffn
401c53c4 4705
6454b333
LC
4706@cindex name service cache daemon
4707@cindex nscd
4aee6e60
LC
4708@deffn {Monadic Procedure} nscd-service [@var{config}] [#:glibc glibc] @
4709 [#:name-services '()]
4710Return a service that runs libc's name service cache daemon (nscd) with
4711the given @var{config}---an @code{<nscd-configuration>} object.
4712Optionally, @code{#:name-services} is a list of packages that provide
4c9050c6
LC
4713name service switch (NSS) modules needed by nscd. @xref{Name Service
4714Switch}, for an example.
cf4a9129 4715@end deffn
401c53c4 4716
6454b333
LC
4717@defvr {Scheme Variable} %nscd-default-configuration
4718This is the default @code{<nscd-configuration>} value (see below) used
4719by @code{nscd-service}. This uses the caches defined by
4720@var{%nscd-default-caches}; see below.
4721@end defvr
4722
4723@deftp {Data Type} nscd-configuration
4724This is the type representing the name service cache daemon (nscd)
4725configuration.
4726
4727@table @asis
4728
4729@item @code{log-file} (default: @code{"/var/log/nscd.log"})
4730Name of nscd's log file. This is where debugging output goes when
4731@code{debug-level} is strictly positive.
4732
4733@item @code{debug-level} (default: @code{0})
4734Integer denoting the debugging levels. Higher numbers mean more
4735debugging output is logged.
4736
4737@item @code{caches} (default: @var{%nscd-default-caches})
4738List of @code{<nscd-cache>} objects denoting things to be cached; see
4739below.
4740
4741@end table
4742@end deftp
4743
4744@deftp {Data Type} nscd-cache
4745Data type representing a cache database of nscd and its parameters.
4746
4747@table @asis
4748
4749@item @code{database}
4750This is a symbol representing the name of the database to be cached.
4751Valid values are @code{passwd}, @code{group}, @code{hosts}, and
4752@code{services}, which designate the corresponding NSS database
4753(@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual}).
4754
4755@item @code{positive-time-to-live}
4756@itemx @code{negative-time-to-live} (default: @code{20})
4757A number representing the number of seconds during which a positive or
4758negative lookup result remains in cache.
4759
4760@item @code{check-files?} (default: @code{#t})
4761Whether to check for updates of the files corresponding to
4762@var{database}.
4763
4764For instance, when @var{database} is @code{hosts}, setting this flag
4765instructs nscd to check for updates in @file{/etc/hosts} and to take
4766them into account.
4767
4768@item @code{persistent?} (default: @code{#t})
4769Whether the cache should be stored persistently on disk.
4770
4771@item @code{shared?} (default: @code{#t})
4772Whether the cache should be shared among users.
4773
4774@item @code{max-database-size} (default: 32@tie{}MiB)
4775Maximum size in bytes of the database cache.
4776
4777@c XXX: 'suggested-size' and 'auto-propagate?' seem to be expert
4778@c settings, so leave them out.
4779
4780@end table
4781@end deftp
4782
4783@defvr {Scheme Variable} %nscd-default-caches
4784List of @code{<nscd-cache>} objects used by default by
4785@code{nscd-configuration} (see above.)
4786
4787It enables persistent and aggressive caching of service and host name
4788lookups. The latter provides better host name lookup performance,
4789resilience in the face of unreliable name servers, and also better
4790privacy---often the result of host name lookups is in local cache, so
4791external name servers do not even need to be queried.
4792@end defvr
4793
4794
1bb76f75
AK
4795@deffn {Monadic Procedure} syslog-service [#:config-file #f]
4796Return a service that runs @code{syslogd}. If configuration file name
4797@var{config-file} is not specified, use some reasonable default
cf4a9129
LC
4798settings.
4799@end deffn
401c53c4 4800
cf4a9129
LC
4801@deffn {Monadic Procedure} guix-service [#:guix guix] @
4802 [#:builder-group "guixbuild"] [#:build-accounts 10] @
02bb6b45 4803 [#:authorize-hydra-key? #t] [#:use-substitutes? #t] @
cf4a9129
LC
4804 [#:extra-options '()]
4805Return a service that runs the build daemon from @var{guix}, and has
4806@var{build-accounts} user accounts available under @var{builder-group}.
401c53c4 4807
cf4a9129
LC
4808When @var{authorize-hydra-key?} is true, the @code{hydra.gnu.org} public key
4809provided by @var{guix} is authorized upon activation, meaning that substitutes
4810from @code{hydra.gnu.org} are used by default.
401c53c4 4811
cf4a9129
LC
4812If @var{use-substitutes?} is false, the daemon is run with
4813@option{--no-substitutes} (@pxref{Invoking guix-daemon,
4814@option{--no-substitutes}}).
401c53c4 4815
cf4a9129
LC
4816Finally, @var{extra-options} is a list of additional command-line options
4817passed to @command{guix-daemon}.
4818@end deffn
a1ba8475 4819
cf4a9129
LC
4820@deffn {Monadic Procedure} udev-service [#:udev udev]
4821Run @var{udev}, which populates the @file{/dev} directory dynamically.
4822@end deffn
401c53c4 4823
5eca9459
AK
4824@deffn {Monadic Procedure} console-keymap-service @var{file}
4825Return a service to load console keymap from @var{file} using
4826@command{loadkeys} command.
4827@end deffn
4828
a69576ea 4829
cf4a9129
LC
4830@node Networking Services
4831@subsubsection Networking Services
401c53c4 4832
fa1e31b8 4833The @code{(gnu services networking)} module provides services to configure
cf4a9129 4834the network interface.
a1ba8475 4835
a023cca8
LC
4836@cindex DHCP, networking service
4837@deffn {Monadic Procedure} dhcp-client-service [#:dhcp @var{isc-dhcp}]
4838Return a service that runs @var{dhcp}, a Dynamic Host Configuration
4839Protocol (DHCP) client, on all the non-loopback network interfaces.
4840@end deffn
4841
cf4a9129
LC
4842@deffn {Monadic Procedure} static-networking-service @var{interface} @var{ip} @
4843 [#:gateway #f] [#:name-services @code{'()}]
4844Return a service that starts @var{interface} with address @var{ip}. If
4845@var{gateway} is true, it must be a string specifying the default network
4846gateway.
4847@end deffn
8b315a6d 4848
b7d0c494
MW
4849@cindex wicd
4850@deffn {Monadic Procedure} wicd-service [#:wicd @var{wicd}]
4851Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a
4852network manager that aims to simplify wired and wireless networking.
4853@end deffn
4854
63854bcb
LC
4855@deffn {Monadic Procedure} ntp-service [#:ntp @var{ntp}] @
4856 [#:name-service @var{%ntp-servers}]
4857Return a service that runs the daemon from @var{ntp}, the
4858@uref{http://www.ntp.org, Network Time Protocol package}. The daemon will
4859keep the system clock synchronized with that of @var{servers}.
4860@end deffn
4861
4862@defvr {Scheme Variable} %ntp-servers
4863List of host names used as the default NTP servers.
4864@end defvr
4865
cf4a9129
LC
4866@deffn {Monadic Procedure} tor-service [#:tor tor]
4867Return a service to run the @uref{https://torproject.org,Tor} daemon.
8b315a6d 4868
cf4a9129
LC
4869The daemon runs with the default settings (in particular the default exit
4870policy) as the @code{tor} unprivileged user.
4871@end deffn
8b315a6d 4872
4627a464
LC
4873@deffn {Monadic Procedure} bitlbee-service [#:bitlbee bitlbee] @
4874 [#:interface "127.0.0.1"] [#:port 6667] @
4875 [#:extra-settings ""]
4876Return a service that runs @url{http://bitlbee.org,BitlBee}, a daemon that
4877acts as a gateway between IRC and chat networks.
4878
4879The daemon will listen to the interface corresponding to the IP address
4880specified in @var{interface}, on @var{port}. @code{127.0.0.1} means that only
4881local clients can connect, whereas @code{0.0.0.0} means that connections can
4882come from any networking interface.
4883
4884In addition, @var{extra-settings} specifies a string to append to the
4885configuration file.
4886@end deffn
4887
f4391bec 4888Furthermore, @code{(gnu services ssh)} provides the following service.
8b315a6d 4889
cf4a9129 4890@deffn {Monadic Procedure} lsh-service [#:host-key "/etc/lsh/host-key"] @
5833bf33 4891 [#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @
cf4a9129
LC
4892 [#:allow-empty-passwords? #f] [#:root-login? #f] @
4893 [#:syslog-output? #t] [#:x11-forwarding? #t] @
4894 [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @
21cc905a 4895 [#:public-key-authentication? #t] [#:initialize? #t]
cf4a9129
LC
4896Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}.
4897@var{host-key} must designate a file containing the host key, and readable
4898only by root.
72e25e35 4899
5833bf33
DP
4900When @var{daemonic?} is true, @command{lshd} will detach from the
4901controlling terminal and log its output to syslogd, unless one sets
4902@var{syslog-output?} to false. Obviously, it also makes lsh-service
4903depend on existence of syslogd service. When @var{pid-file?} is true,
4904@command{lshd} writes its PID to the file called @var{pid-file}.
4905
cf4a9129
LC
4906When @var{initialize?} is true, automatically create the seed and host key
4907upon service activation if they do not exist yet. This may take long and
4908require interaction.
8b315a6d 4909
20dd519c
LC
4910When @var{initialize?} is false, it is up to the user to initialize the
4911randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create
4912a key pair with the private key stored in file @var{host-key} (@pxref{lshd
4913basics,,, lsh, LSH Manual}).
4914
cf4a9129
LC
4915When @var{interfaces} is empty, lshd listens for connections on all the
4916network interfaces; otherwise, @var{interfaces} must be a list of host names
4917or addresses.
9bf3c1a7 4918
20dd519c
LC
4919@var{allow-empty-passwords?} specifies whether to accept log-ins with empty
4920passwords, and @var{root-login?} specifies whether to accept log-ins as
cf4a9129 4921root.
4af2447e 4922
cf4a9129
LC
4923The other options should be self-descriptive.
4924@end deffn
4af2447e 4925
fa0c1d61
LC
4926@defvr {Scheme Variable} %facebook-host-aliases
4927This variable contains a string for use in @file{/etc/hosts}
4928(@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each
4929line contains a entry that maps a known server name of the Facebook
4930on-line service---e.g., @code{www.facebook.com}---to the local
4931host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}.
4932
4933This variable is typically used in the @code{hosts-file} field of an
7313a52e
LC
4934@code{operating-system} declaration (@pxref{operating-system Reference,
4935@file{/etc/hosts}}):
fa0c1d61
LC
4936
4937@example
4938(use-modules (gnu) (guix))
4939
4940(operating-system
4941 (host-name "mymachine")
4942 ;; ...
4943 (hosts-file
4944 ;; Create a /etc/hosts file with aliases for "localhost"
4945 ;; and "mymachine", as well as for Facebook servers.
4946 (text-file "hosts"
4947 (string-append (local-host-aliases host-name)
4948 %facebook-host-aliases))))
4949@end example
4950
4951This mechanism can prevent programs running locally, such as Web
4952browsers, from accessing Facebook.
4953@end defvr
4954
cf4a9129
LC
4955@node X Window
4956@subsubsection X Window
68ad877c 4957
cf4a9129
LC
4958Support for the X Window graphical display system---specifically
4959Xorg---is provided by the @code{(gnu services xorg)} module. Note that
4960there is no @code{xorg-service} procedure. Instead, the X server is
4961started by the @dfn{login manager}, currently SLiM.
4af2447e 4962
cf4a9129 4963@deffn {Monadic Procedure} slim-service [#:allow-empty-passwords? #f] @
0ecc3bf3
LC
4964 [#:auto-login? #f] [#:default-user ""] [#:startx] @
4965 [#:theme @var{%default-slim-theme}] @
4bd43bbe 4966 [#:theme-name @var{%default-slim-theme-name}]
cf4a9129
LC
4967Return a service that spawns the SLiM graphical login manager, which in
4968turn starts the X display server with @var{startx}, a command as returned by
4969@code{xorg-start-command}.
4af2447e 4970
cf4a9129
LC
4971When @var{allow-empty-passwords?} is true, allow logins with an empty
4972password. When @var{auto-login?} is true, log in automatically as
4973@var{default-user}.
0ecc3bf3
LC
4974
4975If @var{theme} is @code{#f}, the use the default log-in theme; otherwise
4976@var{theme} must be a gexp denoting the name of a directory containing the
4977theme to use. In that case, @var{theme-name} specifies the name of the
4978theme.
cf4a9129 4979@end deffn
4af2447e 4980
0ecc3bf3
LC
4981@defvr {Scheme Variable} %default-theme
4982@defvrx {Scheme Variable} %default-theme-name
4983The G-Expression denoting the default SLiM theme and its name.
4984@end defvr
4985
f703413e 4986@deffn {Monadic Procedure} xorg-start-command [#:guile] @
d2e59637 4987 [#:drivers '()] [#:resolutions '()] [#:xorg-server @var{xorg-server}]
f703413e
LC
4988Return a derivation that builds a @var{guile} script to start the X server
4989from @var{xorg-server}. Usually the X server is started by a login manager.
4990
4991@var{drivers} must be either the empty list, in which case Xorg chooses a
4992graphics driver automatically, or a list of driver names that will be tried in
4993this order---e.g., @code{("modesetting" "vesa")}.
d2e59637
LC
4994
4995Likewise, when @var{resolutions} is the empty list, Xorg chooses an
4996appropriate screen resolution; otherwise, it must be a list of
4997resolutions---e.g., @code{((1024 768) (640 480))}.
f703413e 4998@end deffn
4af2447e 4999
fe1a39d3
LC
5000@node Desktop Services
5001@subsubsection Desktop Services
aa4ed923 5002
fe1a39d3
LC
5003The @code{(gnu services desktop)} module provides services that are
5004usually useful in the context of a ``desktop'' setup---that is, on a
5005machine running a graphical display server, possibly with graphical user
5006interfaces, etc.
aa4ed923 5007
4467be21
LC
5008To simplify things, the module defines a variable containing the set of
5009services that users typically expect on a machine with a graphical
5010environment and networking:
5011
5012@defvr {Scheme Variable} %desktop-services
5013This is a list of services that builds upon @var{%base-services} and
5014adds or adjust services for a typical ``desktop'' setup.
5015
5016In particular, it adds a graphical login manager (@pxref{X Window,
5017@code{slim-service}}), a network management tool (@pxref{Networking
5018Services, @code{wicd-service}}), energy and color management services,
5019an NTP client and an SSH server (@pxref{Networking Services}), the Avahi
5020daemon, and has the name service switch service configured to be able to
5021use @code{nss-mdns} (@pxref{Name Service Switch, mDNS}).
5022@end defvr
5023
5024The @var{%desktop-services} variable can be used as the @code{services}
5025field of an @code{operating-system} declaration (@pxref{operating-system
5026Reference, @code{services}}).
5027
5028The actual service definitions provided by @code{(gnu services desktop)}
5029are described below.
5030
fe1a39d3
LC
5031@deffn {Monadic Procedure} dbus-service @var{services} @
5032 [#:dbus @var{dbus}]
5033Return a service that runs the ``system bus'', using @var{dbus}, with
5034support for @var{services}.
aa4ed923 5035
fe1a39d3
LC
5036@uref{http://dbus.freedesktop.org/, D-Bus} is an inter-process communication
5037facility. Its system bus is used to allow system services to communicate
5038and be notified of system-wide events.
aa4ed923 5039
fe1a39d3
LC
5040@var{services} must be a list of packages that provide an
5041@file{etc/dbus-1/system.d} directory containing additional D-Bus configuration
5042and policy files. For example, to allow avahi-daemon to use the system bus,
5043@var{services} must be equal to @code{(list avahi)}.
aa4ed923
AK
5044@end deffn
5045
be234128
AW
5046@deffn {Monadic Procedure} upower-service [#:upower @var{upower}] @
5047 [#:watts-up-pro? #f] @
5048 [#:poll-batteries? #t] @
5049 [#:ignore-lid? #f] @
5050 [#:use-percentage-for-policy? #f] @
5051 [#:percentage-low 10] @
5052 [#:percentage-critical 3] @
5053 [#:percentage-action 2] @
5054 [#:time-low 1200] @
5055 [#:time-critical 300] @
5056 [#:time-action 120] @
5057 [#:critical-power-action 'hybrid-sleep]
5058Return a service that runs @uref{http://upower.freedesktop.org/,
5059@command{upowerd}}, a system-wide monitor for power consumption and battery
5060levels, with the given configuration settings. It implements the
5061@code{org.freedesktop.UPower} D-Bus interface, and is notably used by
5062GNOME.
5063@end deffn
5064
7ce597ff
AW
5065@deffn {Monadic Procedure} colord-service [#:colord @var{colord}]
5066Return a service that runs @command{colord}, a system service with a D-Bus
5067interface to manage the color profiles of input and output devices such as
5068screens and scanners. It is notably used by the GNOME Color Manager graphical
5069tool. See @uref{http://www.freedesktop.org/software/colord/, the colord web
5070site} for more information.
5071@end deffn
5072
105369a4
DT
5073@node Database Services
5074@subsubsection Database Services
5075
5076The @code{(gnu services databases)} module provides the following service.
5077
5078@deffn {Monadic Procedure} postgresql-service [#:postgresql postgresql] @
5079 [#:config-file] [#:data-directory ``/var/lib/postgresql/data'']
5080Return a service that runs @var{postgresql}, the PostgreSQL database
5081server.
5082
5083The PostgreSQL daemon loads its runtime configuration from
5084@var{config-file} and stores the database cluster in
5085@var{data-directory}.
5086@end deffn
fe1a39d3
LC
5087
5088@node Various Services
5089@subsubsection Various Services
5090
5091The @code{(gnu services lirc)} module provides the following service.
5092
5093@deffn {Monadic Procedure} lirc-service [#:lirc lirc] @
5094 [#:device #f] [#:driver #f] [#:config-file #f] @
5095 [#:extra-options '()]
5096Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that
5097decodes infrared signals from remote controls.
5098
5099Optionally, @var{device}, @var{driver} and @var{config-file}
5100(configuration file name) may be specified. See @command{lircd} manual
5101for details.
5102
5103Finally, @var{extra-options} is a list of additional command-line options
5104passed to @command{lircd}.
5105@end deffn
5106
5107
0ae8c15a
LC
5108@node Setuid Programs
5109@subsection Setuid Programs
5110
5111@cindex setuid programs
5112Some programs need to run with ``root'' privileges, even when they are
5113launched by unprivileged users. A notorious example is the
5114@command{passwd} programs, which can users can run to change their
5115password, and which requires write access to the @file{/etc/passwd} and
5116@file{/etc/shadow} files---something normally restricted to root, for
5117obvious security reasons. To address that, these executables are
5118@dfn{setuid-root}, meaning that they always run with root privileges
5119(@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual},
5120for more info about the setuid mechanisms.)
5121
5122The store itself @emph{cannot} contain setuid programs: that would be a
5123security issue since any user on the system can write derivations that
5124populate the store (@pxref{The Store}). Thus, a different mechanism is
5125used: instead of changing the setuid bit directly on files that are in
5126the store, we let the system administrator @emph{declare} which programs
5127should be setuid root.
5128
5129The @code{setuid-programs} field of an @code{operating-system}
5130declaration contains a list of G-expressions denoting the names of
5131programs to be setuid-root (@pxref{Using the Configuration System}).
5132For instance, the @command{passwd} program, which is part of the Shadow
5133package, can be designated by this G-expression (@pxref{G-Expressions}):
5134
5135@example
5136#~(string-append #$shadow "/bin/passwd")
5137@end example
5138
5139A default set of setuid programs is defined by the
5140@code{%setuid-programs} variable of the @code{(gnu system)} module.
5141
5142@defvr {Scheme Variable} %setuid-programs
5143A list of G-expressions denoting common programs that are setuid-root.
5144
5145The list includes commands such as @command{passwd}, @command{ping},
5146@command{su}, and @command{sudo}.
5147@end defvr
5148
5149Under the hood, the actual setuid programs are created in the
5150@file{/run/setuid-programs} directory at system activation time. The
5151files in this directory refer to the ``real'' binaries, which are in the
5152store.
5153
996ed739
LC
5154@node Name Service Switch
5155@subsection Name Service Switch
5156
5157@cindex name service switch
5158@cindex NSS
5159The @code{(gnu system nss)} module provides bindings to the
5160configuration file of libc's @dfn{name service switch} or @dfn{NSS}
5161(@pxref{NSS Configuration File,,, libc, The GNU C Library Reference
5162Manual}). In a nutshell, the NSS is a mechanism that allows libc to be
5163extended with new ``name'' lookup methods for system databases, which
5164includes host names, service names, user accounts, and more (@pxref{Name
5165Service Switch, System Databases and Name Service Switch,, libc, The GNU
5166C Library Reference Manual}).
5167
5168The NSS configuration specifies, for each system database, which lookup
5169method is to be used, and how the various methods are chained
5170together---for instance, under which circumstances NSS should try the
5171next method in the list. The NSS configuration is given in the
5172@code{name-service-switch} field of @code{operating-system} declarations
5173(@pxref{operating-system Reference, @code{name-service-switch}}).
5174
4c9050c6
LC
5175@cindex nss-mdns
5176@cindex .local, host name lookup
996ed739 5177As an example, the declaration below configures the NSS to use the
4c9050c6
LC
5178@uref{http://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns}
5179back-end}, which supports host name lookups over multicast DNS (mDNS)
5180for host names ending in @code{.local}:
996ed739
LC
5181
5182@example
5183(name-service-switch
5184 (hosts (list %files ;first, check /etc/hosts
5185
5186 ;; If the above did not succeed, try
5187 ;; with 'mdns_minimal'.
5188 (name-service
5189 (name "mdns_minimal")
5190
5191 ;; 'mdns_minimal' is authoritative for
5192 ;; '.local'. When it returns "not found",
5193 ;; no need to try the next methods.
5194 (reaction (lookup-specification
5195 (not-found => return))))
5196
5197 ;; Then fall back to DNS.
5198 (name-service
5199 (name "dns"))
5200
5201 ;; Finally, try with the "full" 'mdns'.
5202 (name-service
5203 (name "mdns")))))
5204@end example
5205
15137a29
LC
5206Don't worry: the @code{%mdns-host-lookup-nss} variable (see below)
5207contains this configuration, so you won't have to type it if all you
5208want is to have @code{.local} host lookup working.
5209
4c9050c6
LC
5210Note that, in this case, in addition to setting the
5211@code{name-service-switch} of the @code{operating-system} declaration,
5212@code{nscd-service} must be told where to find the @code{nss-mdns}
5213shared library (@pxref{Base Services, @code{nscd-service}}). Since the
5214@code{nscd} service is part of @var{%base-services}, you may want to
5215customize it by adding this snippet in the operating system
5216configuration file:
5217
5218@example
5219(use-modules (guix) (gnu))
5220
5221(define %my-base-services
5222 ;; Replace the default nscd service with one that knows
5223 ;; about nss-mdns.
5224 (map (lambda (mservice)
5225 ;; "Bind" the MSERVICE monadic value to inspect it.
5226 (mlet %store-monad ((service mservice))
5227 (if (member 'nscd (service-provision service))
5228 (nscd-service (nscd-configuration)
5229 #:name-services (list nss-mdns))
5230 mservice)))
5231 %base-services))
5232@end example
5233
5234@noindent
5235@dots{} and then refer to @var{%my-base-services} instead of
5236@var{%base-services} in the @code{operating-system} declaration.
15137a29
LC
5237Lastly, this relies on the availability of the Avahi service
5238(@pxref{Desktop Services, @code{avahi-service}}).
5239
5240For convenience, the following variables provide typical NSS
5241configurations.
5242
5243@defvr {Scheme Variable} %default-nss
5244This is the default name service switch configuration, a
5245@code{name-service-switch} object.
5246@end defvr
5247
5248@defvr {Scheme Variable} %mdns-host-lookup-nss
5249This is the name service switch configuration with support for host name
5250lookup over multicast DNS (mDNS) for host names ending in @code{.local}.
5251@end defvr
4c9050c6 5252
996ed739
LC
5253The reference for name service switch configuration is given below. It
5254is a direct mapping of the C library's configuration file format, so
5255please refer to the C library manual for more information (@pxref{NSS
5256Configuration File,,, libc, The GNU C Library Reference Manual}).
5257Compared to libc's NSS configuration file format, it has the advantage
5258not only of adding this warm parenthetic feel that we like, but also
5259static checks: you'll know about syntax errors and typos as soon as you
5260run @command{guix system}.
5261
996ed739
LC
5262@deftp {Data Type} name-service-switch
5263
5264This is the data type representation the configuration of libc's name
5265service switch (NSS). Each field below represents one of the supported
5266system databases.
5267
5268@table @code
5269@item aliases
5270@itemx ethers
5271@itemx group
5272@itemx gshadow
5273@itemx hosts
5274@itemx initgroups
5275@itemx netgroup
5276@itemx networks
5277@itemx password
5278@itemx public-key
5279@itemx rpc
5280@itemx services
5281@itemx shadow
5282The system databases handled by the NSS. Each of these fields must be a
5283list of @code{<name-service>} objects (see below.)
5284@end table
5285@end deftp
5286
5287@deftp {Data Type} name-service
5288
5289This is the data type representing an actual name service and the
5290associated lookup action.
5291
5292@table @code
5293@item name
5294A string denoting the name service (@pxref{Services in the NSS
5295configuration,,, libc, The GNU C Library Reference Manual}).
5296
4aee6e60
LC
5297Note that name services listed here must be visible to nscd. This is
5298achieved by passing the @code{#:name-services} argument to
5299@code{nscd-service} the list of packages providing the needed name
5300services (@pxref{Base Services, @code{nscd-service}}).
5301
996ed739
LC
5302@item reaction
5303An action specified using the @code{lookup-specification} macro
5304(@pxref{Actions in the NSS configuration,,, libc, The GNU C Library
5305Reference Manual}). For example:
5306
5307@example
5308(lookup-specification (unavailable => continue)
5309 (success => return))
5310@end example
5311@end table
5312@end deftp
0ae8c15a 5313
fd1b1fa2
LC
5314@node Initial RAM Disk
5315@subsection Initial RAM Disk
5316
5317@cindex initial RAM disk (initrd)
5318@cindex initrd (initial RAM disk)
5319For bootstrapping purposes, the Linux-Libre kernel is passed an
5320@dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary
5321root file system, as well as an initialization script. The latter is
5322responsible for mounting the real root file system, and for loading any
5323kernel modules that may be needed to achieve that.
5324
5325The @code{initrd} field of an @code{operating-system} declaration allows
5326you to specify which initrd you would like to use. The @code{(gnu
5327system linux-initrd)} module provides two ways to build an initrd: the
5328high-level @code{base-initrd} procedure, and the low-level
5329@code{expression->initrd} procedure.
5330
5331The @code{base-initrd} procedure is intended to cover most common uses.
5332For example, if you want to add a bunch of kernel modules to be loaded
5333at boot time, you can define the @code{initrd} field of the operating
5334system declaration like this:
5335
5336@example
52ac153e 5337(initrd (lambda (file-systems . rest)
027981d6
LC
5338 ;; Create a standard initrd that has modules "foo.ko"
5339 ;; and "bar.ko", as well as their dependencies, in
5340 ;; addition to the modules available by default.
52ac153e 5341 (apply base-initrd file-systems
027981d6 5342 #:extra-modules '("foo" "bar")
52ac153e 5343 rest)))
fd1b1fa2
LC
5344@end example
5345
52ac153e
LC
5346The @code{base-initrd} procedure also handles common use cases that
5347involves using the system as a QEMU guest, or as a ``live'' system whose
5348root file system is volatile.
fd1b1fa2
LC
5349
5350@deffn {Monadic Procedure} base-initrd @var{file-systems} @
5351 [#:qemu-networking? #f] [#:virtio? #f] [#:volatile-root? #f] @
52ac153e 5352 [#:extra-modules '()] [#:mapped-devices '()]
fd1b1fa2
LC
5353Return a monadic derivation that builds a generic initrd. @var{file-systems} is
5354a list of file-systems to be mounted by the initrd, possibly in addition to
5355the root file system specified on the kernel command line via @code{--root}.
52ac153e
LC
5356@var{mapped-devices} is a list of device mappings to realize before
5357@var{file-systems} are mounted (@pxref{Mapped Devices}).
fd1b1fa2
LC
5358
5359When @var{qemu-networking?} is true, set up networking with the standard QEMU
5360parameters. When @var{virtio?} is true, load additional modules so the initrd can
5361be used as a QEMU guest with para-virtualized I/O drivers.
5362
5363When @var{volatile-root?} is true, the root file system is writable but any changes
5364to it are lost.
5365
5366The initrd is automatically populated with all the kernel modules necessary
5367for @var{file-systems} and for the given options. However, additional kernel
5368modules can be listed in @var{extra-modules}. They will be added to the initrd, and
5369loaded at boot time in the order in which they appear.
5370@end deffn
5371
5372Needless to say, the initrds we produce and use embed a
5373statically-linked Guile, and the initialization program is a Guile
5374program. That gives a lot of flexibility. The
5375@code{expression->initrd} procedure builds such an initrd, given the
5376program to run in that initrd.
5377
5378@deffn {Monadic Procedure} expression->initrd @var{exp} @
5379 [#:guile %guile-static-stripped] [#:name "guile-initrd"] @
42d10464 5380 [#:modules '()]
fd1b1fa2
LC
5381Return a derivation that builds a Linux initrd (a gzipped cpio archive)
5382containing @var{guile} and that evaluates @var{exp}, a G-expression,
df650fa8
LC
5383upon booting. All the derivations referenced by @var{exp} are
5384automatically copied to the initrd.
fd1b1fa2 5385
42d10464
LC
5386@var{modules} is a list of Guile module names to be embedded in the
5387initrd.
fd1b1fa2
LC
5388@end deffn
5389
88faf933
LC
5390@node GRUB Configuration
5391@subsection GRUB Configuration
5392
5393@cindex GRUB
5394@cindex boot loader
5395
5396The operating system uses GNU@tie{}GRUB as its boot loader
5397(@pxref{Overview, overview of GRUB,, grub, GNU GRUB Manual}). It is
5398configured using @code{grub-configuration} declarations. This data type
5399is exported by the @code{(gnu system grub)} module, and described below.
5400
5401@deftp {Data Type} grub-configuration
5402The type of a GRUB configuration declaration.
5403
5404@table @asis
5405
5406@item @code{device}
5407This is a string denoting the boot device. It must be a device name
5408understood by the @command{grub-install} command, such as
5409@code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub,
5410GNU GRUB Manual}).
5411
5412@item @code{menu-entries} (default: @code{()})
5413A possibly empty list of @code{menu-entry} objects (see below), denoting
5414entries to appear in the GRUB boot menu, in addition to the current
5415system entry and the entry pointing to previous system generations.
5416
5417@item @code{default-entry} (default: @code{0})
5418The index of the default boot menu entry. Index 0 is for the current
5419system's entry.
5420
5421@item @code{timeout} (default: @code{5})
5422The number of seconds to wait for keyboard input before booting. Set to
54230 to boot immediately, and to -1 to wait indefinitely.
5424
5425@item @code{theme} (default: @var{%default-theme})
5426The @code{grub-theme} object describing the theme to use.
5427@end table
5428
5429@end deftp
5430
5431Should you want to list additional boot menu entries @i{via} the
5432@code{menu-entries} field above, you will need to create them with the
5433@code{menu-entry} form:
5434
5435@deftp {Data Type} menu-entry
5436The type of an entry in the GRUB boot menu.
5437
5438@table @asis
5439
5440@item @code{label}
35ed9306 5441The label to show in the menu---e.g., @code{"GNU"}.
88faf933
LC
5442
5443@item @code{linux}
5444The Linux kernel to boot.
5445
5446@item @code{linux-arguments} (default: @code{()})
5447The list of extra Linux kernel command-line arguments---e.g.,
5448@code{("console=ttyS0")}.
5449
5450@item @code{initrd}
5451A G-Expression or string denoting the file name of the initial RAM disk
5452to use (@pxref{G-Expressions}).
5453
5454@end table
5455@end deftp
5456
5457@c FIXME: Write documentation once it's stable.
5458Themes are created using the @code{grub-theme} form, which is not
5459documented yet.
5460
5461@defvr {Scheme Variable} %default-theme
5462This is the default GRUB theme used by the operating system, with a
5463fancy background image displaying the GNU and Guix logos.
5464@end defvr
5465
5466
cf4a9129
LC
5467@node Invoking guix system
5468@subsection Invoking @code{guix system}
0918e64a 5469
cf4a9129
LC
5470Once you have written an operating system declaration, as seen in the
5471previous section, it can be @dfn{instantiated} using the @command{guix
5472system} command. The synopsis is:
4af2447e 5473
cf4a9129
LC
5474@example
5475guix system @var{options}@dots{} @var{action} @var{file}
5476@end example
4af2447e 5477
cf4a9129
LC
5478@var{file} must be the name of a file containing an
5479@code{operating-system} declaration. @var{action} specifies how the
5480operating system is instantiate. Currently the following values are
5481supported:
4af2447e 5482
cf4a9129
LC
5483@table @code
5484@item reconfigure
5485Build the operating system described in @var{file}, activate it, and
5486switch to it@footnote{This action is usable only on systems already
5487running GNU.}.
4af2447e 5488
cf4a9129
LC
5489This effects all the configuration specified in @var{file}: user
5490accounts, system services, global package list, setuid programs, etc.
4af2447e 5491
cf4a9129
LC
5492It also adds a GRUB menu entry for the new OS configuration, and moves
5493entries for older configurations to a submenu---unless
5494@option{--no-grub} is passed.
4af2447e 5495
bf2479c7
LC
5496@c The paragraph below refers to the problem discussed at
5497@c <http://lists.gnu.org/archive/html/guix-devel/2014-08/msg00057.html>.
5498It is highly recommended to run @command{guix pull} once before you run
5499@command{guix system reconfigure} for the first time (@pxref{Invoking
5500guix pull}). Failing to do that you would see an older version of Guix
5501once @command{reconfigure} has completed.
5502
cf4a9129
LC
5503@item build
5504Build the operating system's derivation, which includes all the
5505configuration files and programs needed to boot and run the system.
5506This action does not actually install anything.
113daf62 5507
cf4a9129
LC
5508@item init
5509Populate the given directory with all the files necessary to run the
5510operating system specified in @var{file}. This is useful for first-time
3ca2731c 5511installations of GSD. For instance:
113daf62
LC
5512
5513@example
cf4a9129 5514guix system init my-os-config.scm /mnt
113daf62
LC
5515@end example
5516
cf4a9129
LC
5517copies to @file{/mnt} all the store items required by the configuration
5518specified in @file{my-os-config.scm}. This includes configuration
5519files, packages, and so on. It also creates other essential files
5520needed for the system to operate correctly---e.g., the @file{/etc},
5521@file{/var}, and @file{/run} directories, and the @file{/bin/sh} file.
113daf62 5522
cf4a9129
LC
5523This command also installs GRUB on the device specified in
5524@file{my-os-config}, unless the @option{--no-grub} option was passed.
113daf62 5525
cf4a9129
LC
5526@item vm
5527@cindex virtual machine
0276f697 5528@cindex VM
cf4a9129
LC
5529Build a virtual machine that contain the operating system declared in
5530@var{file}, and return a script to run that virtual machine (VM).
810568b3 5531Arguments given to the script are passed as is to QEMU.
113daf62 5532
cf4a9129 5533The VM shares its store with the host system.
113daf62 5534
0276f697
LC
5535Additional file systems can be shared between the host and the VM using
5536the @code{--share} and @code{--expose} command-line options: the former
5537specifies a directory to be shared with write access, while the latter
5538provides read-only access to the shared directory.
5539
5540The example below creates a VM in which the user's home directory is
5541accessible read-only, and where the @file{/exchange} directory is a
5542read-write mapping of the host's @file{$HOME/tmp}:
5543
5544@example
5545guix system vm my-config.scm \
5546 --expose=$HOME --share=$HOME/tmp=/exchange
5547@end example
5548
6aa260af
LC
5549On GNU/Linux, the default is to boot directly to the kernel; this has
5550the advantage of requiring only a very tiny root disk image since the
5551host's store can then be mounted.
5552
5553The @code{--full-boot} option forces a complete boot sequence, starting
5554with the bootloader. This requires more disk space since a root image
5555containing at least the kernel, initrd, and bootloader data files must
5556be created. The @code{--image-size} option can be used to specify the
5557image's size.
ab11f0be 5558
cf4a9129
LC
5559@item vm-image
5560@itemx disk-image
5561Return a virtual machine or disk image of the operating system declared
5562in @var{file} that stands alone. Use the @option{--image-size} option
5563to specify the size of the image.
113daf62 5564
cf4a9129
LC
5565When using @code{vm-image}, the returned image is in qcow2 format, which
5566the QEMU emulator can efficiently use.
113daf62 5567
cf4a9129
LC
5568When using @code{disk-image}, a raw disk image is produced; it can be
5569copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is
5570the device corresponding to a USB stick, one can copy the image on it
5571using the following command:
113daf62 5572
cf4a9129
LC
5573@example
5574# dd if=$(guix system disk-image my-os.scm) of=/dev/sdc
5575@end example
113daf62 5576
cf4a9129 5577@end table
113daf62 5578
cf4a9129
LC
5579@var{options} can contain any of the common build options provided by
5580@command{guix build} (@pxref{Invoking guix build}). In addition,
5581@var{options} can contain one of the following:
113daf62 5582
cf4a9129
LC
5583@table @option
5584@item --system=@var{system}
5585@itemx -s @var{system}
5586Attempt to build for @var{system} instead of the host's system type.
5587This works as per @command{guix build} (@pxref{Invoking guix build}).
113daf62 5588
cf4a9129
LC
5589@item --image-size=@var{size}
5590For the @code{vm-image} and @code{disk-image} actions, create an image
5591of the given @var{size}. @var{size} may be a number of bytes, or it may
4a44d7bb
LC
5592include a unit as a suffix (@pxref{Block size, size specifications,,
5593coreutils, GNU Coreutils}).
113daf62 5594@end table
113daf62 5595
cf4a9129
LC
5596Note that all the actions above, except @code{build} and @code{init},
5597rely on KVM support in the Linux-Libre kernel. Specifically, the
5598machine should have hardware virtualization support, the corresponding
5599KVM kernel module should be loaded, and the @file{/dev/kvm} device node
5600must exist and be readable and writable by the user and by the daemon's
5601build users.
8451a568 5602
cf4a9129
LC
5603@node Defining Services
5604@subsection Defining Services
8451a568 5605
cf4a9129
LC
5606The @code{(gnu services @dots{})} modules define several procedures that allow
5607users to declare the operating system's services (@pxref{Using the
5608Configuration System}). These procedures are @emph{monadic
5609procedures}---i.e., procedures that return a monadic value in the store
5610monad (@pxref{The Store Monad}). For examples of such procedures,
5611@xref{Services}.
8451a568 5612
cf4a9129
LC
5613@cindex service definition
5614The monadic value returned by those procedures is a @dfn{service
5615definition}---a structure as returned by the @code{service} form.
5616Service definitions specifies the inputs the service depends on, and an
5617expression to start and stop the service. Behind the scenes, service
5618definitions are ``translated'' into the form suitable for the
5619configuration file of dmd, the init system (@pxref{Services,,, dmd, GNU
5620dmd Manual}).
8451a568 5621
cf4a9129
LC
5622As an example, here is what the @code{nscd-service} procedure looks
5623like:
8451a568 5624
cf4a9129
LC
5625@lisp
5626(define (nscd-service)
5627 (with-monad %store-monad
5628 (return (service
5629 (documentation "Run libc's name service cache daemon.")
5630 (provision '(nscd))
5631 (activate #~(begin
5632 (use-modules (guix build utils))
5633 (mkdir-p "/var/run/nscd")))
5634 (start #~(make-forkexec-constructor
5635 (string-append #$glibc "/sbin/nscd")
5636 "-f" "/dev/null" "--foreground"))
5637 (stop #~(make-kill-destructor))
5638 (respawn? #f)))))
5639@end lisp
8451a568 5640
cf4a9129
LC
5641@noindent
5642The @code{activate}, @code{start}, and @code{stop} fields are G-expressions
5643(@pxref{G-Expressions}). The @code{activate} field contains a script to
5644run at ``activation'' time; it makes sure that the @file{/var/run/nscd}
5645directory exists before @command{nscd} is started.
8451a568 5646
cf4a9129
LC
5647The @code{start} and @code{stop} fields refer to dmd's facilities to
5648start and stop processes (@pxref{Service De- and Constructors,,, dmd,
5649GNU dmd Manual}). The @code{provision} field specifies the name under
5650which this service is known to dmd, and @code{documentation} specifies
5651on-line documentation. Thus, the commands @command{deco start ncsd},
5652@command{deco stop nscd}, and @command{deco doc nscd} will do what you
5653would expect (@pxref{Invoking deco,,, dmd, GNU dmd Manual}).
8451a568 5654
8451a568 5655
cf4a9129
LC
5656@node Installing Debugging Files
5657@section Installing Debugging Files
8451a568 5658
cf4a9129
LC
5659@cindex debugging files
5660Program binaries, as produced by the GCC compilers for instance, are
5661typically written in the ELF format, with a section containing
5662@dfn{debugging information}. Debugging information is what allows the
5663debugger, GDB, to map binary code to source code; it is required to
5664debug a compiled program in good conditions.
8451a568 5665
cf4a9129
LC
5666The problem with debugging information is that is takes up a fair amount
5667of disk space. For example, debugging information for the GNU C Library
5668weighs in at more than 60 MiB. Thus, as a user, keeping all the
5669debugging info of all the installed programs is usually not an option.
5670Yet, space savings should not come at the cost of an impediment to
5671debugging---especially in the GNU system, which should make it easier
5672for users to exert their computing freedom (@pxref{GNU Distribution}).
8451a568 5673
cf4a9129
LC
5674Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a
5675mechanism that allows users to get the best of both worlds: debugging
5676information can be stripped from the binaries and stored in separate
5677files. GDB is then able to load debugging information from those files,
5678when they are available (@pxref{Separate Debug Files,,, gdb, Debugging
5679with GDB}).
8451a568 5680
cf4a9129
LC
5681The GNU distribution takes advantage of this by storing debugging
5682information in the @code{lib/debug} sub-directory of a separate package
5683output unimaginatively called @code{debug} (@pxref{Packages with
5684Multiple Outputs}). Users can choose to install the @code{debug} output
5685of a package when they need it. For instance, the following command
5686installs the debugging information for the GNU C Library and for GNU
5687Guile:
8451a568
LC
5688
5689@example
cf4a9129 5690guix package -i glibc:debug guile:debug
8451a568
LC
5691@end example
5692
cf4a9129
LC
5693GDB must then be told to look for debug files in the user's profile, by
5694setting the @code{debug-file-directory} variable (consider setting it
5695from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with
5696GDB}):
8451a568 5697
cf4a9129
LC
5698@example
5699(gdb) set debug-file-directory ~/.guix-profile/lib/debug
5700@end example
8451a568 5701
cf4a9129
LC
5702From there on, GDB will pick up debugging information from the
5703@code{.debug} files under @file{~/.guix-profile/lib/debug}.
8451a568 5704
cf4a9129
LC
5705In addition, you will most likely want GDB to be able to show the source
5706code being debugged. To do that, you will have to unpack the source
5707code of the package of interest (obtained with @code{guix build
5708--source}, @pxref{Invoking guix build}), and to point GDB to that source
5709directory using the @code{directory} command (@pxref{Source Path,
5710@code{directory},, gdb, Debugging with GDB}).
8451a568 5711
cf4a9129
LC
5712@c XXX: keep me up-to-date
5713The @code{debug} output mechanism in Guix is implemented by the
5714@code{gnu-build-system} (@pxref{Build Systems}). Currently, it is
5715opt-in---debugging information is available only for those packages
5716whose definition explicitly declares a @code{debug} output. This may be
5717changed to opt-out in the future, if our build farm servers can handle
5718the load. To check whether a package has a @code{debug} output, use
5719@command{guix package --list-available} (@pxref{Invoking guix package}).
8451a568 5720
8451a568 5721
05962f29
LC
5722@node Security Updates
5723@section Security Updates
5724
843858b8
LC
5725@quotation Note
5726As of version @value{VERSION}, the feature described in this section is
5727experimental.
5728@end quotation
05962f29
LC
5729
5730@cindex security updates
5731Occasionally, important security vulnerabilities are discovered in core
5732software packages and must be patched. Guix follows a functional
5733package management discipline (@pxref{Introduction}), which implies
5734that, when a package is changed, @emph{every package that depends on it}
5735must be rebuilt. This can significantly slow down the deployment of
5736fixes in core packages such as libc or Bash, since basically the whole
5737distribution would need to be rebuilt. Using pre-built binaries helps
5738(@pxref{Substitutes}), but deployment may still take more time than
5739desired.
5740
5741@cindex grafts
5742To address that, Guix implements @dfn{grafts}, a mechanism that allows
5743for fast deployment of critical updates without the costs associated
5744with a whole-distribution rebuild. The idea is to rebuild only the
5745package that needs to be patched, and then to ``graft'' it onto packages
5746explicitly installed by the user and that were previously referring to
5747the original package. The cost of grafting is typically very low, and
5748order of magnitudes lower than a full rebuild of the dependency chain.
5749
5750@cindex replacements of packages, for grafts
5751For instance, suppose a security update needs to be applied to Bash.
5752Guix developers will provide a package definition for the ``fixed''
5753Bash, say @var{bash-fixed}, in the usual way (@pxref{Defining
5754Packages}). Then, the original package definition is augmented with a
5755@code{replacement} field pointing to the package containing the bug fix:
5756
5757@example
5758(define bash
5759 (package
5760 (name "bash")
5761 ;; @dots{}
5762 (replacement bash-fixed)))
5763@end example
5764
5765From there on, any package depending directly or indirectly on Bash that
5766is installed will automatically be ``rewritten'' to refer to
5767@var{bash-fixed} instead of @var{bash}. This grafting process takes
5768time proportional to the size of the package, but expect less than a
5769minute for an ``average'' package on a recent machine.
5770
5771Currently, the graft and the package it replaces (@var{bash-fixed} and
5772@var{bash} in the example above) must have the exact same @code{name}
5773and @code{version} fields. This restriction mostly comes from the fact
5774that grafting works by patching files, including binary files, directly.
5775Other restrictions may apply: for instance, when adding a graft to a
5776package providing a shared library, the original shared library and its
5777replacement must have the same @code{SONAME} and be binary-compatible.
5778
5779
cf4a9129
LC
5780@node Package Modules
5781@section Package Modules
8451a568 5782
cf4a9129
LC
5783From a programming viewpoint, the package definitions of the
5784GNU distribution are provided by Guile modules in the @code{(gnu packages
5785@dots{})} name space@footnote{Note that packages under the @code{(gnu
5786packages @dots{})} module name space are not necessarily ``GNU
5787packages''. This module naming scheme follows the usual Guile module
5788naming convention: @code{gnu} means that these modules are distributed
5789as part of the GNU system, and @code{packages} identifies modules that
5790define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile
5791Reference Manual}). For instance, the @code{(gnu packages emacs)}
5792module exports a variable named @code{emacs}, which is bound to a
5793@code{<package>} object (@pxref{Defining Packages}).
113daf62 5794
300868ba 5795The @code{(gnu packages @dots{})} module name space is
cf4a9129
LC
5796automatically scanned for packages by the command-line tools. For
5797instance, when running @code{guix package -i emacs}, all the @code{(gnu
5798packages @dots{})} modules are scanned until one that exports a package
5799object whose name is @code{emacs} is found. This package search
5800facility is implemented in the @code{(gnu packages)} module.
113daf62 5801
300868ba 5802@cindex customization, of packages
8689901f 5803@cindex package module search path
cf4a9129 5804Users can store package definitions in modules with different
60142854
LC
5805names---e.g., @code{(my-packages emacs)}@footnote{Note that the file
5806name and module name must match. @xref{Modules and the File System,,,
5807guile, GNU Guile Reference Manual}, for details.} These package definitions
300868ba
LC
5808will not be visible by default. Thus, users can invoke commands such as
5809@command{guix package} and @command{guix build} have to be used with the
5810@code{-e} option so that they know where to find the package, or use the
5811@code{-L} option of these commands to make those modules visible
8689901f
LC
5812(@pxref{Invoking guix build, @code{--load-path}}), or define the
5813@code{GUIX_PACKAGE_PATH} environment variable. This environment
5814variable makes it easy to extend or customize the distribution and is
5815honored by all the user interfaces.
5816
5817@defvr {Environment Variable} GUIX_PACKAGE_PATH
5818This is a colon-separated list of directories to search for package
5819modules. Directories listed in this variable take precedence over the
5820distribution's own modules.
5821@end defvr
ef5dd60a 5822
cf4a9129
LC
5823The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}:
5824each package is built based solely on other packages in the
5825distribution. The root of this dependency graph is a small set of
5826@dfn{bootstrap binaries}, provided by the @code{(gnu packages
5827bootstrap)} module. For more information on bootstrapping,
081145cf 5828@pxref{Bootstrapping}.
ef5dd60a 5829
cf4a9129
LC
5830@node Packaging Guidelines
5831@section Packaging Guidelines
ef5dd60a 5832
cf4a9129
LC
5833The GNU distribution is nascent and may well lack some of your favorite
5834packages. This section describes how you can help make the distribution
5835grow. @xref{Contributing}, for additional information on how you can
5836help.
ef5dd60a 5837
cf4a9129
LC
5838Free software packages are usually distributed in the form of
5839@dfn{source code tarballs}---typically @file{tar.gz} files that contain
5840all the source files. Adding a package to the distribution means
5841essentially two things: adding a @dfn{recipe} that describes how to
5842build the package, including a list of other packages required to build
5843it, and adding @dfn{package meta-data} along with that recipe, such as a
5844description and licensing information.
ef5dd60a 5845
cf4a9129
LC
5846In Guix all this information is embodied in @dfn{package definitions}.
5847Package definitions provide a high-level view of the package. They are
5848written using the syntax of the Scheme programming language; in fact,
5849for each package we define a variable bound to the package definition,
5850and export that variable from a module (@pxref{Package Modules}).
5851However, in-depth Scheme knowledge is @emph{not} a prerequisite for
5852creating packages. For more information on package definitions,
081145cf 5853@pxref{Defining Packages}.
ef5dd60a 5854
cf4a9129
LC
5855Once a package definition is in place, stored in a file in the Guix
5856source tree, it can be tested using the @command{guix build} command
5857(@pxref{Invoking guix build}). For example, assuming the new package is
5858called @code{gnew}, you may run this command from the Guix build tree:
ef5dd60a
LC
5859
5860@example
cf4a9129 5861./pre-inst-env guix build gnew --keep-failed
ef5dd60a 5862@end example
ef5dd60a 5863
cf4a9129
LC
5864Using @code{--keep-failed} makes it easier to debug build failures since
5865it provides access to the failed build tree. Another useful
5866command-line option when debugging is @code{--log-file}, to access the
5867build log.
ef5dd60a 5868
cf4a9129
LC
5869If the package is unknown to the @command{guix} command, it may be that
5870the source file contains a syntax error, or lacks a @code{define-public}
5871clause to export the package variable. To figure it out, you may load
5872the module from Guile to get more information about the actual error:
ef5dd60a 5873
cf4a9129
LC
5874@example
5875./pre-inst-env guile -c '(use-modules (gnu packages gnew))'
5876@end example
ef5dd60a 5877
cf4a9129
LC
5878Once your package builds correctly, please send us a patch
5879(@pxref{Contributing}). Well, if you need help, we will be happy to
5880help you too. Once the patch is committed in the Guix repository, the
5881new package automatically gets built on the supported platforms by
2b1cee21 5882@url{http://hydra.gnu.org/jobset/gnu/master, our continuous integration
cf4a9129 5883system}.
ef5dd60a 5884
cf4a9129
LC
5885@cindex substituter
5886Users can obtain the new package definition simply by running
5887@command{guix pull} (@pxref{Invoking guix pull}). When
5888@code{hydra.gnu.org} is done building the package, installing the
5889package automatically downloads binaries from there
5890(@pxref{Substitutes}). The only place where human intervention is
5891needed is to review and apply the patch.
ef5dd60a 5892
ef5dd60a 5893
cf4a9129 5894@menu
ec0339cd
LC
5895* Software Freedom:: What may go into the distribution.
5896* Package Naming:: What's in a name?
5897* Version Numbers:: When the name is not enough.
5898* Python Modules:: Taming the snake.
5899* Perl Modules:: Little pearls.
5900* Fonts:: Fond of fonts.
cf4a9129 5901@end menu
ef5dd60a 5902
cf4a9129
LC
5903@node Software Freedom
5904@subsection Software Freedom
ef5dd60a 5905
cf4a9129 5906@c Adapted from http://www.gnu.org/philosophy/philosophy.html.
c11a6eb1 5907
cf4a9129
LC
5908The GNU operating system has been developed so that users can have
5909freedom in their computing. GNU is @dfn{free software}, meaning that
5910users have the @url{http://www.gnu.org/philosophy/free-sw.html,four
5911essential freedoms}: to run the program, to study and change the program
5912in source code form, to redistribute exact copies, and to distribute
5913modified versions. Packages found in the GNU distribution provide only
5914software that conveys these four freedoms.
c11a6eb1 5915
cf4a9129
LC
5916In addition, the GNU distribution follow the
5917@url{http://www.gnu.org/distros/free-system-distribution-guidelines.html,free
5918software distribution guidelines}. Among other things, these guidelines
5919reject non-free firmware, recommendations of non-free software, and
5920discuss ways to deal with trademarks and patents.
ef5dd60a 5921
cf4a9129
LC
5922Some packages contain a small and optional subset that violates the
5923above guidelines, for instance because this subset is itself non-free
5924code. When that happens, the offending items are removed with
5925appropriate patches or code snippets in the package definition's
5926@code{origin} form (@pxref{Defining Packages}). That way, @code{guix
5927build --source} returns the ``freed'' source rather than the unmodified
5928upstream source.
ef5dd60a 5929
ef5dd60a 5930
cf4a9129
LC
5931@node Package Naming
5932@subsection Package Naming
ef5dd60a 5933
cf4a9129
LC
5934A package has actually two names associated with it:
5935First, there is the name of the @emph{Scheme variable}, the one following
5936@code{define-public}. By this name, the package can be made known in the
5937Scheme code, for instance as input to another package. Second, there is
5938the string in the @code{name} field of a package definition. This name
5939is used by package management commands such as
5940@command{guix package} and @command{guix build}.
ef5dd60a 5941
cf4a9129
LC
5942Both are usually the same and correspond to the lowercase conversion of
5943the project name chosen upstream, with underscores replaced with
5944hyphens. For instance, GNUnet is available as @code{gnunet}, and
5945SDL_net as @code{sdl-net}.
927097ef 5946
cf4a9129 5947We do not add @code{lib} prefixes for library packages, unless these are
081145cf 5948already part of the official project name. But @pxref{Python
cf4a9129
LC
5949Modules} and @ref{Perl Modules} for special rules concerning modules for
5950the Python and Perl languages.
927097ef 5951
1b366ee4 5952Font package names are handled differently, @pxref{Fonts}.
7fec52b7 5953
ef5dd60a 5954
cf4a9129
LC
5955@node Version Numbers
5956@subsection Version Numbers
ef5dd60a 5957
cf4a9129
LC
5958We usually package only the latest version of a given free software
5959project. But sometimes, for instance for incompatible library versions,
5960two (or more) versions of the same package are needed. These require
5961different Scheme variable names. We use the name as defined
5962in @ref{Package Naming}
5963for the most recent version; previous versions use the same name, suffixed
5964by @code{-} and the smallest prefix of the version number that may
5965distinguish the two versions.
ef5dd60a 5966
cf4a9129
LC
5967The name inside the package definition is the same for all versions of a
5968package and does not contain any version number.
ef5dd60a 5969
cf4a9129 5970For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:
ef5dd60a 5971
cf4a9129
LC
5972@example
5973(define-public gtk+
5974 (package
5975 (name "gtk+")
5976 (version "3.9.12")
5977 ...))
5978(define-public gtk+-2
5979 (package
5980 (name "gtk+")
5981 (version "2.24.20")
5982 ...))
5983@end example
5984If we also wanted GTK+ 3.8.2, this would be packaged as
5985@example
5986(define-public gtk+-3.8
5987 (package
5988 (name "gtk+")
5989 (version "3.8.2")
5990 ...))
5991@end example
ef5dd60a 5992
ef5dd60a 5993
cf4a9129
LC
5994@node Python Modules
5995@subsection Python Modules
ef5dd60a 5996
cf4a9129
LC
5997We currently package Python 2 and Python 3, under the Scheme variable names
5998@code{python-2} and @code{python} as explained in @ref{Version Numbers}.
5999To avoid confusion and naming clashes with other programming languages, it
6000seems desirable that the name of a package for a Python module contains
6001the word @code{python}.
ef5dd60a 6002
cf4a9129
LC
6003Some modules are compatible with only one version of Python, others with both.
6004If the package Foo compiles only with Python 3, we name it
6005@code{python-foo}; if it compiles only with Python 2, we name it
6006@code{python2-foo}. If it is compatible with both versions, we create two
6007packages with the corresponding names.
ef5dd60a 6008
cf4a9129
LC
6009If a project already contains the word @code{python}, we drop this;
6010for instance, the module python-dateutil is packaged under the names
6011@code{python-dateutil} and @code{python2-dateutil}.
113daf62 6012
523e4896 6013
cf4a9129
LC
6014@node Perl Modules
6015@subsection Perl Modules
523e4896 6016
cf4a9129
LC
6017Perl programs standing for themselves are named as any other package,
6018using the lowercase upstream name.
6019For Perl packages containing a single class, we use the lowercase class name,
6020replace all occurrences of @code{::} by dashes and prepend the prefix
6021@code{perl-}.
6022So the class @code{XML::Parser} becomes @code{perl-xml-parser}.
6023Modules containing several classes keep their lowercase upstream name and
6024are also prepended by @code{perl-}. Such modules tend to have the word
6025@code{perl} somewhere in their name, which gets dropped in favor of the
6026prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}.
523e4896 6027
523e4896 6028
7fec52b7
AE
6029@node Fonts
6030@subsection Fonts
6031
6032For fonts that are in general not installed by a user for typesetting
6033purposes, or that are distributed as part of a larger software package,
6034we rely on the general packaging rules for software; for instance, this
6035applies to the fonts delivered as part of the X.Org system or fonts that
6036are part of TeX Live.
6037
6038To make it easier for a user to search for fonts, names for other packages
6039containing only fonts are constructed as follows, independently of the
6040upstream package name.
6041
6042The name of a package containing only one font family starts with
6043@code{font-}; it is followed by the foundry name and a dash @code{-}
6044if the foundry is known, and the font family name, in which spaces are
6045replaced by dashes (and as usual, all upper case letters are transformed
6046to lower case).
6047For example, the Gentium font family by SIL is packaged under the name
6048@code{font-sil-gentium}.
6049
6050For a package containing several font families, the name of the collection
6051is used in the place of the font family name.
6052For instance, the Liberation fonts consist of three families,
6053Liberation Sans, Liberation Serif and Liberation Mono.
6054These could be packaged separately under the names
6055@code{font-liberation-sans} and so on; but as they are distributed together
6056under a common name, we prefer to package them together as
6057@code{font-liberation}.
6058
6059In the case where several formats of the same font family or font collection
6060are packaged separately, a short form of the format, prepended by a dash,
6061is added to the package name. We use @code{-ttf} for TrueType fonts,
1b366ee4 6062@code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1
7fec52b7
AE
6063fonts.
6064
6065
b25937e3 6066
cf4a9129
LC
6067@node Bootstrapping
6068@section Bootstrapping
b25937e3 6069
cf4a9129 6070@c Adapted from the ELS 2013 paper.
b25937e3 6071
cf4a9129 6072@cindex bootstrapping
7889394e 6073
cf4a9129
LC
6074Bootstrapping in our context refers to how the distribution gets built
6075``from nothing''. Remember that the build environment of a derivation
6076contains nothing but its declared inputs (@pxref{Introduction}). So
6077there's an obvious chicken-and-egg problem: how does the first package
6078get built? How does the first compiler get compiled? Note that this is
6079a question of interest only to the curious hacker, not to the regular
6080user, so you can shamelessly skip this section if you consider yourself
6081a ``regular user''.
72b9d60d 6082
cf4a9129
LC
6083@cindex bootstrap binaries
6084The GNU system is primarily made of C code, with libc at its core. The
6085GNU build system itself assumes the availability of a Bourne shell and
6086command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and
6087`grep'. Furthermore, build programs---programs that run
6088@code{./configure}, @code{make}, etc.---are written in Guile Scheme
6089(@pxref{Derivations}). Consequently, to be able to build anything at
6090all, from scratch, Guix relies on pre-built binaries of Guile, GCC,
6091Binutils, libc, and the other packages mentioned above---the
6092@dfn{bootstrap binaries}.
72b9d60d 6093
cf4a9129
LC
6094These bootstrap binaries are ``taken for granted'', though we can also
6095re-create them if needed (more on that later).
72b9d60d 6096
cf4a9129 6097@unnumberedsubsec Preparing to Use the Bootstrap Binaries
c79d54fe 6098
cf4a9129
LC
6099@c As of Emacs 24.3, Info-mode displays the image, but since it's a
6100@c large image, it's hard to scroll. Oh well.
6101@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}
523e4896 6102
cf4a9129
LC
6103The figure above shows the very beginning of the dependency graph of the
6104distribution, corresponding to the package definitions of the @code{(gnu
6105packages bootstrap)} module. At this level of detail, things are
6106slightly complex. First, Guile itself consists of an ELF executable,
6107along with many source and compiled Scheme files that are dynamically
6108loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz}
6109tarball shown in this graph. This tarball is part of Guix's ``source''
6110distribution, and gets inserted into the store with @code{add-to-store}
6111(@pxref{The Store}).
2e7b5cea 6112
cf4a9129
LC
6113But how do we write a derivation that unpacks this tarball and adds it
6114to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv}
6115derivation---the first one that gets built---uses @code{bash} as its
6116builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls
6117@code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar},
6118@file{xz}, and @file{mkdir} are statically-linked binaries, also part of
6119the Guix source distribution, whose sole purpose is to allow the Guile
6120tarball to be unpacked.
fb729425 6121
cf4a9129
LC
6122Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning
6123Guile that can be used to run subsequent build programs. Its first task
6124is to download tarballs containing the other pre-built binaries---this
6125is what the @code{.tar.xz.drv} derivations do. Guix modules such as
6126@code{ftp-client.scm} are used for this purpose. The
6127@code{module-import.drv} derivations import those modules in a directory
6128in the store, using the original layout. The
6129@code{module-import-compiled.drv} derivations compile those modules, and
6130write them in an output directory with the right layout. This
6131corresponds to the @code{#:modules} argument of
6132@code{build-expression->derivation} (@pxref{Derivations}).
fb729425 6133
cf4a9129
LC
6134Finally, the various tarballs are unpacked by the
6135derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv},
6136etc., at which point we have a working C tool chain.
fb729425 6137
fb729425 6138
cf4a9129 6139@unnumberedsubsec Building the Build Tools
523e4896 6140
cf4a9129
LC
6141@c TODO: Add a package-level dependency graph generated from (gnu
6142@c packages base).
df2ce343 6143
cf4a9129
LC
6144Bootstrapping is complete when we have a full tool chain that does not
6145depend on the pre-built bootstrap tools discussed above. This
6146no-dependency requirement is verified by checking whether the files of
6147the final tool chain contain references to the @file{/gnu/store}
6148directories of the bootstrap inputs. The process that leads to this
6149``final'' tool chain is described by the package definitions found in
1f6f57df 6150the @code{(gnu packages commencement)} module.
df2ce343 6151
cf4a9129
LC
6152@c See <http://lists.gnu.org/archive/html/gnu-system-discuss/2012-10/msg00000.html>.
6153The first tool that gets built with the bootstrap binaries is
6154GNU Make, which is a prerequisite for all the following packages.
6155From there Findutils and Diffutils get built.
523e4896 6156
cf4a9129
LC
6157Then come the first-stage Binutils and GCC, built as pseudo cross
6158tools---i.e., with @code{--target} equal to @code{--host}. They are
6159used to build libc. Thanks to this cross-build trick, this libc is
6160guaranteed not to hold any reference to the initial tool chain.
4af2447e 6161
cf4a9129
LC
6162From there the final Binutils and GCC are built. GCC uses @code{ld}
6163from the final Binutils, and links programs against the just-built libc.
6164This tool chain is used to build the other packages used by Guix and by
6165the GNU Build System: Guile, Bash, Coreutils, etc.
4af2447e 6166
cf4a9129
LC
6167And voilà! At this point we have the complete set of build tools that
6168the GNU Build System expects. These are in the @code{%final-inputs}
dd164244
MW
6169variable of the @code{(gnu packages commencement)} module, and are
6170implicitly used by any package that uses @code{gnu-build-system}
1f6f57df 6171(@pxref{Build Systems, @code{gnu-build-system}}).
4af2447e 6172
4af2447e 6173
cf4a9129 6174@unnumberedsubsec Building the Bootstrap Binaries
4af2447e 6175
cf4a9129
LC
6176Because the final tool chain does not depend on the bootstrap binaries,
6177those rarely need to be updated. Nevertheless, it is useful to have an
6178automated way to produce them, should an update occur, and this is what
6179the @code{(gnu packages make-bootstrap)} module provides.
4af2447e 6180
cf4a9129
LC
6181The following command builds the tarballs containing the bootstrap
6182binaries (Guile, Binutils, GCC, libc, and a tarball containing a mixture
6183of Coreutils and other basic command-line tools):
4b2615e1 6184
cf4a9129
LC
6185@example
6186guix build bootstrap-tarballs
6187@end example
6188
6189The generated tarballs are those that should be referred to in the
6190@code{(gnu packages bootstrap)} module mentioned at the beginning of
6191this section.
6192
6193Still here? Then perhaps by now you've started to wonder: when do we
6194reach a fixed point? That is an interesting question! The answer is
6195unknown, but if you would like to investigate further (and have
6196significant computational and storage resources to do so), then let us
6197know.
6198
6199@node Porting
6200@section Porting to a New Platform
6201
6202As discussed above, the GNU distribution is self-contained, and
6203self-containment is achieved by relying on pre-built ``bootstrap
6204binaries'' (@pxref{Bootstrapping}). These binaries are specific to an
6205operating system kernel, CPU architecture, and application binary
6206interface (ABI). Thus, to port the distribution to a platform that is
6207not yet supported, one must build those bootstrap binaries, and update
6208the @code{(gnu packages bootstrap)} module to use them on that platform.
6209
6210Fortunately, Guix can @emph{cross compile} those bootstrap binaries.
6211When everything goes well, and assuming the GNU tool chain supports the
6212target platform, this can be as simple as running a command like this
6213one:
6214
6215@example
6216guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs
6217@end example
6218
1c0c417d
LC
6219For this to work, the @code{glibc-dynamic-linker} procedure in
6220@code{(gnu packages bootstrap)} must be augmented to return the right
6221file name for libc's dynamic linker on that platform; likewise,
6222@code{system->linux-architecture} in @code{(gnu packages linux)} must be
6223taught about the new platform.
6224
cf4a9129 6225Once these are built, the @code{(gnu packages bootstrap)} module needs
1c0c417d
LC
6226to be updated to refer to these binaries on the target platform. That
6227is, the hashes and URLs of the bootstrap tarballs for the new platform
6228must be added alongside those of the currently supported platforms. The
6229bootstrap Guile tarball is treated specially: it is expected to be
6230available locally, and @file{gnu-system.am} has rules do download it for
6231the supported architectures; a rule for the new platform must be added
6232as well.
cf4a9129
LC
6233
6234In practice, there may be some complications. First, it may be that the
6235extended GNU triplet that specifies an ABI (like the @code{eabi} suffix
6236above) is not recognized by all the GNU tools. Typically, glibc
6237recognizes some of these, whereas GCC uses an extra @code{--with-abi}
6238configure flag (see @code{gcc.scm} for examples of how to handle this).
6239Second, some of the required packages could fail to build for that
6240platform. Lastly, the generated binaries could be broken for some
6241reason.
4af2447e
LC
6242
6243
9bf3c1a7
LC
6244@c *********************************************************************
6245@node Contributing
6246@chapter Contributing
6247
6248This project is a cooperative effort, and we need your help to make it
5ff3c4b8
PAR
6249grow! Please get in touch with us on @email{guix-devel@@gnu.org} and
6250@code{#guix} on the Freenode IRC network. We welcome ideas, bug
6251reports, patches, and anything that may be helpful to the project. We
6252particularly welcome help on packaging (@pxref{Packaging Guidelines}).
a1ba8475 6253
9bf3c1a7
LC
6254Please see the
6255@url{http://git.savannah.gnu.org/cgit/guix.git/tree/HACKING,
6256@file{HACKING} file} that comes with the Guix source code for practical
6257details about contributions.
6258
c78bd12b 6259
568717fd
LC
6260@c *********************************************************************
6261@node Acknowledgments
6262@chapter Acknowledgments
6263
6264Guix is based on the Nix package manager, which was designed and
4c7ac9aa
LC
6265implemented by Eelco Dolstra, with contributions from other people (see
6266the @file{nix/AUTHORS} file in Guix.) Nix pioneered functional package
568717fd
LC
6267management, and promoted unprecedented features, such as transactional
6268package upgrades and rollbacks, per-user profiles, and referentially
6269transparent build processes. Without this work, Guix would not exist.
6270
6271The Nix-based software distributions, Nixpkgs and NixOS, have also been
6272an inspiration for Guix.
6273
4c7ac9aa
LC
6274GNU@tie{}Guix itself is a collective work with contributions from a
6275number of people. See the @file{AUTHORS} file in Guix for more
6276information on these fine people. The @file{THANKS} file lists people
6277who have helped by reporting bugs, taking care of the infrastructure,
6278providing artwork and themes, making suggestions, and more---thank you!
6279
6280
568717fd
LC
6281@c *********************************************************************
6282@node GNU Free Documentation License
6283@appendix GNU Free Documentation License
6284
6285@include fdl-1.3.texi
6286
6287@c *********************************************************************
6288@node Concept Index
6289@unnumbered Concept Index
6290@printindex cp
6291
a85b83d2
LC
6292@node Programming Index
6293@unnumbered Programming Index
6294@syncodeindex tp fn
6295@syncodeindex vr fn
568717fd
LC
6296@printindex fn
6297
6298@bye
6299
6300@c Local Variables:
6301@c ispell-local-dictionary: "american";
6302@c End: