diff options
author | Ryan Lahfa <tvl@lahfa.xyz> | 2024-03-25T00·25+0100 |
---|---|---|
committer | raitobezarius <tvl@lahfa.xyz> | 2024-04-04T17·24+0000 |
commit | e7af8e0d62603f5fdf85307dc57b2c9599aa1936 (patch) | |
tree | 57f8f4e4c5036b77c42b47549c3f966c5743d089 /tvix/eval/docs/builtins.md | |
parent | e9a23bb4782615722374e7bec643cba669a492bc (diff) |
feat(tvix/eval): implement `appendContext` r/7851
`appendContext s ctx` will just append a user-crafted context attrs to `s`. The most important part of this builtin is to perform all the relevant invariant validations to avoid letting the user craft invalid contexts which can never be built, e.g. invalid store paths, inexistent derivations, etc. This version is incomplete and full of TODOs, but passes all the Nix's context strings tests, so we turn them on. Change-Id: I625dc5e7c4f5b784f078b390f04b0ee5a8d65a7c Signed-off-by: Ryan Lahfa <tvl@lahfa.xyz> Reviewed-on: https://cl.tvl.fyi/c/depot/+/11263 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/docs/builtins.md')
-rw-r--r-- | tvix/eval/docs/builtins.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/docs/builtins.md b/tvix/eval/docs/builtins.md index 4e09e0f9e600..dba4c48c65e1 100644 --- a/tvix/eval/docs/builtins.md +++ b/tvix/eval/docs/builtins.md @@ -24,7 +24,7 @@ The `impl` column indicates implementation status in tvix: | addErrorContext | false | ? | | context | | all | false | 2 | true | | | any | false | 2 | true | | -| appendContext | false | ? | | context | +| appendContext | false | ? | | | | attrNames | false | 1 | true | | | attrValues | false | | true | | | baseNameOf | true | | | | |