forked from lix-project/lix
* Sync with trunk.
This commit is contained in:
commit
32539e41d5
|
@ -108,6 +108,7 @@ EvalState::EvalState()
|
||||||
, sMeta(symbols.create("meta"))
|
, sMeta(symbols.create("meta"))
|
||||||
, sName(symbols.create("name"))
|
, sName(symbols.create("name"))
|
||||||
, sSystem(symbols.create("system"))
|
, sSystem(symbols.create("system"))
|
||||||
|
, sOverrides(symbols.create("__overrides"))
|
||||||
, baseEnv(allocEnv(128))
|
, baseEnv(allocEnv(128))
|
||||||
, baseEnvDispl(0)
|
, baseEnvDispl(0)
|
||||||
, staticBaseEnv(false, 0)
|
, staticBaseEnv(false, 0)
|
||||||
|
@ -428,8 +429,8 @@ void ExprAttrs::eval(EvalState & state, Env & env, Value & v)
|
||||||
environment. */
|
environment. */
|
||||||
foreach (Attrs::iterator, i, attrs) {
|
foreach (Attrs::iterator, i, attrs) {
|
||||||
nix::Attr & a = (*v.attrs)[i->first];
|
nix::Attr & a = (*v.attrs)[i->first];
|
||||||
mkCopy(a.value, env2.values[displ]);
|
mkThunk(a.value, env2, i->second.first);
|
||||||
mkThunk(env2.values[displ++], env2, i->second.first);
|
mkCopy(env2.values[displ++], a.value);
|
||||||
a.pos = &i->second.second;
|
a.pos = &i->second.second;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -443,6 +444,22 @@ void ExprAttrs::eval(EvalState & state, Env & env, Value & v)
|
||||||
a.pos = &i->second;
|
a.pos = &i->second;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* If the rec contains an attribute called `__overrides', then
|
||||||
|
evaluate it, and add the attributes in that set to the rec.
|
||||||
|
This allows overriding of recursive attributes, which is
|
||||||
|
otherwise not possible. (You can use the // operator to
|
||||||
|
replace an attribute, but other attributes in the rec will
|
||||||
|
still reference the original value, because that value has
|
||||||
|
been substituted into the bodies of the other attributes.
|
||||||
|
Hence we need __overrides.) */
|
||||||
|
Bindings::iterator overrides = v.attrs->find(state.sOverrides);
|
||||||
|
if (overrides != v.attrs->end()) {
|
||||||
|
state.forceAttrs(overrides->second.value);
|
||||||
|
foreach (Bindings::iterator, i, *overrides->second.value.attrs) {
|
||||||
|
nix::Attr & a = (*v.attrs)[i->first];
|
||||||
|
mkCopy(a.value, i->second.value);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
|
|
|
@ -183,7 +183,8 @@ public:
|
||||||
|
|
||||||
SymbolTable symbols;
|
SymbolTable symbols;
|
||||||
|
|
||||||
const Symbol sWith, sOutPath, sDrvPath, sType, sMeta, sName, sSystem;
|
const Symbol sWith, sOutPath, sDrvPath, sType, sMeta, sName,
|
||||||
|
sSystem, sOverrides;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
SrcToStore srcToStore;
|
SrcToStore srcToStore;
|
||||||
|
|
Loading…
Reference in a new issue