mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
Fixing an obvious typo in override code. I do not know whether it works correctly after the change, but at least it ca nbe compiled now.
This commit is contained in:
parent
ca07f3e370
commit
b7ff182b6e
1 changed files with 1 additions and 1 deletions
|
@ -200,7 +200,7 @@ LocalNoInline(ATerm expandRec(EvalState & state, ATerm e, ATermList rbnds, ATerm
|
|||
ATermMap overrides;
|
||||
if (eOverrides) {
|
||||
eOverrides = evalExpr(state, eOverrides);
|
||||
queryAllAttrs(overrides, overrides, false);
|
||||
queryAllAttrs(eOverrides, overrides, false);
|
||||
foreach (ATermMap::const_iterator, i, overrides)
|
||||
subs.set(i->key, i->value);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue