mirror of
https://github.com/NixOS/nix
synced 2025-07-08 15:13:55 +02:00
Add constant ‘nixPath’
It contains the Nix expression search path as a list of { prefix, path } sets, e.g. [ { path = "/nix/var/nix/profiles/per-user/root/channels/nixos"; prefix = ""; } { path = "/etc/nixos/configuration.nix"; prefix = "nixos-config"; } { path = "/home/eelco/Dev/nix/inst/share/nix/corepkgs"; prefix = "nix"; } ]
This commit is contained in:
parent
c273c15cb1
commit
a8edf185a9
3 changed files with 20 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
assert builtins.pathExists <nix/buildenv.nix>;
|
||||
with import ./lib.nix;
|
||||
with builtins;
|
||||
|
||||
assert pathExists <nix/buildenv.nix>;
|
||||
|
||||
assert length nixPath == 3;
|
||||
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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue