1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-30 14:10:59 +01:00
nix/doc/manual/src/glossary.md
Valentin Gagarin 8d9e0b7aed
document the store concept (#9206)
* document the store concept and its purpose

reword the glossary to link to more existing information instead of
repeating it.

move the store documentation to the top of the table of contents, in
front of the Nix language. this will provide a natural place to
document other aspects of the store as well as the various store types.

move the package management section after the Nix language and before
Advanced Topics to follow the pattern to layer more complex concepts on
top of each other.

this structure of the manual will also nudge beginners to learn Nix
bottom-up and hopefully make more likely that they understand underlying
concepts first before delving into complex use cases that may or may not
be easy to implement with what's currently there.

[John adds this note] The sort of beginner who likes to dive straight into reference documentation should prefer this approach. Conversely, the sort of beginner who would prefer the opposite top-down approach of trying to solve problems before they understand everything that is going on is better off reading other tutorial/guide material anyways, and will just "random-access" the reference manual as a last resort. For such random-access the order doesn't matter, so this restructure doesn't make them any worse off.

Co-authored-by: John Ericson <git@JohnEricson.me>
2023-10-25 02:28:35 +00:00

11 KiB
Raw Blame History

Glossary

  • derivation{#gloss-derivation}

    A description of a build task. The result of a derivation is a store object. Derivations are typically specified in Nix expressions using the derivation primitive. These are translated into low-level store derivations (implicitly by nix-env and nix-build, or explicitly by nix-instantiate).

  • store derivation{#gloss-store-derivation}

    A derivation represented as a .drv file in the store. It has a store path, like any store object.

    Example: /nix/store/g946hcz4c8mdvq2g8vxx42z51qb71rvp-git-2.38.1.drv

    See nix derivation show (experimental) for displaying the contents of store derivations.

  • instantiate{#gloss-instantiate}, instantiation

    Translate a derivation into a store derivation.

    See nix-instantiate.

  • realise{#gloss-realise}, realisation

    Ensure a store path is valid.

    This can be achieved by:

    See nix-store --realise for a detailed description of the algorithm.

    See also nix-build and nix build (experimental).

  • [content-addressed derivation]{#gloss-content-addressed-derivation}

    A derivation which has the __contentAddressed attribute set to true.

  • [fixed-output derivation]{#gloss-fixed-output-derivation}

    A derivation which includes the outputHash attribute.

  • store{#gloss-store}

    A collection of store objects, with operations to manipulate that collection. See [Nix Store] for details.

    There are many types of stores. See nix help-stores for a complete list.

    From the perspective of the location where Nix is invoked, the Nix store can be referred to local or remote. Only a local store{#gloss-local-store} exposes a location in the file system of the machine where Nix is invoked that allows access to store objects, typically /nix/store. Local stores can be used for building derivations. See Local Store for details.

  • [chroot store]{#gloss-chroot-store}

    A local store whose canonical path is anything other than /nix/store.

  • [binary cache]{#gloss-binary-cache}

    A binary cache is a Nix store which uses a different format: its metadata and signatures are kept in .narinfo files rather than in a Nix database. This different format simplifies serving store objects over the network, but cannot host builds. Examples of binary caches include S3 buckets and the NixOS binary cache.

  • store path{#gloss-store-path}

    The location of a store object in the file system, i.e., an immediate child of the Nix store directory.

    Example: /nix/store/a040m110amc4h71lds2jmr8qrkj2jhxd-git-2.38.1

  • file system object{#gloss-store-object}

    The Nix data model for representing simplified file system data.

    See File System Object for details.

  • store object{#gloss-store-object}

    Part of the contents of a store.

    A store object consists of a file system object, references to other store objects, and other metadata. It can be referred to by a store path.

    See Store Object for details.

  • [IFD]{#gloss-ifd}

    Import From Derivation

  • [input-addressed store object]{#gloss-input-addressed-store-object}

    A store object produced by building a non-content-addressed, non-fixed-output derivation.

  • [output-addressed store object]{#gloss-output-addressed-store-object}

    A store object whose store path is determined by its contents. This includes derivations, the outputs of content-addressed derivations, and the outputs of fixed-output derivations.

  • [substitute]{#gloss-substitute}

    A substitute is a command invocation stored in the Nix database that describes how to build a store object, bypassing the normal build mechanism (i.e., derivations). Typically, the substitute builds the store object by downloading a pre-built version of the store object from some server.

  • substituter{#gloss-substituter}

    An additional store{#gloss-store} from which Nix can obtain store objects instead of building them. Often the substituter is a binary cache, but any store can serve as substituter.

    See the substituters configuration option for details.

  • [purity]{#gloss-purity}

    The assumption that equal Nix derivations when run always produce the same output. This cannot be guaranteed in general (e.g., a builder can rely on external inputs such as the network or the system time) but the Nix model assumes it.

  • Nix database{#gloss-nix-database}

    An SQlite database to track references between store objects. This is an implementation detail of the local store.

    Default location: /nix/var/nix/db.

  • [Nix expression]{#gloss-nix-expression}

    A high-level description of software packages and compositions thereof. Deploying software using Nix entails writing Nix expressions for your packages. Nix expressions are translated to derivations that are stored in the Nix store. These derivations can then be built.

  • reference{#gloss-reference}

    A store object O is said to have a reference to a store object P if a store path to P appears in the contents of O.

    Store objects can refer to both other store objects and themselves. References from a store object to itself are called self-references. References other than a self-reference must not form a cycle.

  • [reachable]{#gloss-reachable}

    A store path Q is reachable from another store path P if Q is in the closure of the references relation.

  • closure{#gloss-closure}

    The closure of a store path is the set of store paths that are directly or indirectly “reachable” from that store path; that is, its the closure of the path under the references relation. For a package, the closure of its derivation is equivalent to the build-time dependencies, while the closure of its output path is equivalent to its runtime dependencies. For correct deployment it is necessary to deploy whole closures, since otherwise at runtime files could be missing. The command nix-store --query --requisites prints out closures of store paths.

    As an example, if the store object at path P contains a reference to a store object at path Q, then Q is in the closure of P. Further, if Q references R then R is also in the closure of P.

  • output{#gloss-output}

    A store object produced by a derivation. See the outputs argument to the derivation function for details.

  • output path{#gloss-output-path}

    The store path to the output of a derivation.

  • [deriver]{#gloss-deriver}

    The store derivation that produced an output path.

  • validity{#gloss-validity}

    A store path is valid if all store objects in its closure can be read from the store.

    For a local store, this means:

  • [user environment]{#gloss-user-env}

    An automatically generated store object that consists of a set of symlinks to “active” applications, i.e., other store paths. These are generated automatically by nix-env. See profiles.

  • [profile]{#gloss-profile}

    A symlink to the current user environment of a user, e.g., /nix/var/nix/profiles/default.

  • [installable]{#gloss-installable}

    Something that can be realised in the Nix store.

    See installables for nix commands (experimental) for details.

  • [NAR]{#gloss-nar}

    A Nix ARchive. This is a serialisation of a path in the Nix store. It can contain regular files, directories and symbolic links. NARs are generated and unpacked using nix-store --dump and nix-store --restore.

  • []{#gloss-emtpy-set}

    The empty set symbol. In the context of profile history, this denotes a package is not present in a particular version of the profile.

  • [ε]{#gloss-epsilon}

    The epsilon symbol. In the context of a package, this means the version is empty. More precisely, the derivation does not have a version attribute.

  • [string interpolation]{#gloss-string-interpolation}

    Expanding expressions enclosed in ${ } within a string, path, or attribute name.

    See String interpolation for details.

  • [experimental feature]{#gloss-experimental-feature}

    Not yet stabilized functionality guarded by named experimental feature flags. These flags are enabled or disabled with the experimental-features setting.

    See the contribution guide on the purpose and lifecycle of experimental feaures.