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