diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-09-03T13·45+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-09-03T13·45+0200 |
commit | 07a08bddf001271b4b7eff2a119c395f40119966 (patch) | |
tree | 304d714281d8b3021495903ef004763a8dc280bc /src/nix-env | |
parent | c57ed84e286047a9f3c103cf689ae04381c23dad (diff) |
nix-env: Load files in ~/.nix-defexpr on demand
So if you do "nix-env -qa -A nixos", then other channels won't be parsed/evaluated at all.
Diffstat (limited to 'src/nix-env')
-rw-r--r-- | src/nix-env/nix-env.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/nix-env/nix-env.cc b/src/nix-env/nix-env.cc index e4cc66e76194..9f51e919b0e9 100644 --- a/src/nix-env/nix-env.cc +++ b/src/nix-env/nix-env.cc @@ -131,9 +131,12 @@ static void getAllExprs(EvalState & state, continue; } attrs.insert(attrName); - // FIXME: make loading lazy. - Value & v2(*state.allocAttr(v, state.symbols.create(attrName))); - state.evalFile(path2, v2); + /* Load the expression on demand. */ + Value & vFun(*state.allocValue()); + Value & vArg(*state.allocValue()); + state.getBuiltin("import", vFun); + mkString(vArg, path2); + mkApp(*state.allocAttr(v, state.symbols.create(attrName)), vFun, vArg); } else if (S_ISDIR(st.st_mode)) /* `path2' is a directory (with no default.nix in it); |