mirror of
https://github.com/NixOS/nix
synced 2025-06-26 20:01:15 +02:00
Rename nixPath to __nixPath
The name ‘nixPath’ breaks existing code.
This commit is contained in:
parent
2ea2703fe9
commit
3d221a7bb1
3 changed files with 7 additions and 7 deletions
|
@ -710,7 +710,7 @@ static void prim_readFile(EvalState & state, const Pos & pos, Value * * args, Va
|
|||
|
||||
|
||||
/* Find a file in the Nix search path. Used to implement <x> paths,
|
||||
which are desugared to ‘findFile nixPath "x"’. */
|
||||
which are desugared to ‘findFile __nixPath "x"’. */
|
||||
static void prim_findFile(EvalState & state, const Pos & pos, Value * * args, Value & v)
|
||||
{
|
||||
state.forceList(*args[0], pos);
|
||||
|
@ -1472,7 +1472,7 @@ void EvalState::createBaseEnv()
|
|||
mkString(*allocAttr(*v2, symbols.create("prefix")), i.first);
|
||||
v2->attrs->sort();
|
||||
}
|
||||
addConstant("nixPath", v);
|
||||
addConstant("__nixPath", v);
|
||||
|
||||
/* Now that we've added all primops, sort the `builtins' set,
|
||||
because attribute lookups expect it to be sorted. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue