diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-08-25T14·31+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-08-25T14·31+0000 |
commit | abec1c000410a1533f9c80357be6061730d8c6aa (patch) | |
tree | 152b41a002b5b4c484be23f85fd16933a11b81dc | |
parent | c4f1c2114b520f5c9d589780dd7662efbfd9cf63 (diff) |
* Evaluate attributes in sorted order for better determinism.
-rw-r--r-- | src/libexpr/get-drvs.cc | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/src/libexpr/get-drvs.cc b/src/libexpr/get-drvs.cc index 55092ea9bb83..84f8ddf9bfb1 100644 --- a/src/libexpr/get-drvs.cc +++ b/src/libexpr/get-drvs.cc @@ -175,19 +175,28 @@ static void getDerivations(EvalState & state, Expr e, nix-env.cc. */ bool combineChannels = drvMap.get(toATerm("_combineChannels")); - for (ATermMap::const_iterator i = drvMap.begin(); i != drvMap.end(); ++i) { - startNest(nest, lvlDebug, - format("evaluating attribute `%1%'") % aterm2String(i->key)); - string pathPrefix2 = addToPath(pathPrefix, aterm2String(i->key)); + /* Consider the attributes in sorted order to get more + deterministic behaviour in nix-env operations (e.g. when + there are names clashes between derivations, the derivation + bound to the attribute with the "lower" name should take + precedence). */ + typedef std::map<string, Expr> AttrsSorted; + AttrsSorted attrsSorted; + foreach (ATermMap::const_iterator, i, drvMap) + attrsSorted[aterm2String(i->key)] = i->value; + + foreach (AttrsSorted::iterator, i, attrsSorted) { + startNest(nest, lvlDebug, format("evaluating attribute `%1%'") % i->first); + string pathPrefix2 = addToPath(pathPrefix, i->first); if (combineChannels) - getDerivations(state, i->value, pathPrefix2, autoArgs, drvs, doneExprs); - else if (getDerivation(state, i->value, pathPrefix2, drvs, doneExprs)) { + getDerivations(state, i->second, pathPrefix2, autoArgs, drvs, doneExprs); + else if (getDerivation(state, i->second, pathPrefix2, drvs, doneExprs)) { /* If the value of this attribute is itself an attribute set, should we recurse into it? => Only if it has a `recurseForDerivations = true' attribute. */ ATermList es; - Expr e = evalExpr(state, i->value), e2; + Expr e = evalExpr(state, i->second), e2; if (matchAttrs(e, es)) { ATermMap attrs(ATgetLength(es)); queryAllAttrs(e, attrs, false); |