aboutsummaryrefslogtreecommitdiff
path: root/etc/substitutes
diff options
context:
space:
mode:
authorXinglu Chen <public@yoctocell.xyz>2021-06-19 17:50:35 +0200
committerJulien Lepiller <julien@lepiller.eu>2021-06-20 02:13:24 +0200
commit97d3a9f781ac4e436cad4a7c1a59de8f48baec0c (patch)
treea89c912b13f6fee7723374675a0785ac50b1d043 /etc/substitutes
parent376b16e9a180ddef1aca795a3acf2512561976ef (diff)
downloadguix-97d3a9f781ac4e436cad4a7c1a59de8f48baec0c.tar.gz
guix-97d3a9f781ac4e436cad4a7c1a59de8f48baec0c.zip
gnu: ocaml4.07-expect: Switch to default OCaml compiler.
* gnu/packages/ocaml.scm (ocaml4.07-expect): Rename to ‘ocaml-expect’. [arguments]: Use default OCaml compiler. [native-inputs]: Use ‘ocaml-*’ packages instead of ‘ocaml4.07-*’. [propagated-inputs]: Likewise. [description]: Make it a full sentence. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
Diffstat (limited to 'etc/substitutes')
0 files changed, 0 insertions, 0 deletions
, 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). With Nix and the [[https://nixos.org/nixpkgs][Nixpkgs]] distribution, package composition happens at 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. * Related software - [[https://nixos.org][Nix, Nixpkgs, and NixOS]], functional package manager and associated software distribution, are the inspiration of Guix - [[https://www.gnu.org/software/stow/][GNU Stow]] builds around the idea of one directory per prefix, and a symlink tree to create user environments - [[https://www.pvv.ntnu.no/~arnej/store/storedoc_6.html][STORE]] shares the same idea - [[https://live.gnome.org/OSTree/][GNOME's OSTree]] allows bootable system images to be built from a specified set of packages - The [[https://www.gnu.org/s/gsrc/][GNU Source Release Collection]] (GSRC) is a user-land software distribution; unlike Guix, it relies on core tools available on the host system