diff options
author | Florian Klink <flokli@flokli.de> | 2024-02-18T09·57+0700 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-02-19T15·52+0000 |
commit | d991548ea2fcd44efae089efbd51c97edea2a89b (patch) | |
tree | 0692e6c27bed36f657706e1740d4b8a27757cbb8 | |
parent | abe92e38c218824a70e6b71c35a9c4500d430030 (diff) |
fix(tvix/docs): update builder magic string r/7554
It's `builtin:fetchurl`, not `builtins:fetchurl`. Change-Id: I2e90fce5feecc75257a5156aee12e0737a525175 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10961 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: aspen <root@gws.fyi>
-rw-r--r-- | tvix/docs/differences-drv-paths.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/docs/differences-drv-paths.md b/tvix/docs/differences-drv-paths.md index 7c811d5cbfef..e93131aa57e2 100644 --- a/tvix/docs/differences-drv-paths.md +++ b/tvix/docs/differences-drv-paths.md @@ -21,7 +21,7 @@ hash. For example, bootstrap sources that are downloaded early are fetched using a special "builder hack", in which the `builder` field of the derivation is -populated with the magic string `builtins:fetchurl` and the builder itself will +populated with the magic string `builtin:fetchurl` and the builder itself will perform a fetch, with everything looking like a normal derivation to the user. These bootstrap sources are later on defined *again*, once `curl`is available, |