diff options
Diffstat (limited to 'src/libexpr')
-rw-r--r-- | src/libexpr/eval-settings.hh | 4 | ||||
-rw-r--r-- | src/libexpr/primops/fetchClosure.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/libexpr/eval-settings.hh b/src/libexpr/eval-settings.hh index 4674acda2..64c74c4b9 100644 --- a/src/libexpr/eval-settings.hh +++ b/src/libexpr/eval-settings.hh @@ -71,8 +71,8 @@ struct EvalSettings : Config Setting<bool> enableImportFromDerivation{ this, true, "allow-import-from-derivation", R"( - By default, Nix allows you to `import` from a derivation, allowing - building at evaluation time. With this option set to false, Nix will + By default, Lix allows you to `import` from a derivation, allowing + building at evaluation time. With this option set to false, Lix will throw an error when evaluating an expression that uses this feature, allowing users to ensure their evaluation will not require any builds to take place. diff --git a/src/libexpr/primops/fetchClosure.cc b/src/libexpr/primops/fetchClosure.cc index 3804db6eb..a736957eb 100644 --- a/src/libexpr/primops/fetchClosure.cc +++ b/src/libexpr/primops/fetchClosure.cc @@ -51,7 +51,7 @@ static void runFetchClosureWithRewrite(EvalState & state, const PosIdx pos, Stor throw Error({ .msg = HintFmt( "The 'toPath' value '%s' is input-addressed, so it can't possibly be the result of rewriting to a content-addressed path.\n\n" - "Set 'toPath' to an empty string to make Nix report the correct content-addressed path.", + "Set 'toPath' to an empty string to make Lix report the correct content-addressed path.", state.store->printStorePath(toPath)), .pos = state.positions[pos] }); @@ -271,7 +271,7 @@ static RegisterPrimOp primop_fetchClosure({ ``` It is possible to fetch an [input-addressed store path](@docroot@/glossary.md#gloss-input-addressed-store-object) and return it as is. - However, this is the least preferred way of invoking `fetchClosure`, because it requires that the input-addressed paths are trusted by the Nix configuration. + However, this is the least preferred way of invoking `fetchClosure`, because it requires that the input-addressed paths are trusted by the Lix configuration. **`builtins.storePath`** |