mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-12 05:07:17 +02:00
16 lines
784 B
Markdown
16 lines
784 B
Markdown
# Built-in Functions
|
|
|
|
This section lists the functions built into the Nix expression
|
|
evaluator. (The built-in function `derivation` is discussed above.)
|
|
Some built-ins, such as `derivation`, are always in scope of every Nix
|
|
expression; you can just access them right away. But to prevent
|
|
polluting the namespace too much, most built-ins are not in
|
|
scope. Instead, you can access them through the `builtins` built-in
|
|
value, which is a set that contains all built-in functions and values.
|
|
For instance, `derivation` is also available as `builtins.derivation`.
|
|
|
|
<dl>
|
|
<dt><code>derivation <var>attrs</var></code>;
|
|
<code>builtins.derivation <var>attrs</var></code></dt>
|
|
<dd><p><var>derivation</var> is described in
|
|
<a href="derivations.md">its own section</a>.</p></dd>
|