mirror of
https://github.com/NixOS/nix
synced 2025-07-08 15:13:55 +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
|
@ -3,9 +3,9 @@ with builtins;
|
|||
|
||||
assert pathExists <nix/buildenv.nix>;
|
||||
|
||||
assert length nixPath == 6;
|
||||
assert length (filter (x: x.prefix == "nix") nixPath) == 1;
|
||||
assert length (filter (x: baseNameOf x.path == "dir4") nixPath) == 1;
|
||||
assert length __nixPath == 6;
|
||||
assert length (filter (x: x.prefix == "nix") __nixPath) == 1;
|
||||
assert length (filter (x: baseNameOf x.path == "dir4") __nixPath) == 1;
|
||||
|
||||
import <a.nix> + import <b.nix> + import <c.nix> + import <dir5/c.nix>
|
||||
+ (let nixPath = [ { path = ./dir2; } { path = ./dir1; } ]; in import <a.nix>)
|
||||
+ (let __nixPath = [ { path = ./dir2; } { path = ./dir1; } ]; in import <a.nix>)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue