1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00

* _combineChannels shouldn't be an integer.

This commit is contained in:
Eelco Dolstra 2010-04-16 14:07:52 +00:00
parent 8ca4a001cb
commit 8bb0210fea

View file

@ -153,7 +153,7 @@ static Expr * loadSourceExpr(EvalState & state, const Path & path)
for a user to have a ~/.nix-defexpr directory that includes
some system-wide directory). */
ExprAttrs * attrs = new ExprAttrs;
attrs->attrs[state.symbols.create("_combineChannels")] = new ExprInt(1);
attrs->attrs[state.symbols.create("_combineChannels")] = new ExprList();
getAllExprs(state, path, *attrs);
return attrs;
}