abo
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/rsync.scm
diff options
context:
space:
mode:
authorJohn Soo <jsoo1@asu.edu>2020-01-15 07:48:52 -0800
committerEfraim Flashner <efraim@flashner.co.il>2020-01-20 16:42:15 +0200
commit28c006321ff838188698bc99e135ca0884714c10 (patch)
treeb7c3ec18e97d0d11b3bf2d6993234cfe4fefce8d /gnu/packages/rsync.scm
parenta9fd04214bddf15702920c8977bd3fdc9f4c225a (diff)
downloadguix-28c006321ff838188698bc99e135ca0884714c10.tar.gz
guix-28c006321ff838188698bc99e135ca0884714c10.zip
gnu: rust-rustc-test-0.3: Correct cargo-inputs.
* gnu/packages/crates-io.scm (rust-rustc-test-0.3)[arguments]: Replace rust-term-0.5 with 0.4 in cargo-inputs. Move rust-rustc-version-0.2 from cargo-development-inputs to cargo-inputs. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/rsync.scm')
0 files changed, 0 insertions, 0 deletions
h 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). 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