mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02:00
eb7d7780b1
This is needed to avoid this https://github.com/mesonbuild/meson/issues/13774 when we go back to making our subproject directory `src`.
18 lines
666 B
Markdown
18 lines
666 B
Markdown
# Built-ins
|
|
|
|
This section lists the values and functions built into the Nix language evaluator.
|
|
All built-ins are available through the global [`builtins`](#builtins-builtins) constant.
|
|
|
|
Some built-ins are also exposed directly in the global scope:
|
|
|
|
<!-- TODO(@rhendric, #10970): this list is incomplete -->
|
|
|
|
- [`derivation`](#builtins-derivation)
|
|
- [`import`](#builtins-import)
|
|
- [`abort`](#builtins-abort)
|
|
- [`throw`](#builtins-throw)
|
|
|
|
<dl>
|
|
<dt id="builtins-derivation"><a href="#builtins-derivation"><code>derivation <var>attrs</var></code></a></dt>
|
|
<dd><p><var>derivation</var> is described in
|
|
<a href="derivations.md">its own section</a>.</p></dd>
|