diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-07-09 23:41:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-09 23:41:22 -0400 |
commit | 028b26a77f111b8334d1ed4251a39df93b446400 (patch) | |
tree | 578757d44faeec08bc7d0a7eded4c435f18cc6b8 /doc/manual | |
parent | 8d871e18225d39a4c256b5416cc275137b8769b9 (diff) | |
parent | 9fc82de49388a58240234d10893673566432f7ab (diff) |
Merge pull request #8370 from hercules-ci/fetchClosure-input-addressed
`fetchClosure`: input addressed and pure
Diffstat (limited to 'doc/manual')
-rw-r--r-- | doc/manual/src/language/builtins-prefix.md | 2 | ||||
-rw-r--r-- | doc/manual/src/release-notes/rl-next.md | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/doc/manual/src/language/builtins-prefix.md b/doc/manual/src/language/builtins-prefix.md index 35e3dccc3..7b2321466 100644 --- a/doc/manual/src/language/builtins-prefix.md +++ b/doc/manual/src/language/builtins-prefix.md @@ -3,7 +3,7 @@ This section lists the functions built into the Nix language evaluator. All built-in functions are available through the global [`builtins`](./builtin-constants.md#builtins-builtins) constant. -For convenience, some built-ins are can be accessed directly: +For convenience, some built-ins can be accessed directly: - [`derivation`](#builtins-derivation) - [`import`](#builtins-import) diff --git a/doc/manual/src/release-notes/rl-next.md b/doc/manual/src/release-notes/rl-next.md index 8479b166a..139d07188 100644 --- a/doc/manual/src/release-notes/rl-next.md +++ b/doc/manual/src/release-notes/rl-next.md @@ -2,5 +2,7 @@ - [`nix-channel`](../command-ref/nix-channel.md) now supports a `--list-generations` subcommand +* The function [`builtins.fetchClosure`](../language/builtins.md#builtins-fetchClosure) can now fetch input-addressed paths in [pure evaluation mode](../command-ref/conf-file.md#conf-pure-eval), as those are not impure. + - Nix now allows unprivileged/[`allowed-users`](../command-ref/conf-file.md#conf-allowed-users) to sign paths. Previously, only [`trusted-users`](../command-ref/conf-file.md#conf-trusted-users) users could sign paths. |