mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
reword to avoid saying "build"
derivations are about data transformation, so the term "build" does not add any information. there was also some feedback that "build task" is not more helpful than "derivation" if you have no prior experience with Nix or build systems, while existing associations may be misleading.
This commit is contained in:
parent
17884f54d1
commit
5e4734a08b
1 changed files with 2 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
||||||
# Derivations
|
# Derivations
|
||||||
|
|
||||||
The most important built-in function is `derivation`, which is used to describe a single derivation:
|
The most important built-in function is `derivation`, which is used to describe a single derivation:
|
||||||
a build task to run a process on precisely defined input files and repeatably produce output files at uniquely determined file system paths.
|
a specification for running an executable on precisely defined input files to repeatably produce output files at uniquely determined file system paths.
|
||||||
|
|
||||||
It takes as input an attribute set, the attributes of which specify the inputs to the build.
|
It takes as input an attribute set, the attributes of which specify the inputs to the process.
|
||||||
It outputs an attribute set, and produces a [store derivation](@docroot@/glossary.md#gloss-store-derivation) as a side effect of evaluation.
|
It outputs an attribute set, and produces a [store derivation](@docroot@/glossary.md#gloss-store-derivation) as a side effect of evaluation.
|
||||||
|
|
||||||
<!-- FIXME: add a section on output attributes -->
|
<!-- FIXME: add a section on output attributes -->
|
||||||
|
|
Loading…
Reference in a new issue