2012-06-08 21:13:33 +00:00
|
|
|
|
-*- mode: org -*-
|
|
|
|
|
|
2017-09-24 22:05:47 +00:00
|
|
|
|
[[https://www.gnu.org/software/guix/][GNU Guix]] (IPA: /ɡiːks/) is a purely functional package manager, and
|
|
|
|
|
associated free software distribution, for the [[https://www.gnu.org/gnu/gnu.html][GNU system]]. In addition
|
2012-11-25 14:30:03 +00:00
|
|
|
|
to standard package management features, Guix supports transactional
|
|
|
|
|
upgrades and roll-backs, unprivileged package management, per-user
|
|
|
|
|
profiles, and garbage collection.
|
2012-06-01 21:29:55 +00:00
|
|
|
|
|
2017-09-24 22:05:47 +00:00
|
|
|
|
It provides [[https://www.gnu.org/software/guile/][Guile]] Scheme APIs, including a high-level embedded
|
2012-11-24 14:20:05 +00:00
|
|
|
|
domain-specific languages (EDSLs) to describe how packages are to be
|
|
|
|
|
built and composed.
|
2012-06-01 21:29:55 +00:00
|
|
|
|
|
2019-09-04 19:18:11 +00:00
|
|
|
|
GNU Guix can be used on top of an already-installed GNU/Linux distribution, or
|
|
|
|
|
it can be used standalone (we call that “Guix System”).
|
2012-11-24 14:20:05 +00:00
|
|
|
|
|
2017-09-24 22:05:47 +00:00
|
|
|
|
Guix is based on the [[https://nixos.org/nix/][Nix]] package manager.
|
2012-06-08 21:13:33 +00:00
|
|
|
|
|
|
|
|
|
|
2012-12-06 21:54:10 +00:00
|
|
|
|
* Requirements
|
2012-06-08 21:13:33 +00:00
|
|
|
|
|
2020-06-02 12:50:54 +00:00
|
|
|
|
If you are building Guix from source, please see the manual for build
|
|
|
|
|
instructions and requirements, either by running:
|
2012-06-08 21:13:33 +00:00
|
|
|
|
|
2020-06-02 12:50:54 +00:00
|
|
|
|
info -f doc/guix.info "Requirements"
|
2012-06-08 21:13:33 +00:00
|
|
|
|
|
2020-06-02 12:50:54 +00:00
|
|
|
|
or by checking the [[https://guix.gnu.org/manual/en/html_node/Requirements.html][web copy of the manual]].
|
2012-12-06 21:54:10 +00:00
|
|
|
|
|
2013-07-18 22:07:03 +00:00
|
|
|
|
* Installation
|
2012-06-08 21:13:33 +00:00
|
|
|
|
|
2013-07-18 22:07:03 +00:00
|
|
|
|
See the manual for the installation instructions, either by running
|
2012-06-08 21:13:33 +00:00
|
|
|
|
|
2017-01-29 18:16:30 +00:00
|
|
|
|
info -f doc/guix.info "Installation"
|
2012-10-04 22:19:29 +00:00
|
|
|
|
|
2020-06-02 12:50:54 +00:00
|
|
|
|
or by checking the [[https://guix.gnu.org/manual/en/html_node/Installation.html][web copy of the manual]].
|
2012-10-04 22:19:29 +00:00
|
|
|
|
|
2020-10-23 16:46:12 +00:00
|
|
|
|
* Building from Git
|
2012-10-04 22:19:29 +00:00
|
|
|
|
|
2020-10-23 16:46:12 +00:00
|
|
|
|
For information on building Guix from a Git checkout, please see the relevant
|
|
|
|
|
section in the manual, either by running
|
2013-04-25 21:01:05 +00:00
|
|
|
|
|
2020-10-23 16:46:12 +00:00
|
|
|
|
info -f doc/guix.info "Building from Git"
|
2013-11-16 18:40:48 +00:00
|
|
|
|
|
2020-10-23 16:46:12 +00:00
|
|
|
|
or by checking the [[https://guix.gnu.org/manual/en/html_node/Building-from-Git.html][web_copy of the manual]].
|
2013-04-25 21:01:05 +00:00
|
|
|
|
|
2012-06-08 21:13:33 +00:00
|
|
|
|
* How It Works
|
|
|
|
|
|
|
|
|
|
Guix does the high-level preparation of a /derivation/. A derivation is
|
|
|
|
|
the promise of a build; it is stored as a text file under
|
2014-08-26 18:00:40 +00:00
|
|
|
|
=/gnu/store/xxx.drv=. The (guix derivations) module provides the
|
2012-06-08 21:13:33 +00:00
|
|
|
|
`derivation' primitive, as well as higher-level wrappers such as
|
|
|
|
|
`build-expression->derivation'.
|
|
|
|
|
|
2019-09-04 19:18:11 +00:00
|
|
|
|
Guix does remote procedure calls (RPCs) to the build daemon (the =guix-daemon=
|
|
|
|
|
command), which in turn performs builds and accesses to the store on its
|
|
|
|
|
behalf. The RPCs are implemented in the (guix store) module.
|
2012-06-08 21:13:33 +00:00
|
|
|
|
|
|
|
|
|
* Contact
|
|
|
|
|
|
2012-11-24 14:20:05 +00:00
|
|
|
|
GNU Guix is hosted at https://savannah.gnu.org/projects/guix/.
|
|
|
|
|
|
2019-09-04 19:18:11 +00:00
|
|
|
|
Please email <help-guix@gnu.org> for questions and <bug-guix@gnu.org> for bug
|
|
|
|
|
reports; email <gnu-system-discuss@gnu.org> for general issues regarding the
|
|
|
|
|
GNU system.
|
2012-11-24 14:20:05 +00:00
|
|
|
|
|
2021-05-19 23:56:14 +00:00
|
|
|
|
Join #guix on irc.libera.chat.
|
2012-11-24 14:20:05 +00:00
|
|
|
|
|
|
|
|
|
* Guix & Nix
|
|
|
|
|
|
2017-09-24 22:05:47 +00:00
|
|
|
|
GNU Guix is based on [[https://nixos.org/nix/][the Nix package manager]]. It implements the same
|
2012-11-24 14:20:05 +00:00
|
|
|
|
package deployment paradigm, and in fact it reuses some of its code.
|
|
|
|
|
Yet, different engineering decisions were made for Guix, as described
|
|
|
|
|
below.
|
|
|
|
|
|
|
|
|
|
Nix is really two things: a package build tool, implemented by a library
|
|
|
|
|
and daemon, and a special-purpose programming language. GNU Guix relies
|
|
|
|
|
on the former, but uses Scheme as a replacement for the latter.
|
|
|
|
|
|
|
|
|
|
Using Scheme instead of a specific language allows us to get all the
|
|
|
|
|
features and tooling that come with Guile (compiler, debugger, REPL,
|
|
|
|
|
Unicode, libraries, etc.) And it means that we have a general-purpose
|
|
|
|
|
language, on top of which we can have embedded domain-specific languages
|
|
|
|
|
(EDSLs), such as the one used to define packages. This broadens what
|
|
|
|
|
can be done in package recipes themselves, and what can be done around them.
|
|
|
|
|
|
|
|
|
|
Technically, Guix makes remote procedure calls to the ‘nix-worker’
|
|
|
|
|
daemon to perform operations on the store. At the lowest level, Nix
|
|
|
|
|
“derivations” represent promises of a build, stored in ‘.drv’ files in
|
|
|
|
|
the store. Guix produces such derivations, which are then interpreted
|
|
|
|
|
by the daemon to perform the build. Thus, Guix derivations can use
|
|
|
|
|
derivations produced by Nix (and vice versa).
|
|
|
|
|
|
2017-09-24 22:05:47 +00:00
|
|
|
|
With Nix and the [[https://nixos.org/nixpkgs][Nixpkgs]] distribution, package composition happens at
|
2012-11-24 14:20:05 +00:00
|
|
|
|
the Nix language level, but builders are usually written in Bash.
|
|
|
|
|
Conversely, Guix encourages the use of Scheme for both package
|
|
|
|
|
composition and builders. Likewise, the core functionality of Nix is
|
|
|
|
|
written in C++ and Perl; Guix relies on some of the original C++ code,
|
|
|
|
|
but exposes all the API as Scheme.
|
2012-11-18 14:25:01 +00:00
|
|
|
|
|
|
|
|
|
* Related software
|
|
|
|
|
|
2017-09-24 22:05:47 +00:00
|
|
|
|
- [[https://nixos.org][Nix, Nixpkgs, and NixOS]], functional package manager and associated
|
2012-11-18 14:25:01 +00:00
|
|
|
|
software distribution, are the inspiration of Guix
|
2017-09-24 22:05:47 +00:00
|
|
|
|
- [[https://www.gnu.org/software/stow/][GNU Stow]] builds around the idea of one directory per prefix, and a
|
2012-11-18 14:25:01 +00:00
|
|
|
|
symlink tree to create user environments
|
2017-09-24 22:05:47 +00:00
|
|
|
|
- [[https://www.pvv.ntnu.no/~arnej/store/storedoc_6.html][STORE]] shares the same idea
|
2012-11-18 14:25:01 +00:00
|
|
|
|
- [[https://live.gnome.org/OSTree/][GNOME's OSTree]] allows bootable system images to be built from a
|
|
|
|
|
specified set of packages
|
2017-09-24 22:05:47 +00:00
|
|
|
|
- The [[https://www.gnu.org/s/gsrc/][GNU Source Release Collection]] (GSRC) is a user-land software
|
2012-11-18 14:25:01 +00:00
|
|
|
|
distribution; unlike Guix, it relies on core tools available on the
|
|
|
|
|
host system
|