* The result of a concatenation with a derivation on the left-hand
side should be a path, I guess. * Handle paths that are in the store but not direct children of the store directory. * Ugh, hack to prevent double context wrapping.
This commit is contained in:
parent
0e705391db
commit
e347033f71
|
@ -267,6 +267,7 @@ string coerceToStringWithContext(EvalState & state,
|
|||
if (a && evalString(state, a) == "derivation") {
|
||||
a = attrs.get(toATerm("outPath"));
|
||||
if (!a) throw TypeError("output path missing from derivation");
|
||||
isPath = true;
|
||||
context = ATinsert(context, e);
|
||||
return evalPath(state, a);
|
||||
}
|
||||
|
|
|
@ -114,7 +114,9 @@ void toString(EvalState & state, Expr e,
|
|||
int n;
|
||||
Expr e2;
|
||||
|
||||
bool isWrapped = false;
|
||||
while (matchContext(e, es, e2)) {
|
||||
isWrapped = true;
|
||||
e = e2;
|
||||
for (ATermIterator i(es); i; ++i)
|
||||
context = ATinsert(context, *i);
|
||||
|
@ -146,7 +148,7 @@ void toString(EvalState & state, Expr e,
|
|||
else if (matchPath(e, s)) {
|
||||
Path path(canonPath(aterm2String(s)));
|
||||
|
||||
if (!isStorePath(path)) {
|
||||
if (!isInStore(path)) {
|
||||
|
||||
if (isDerivation(path))
|
||||
throw EvalError(format("file names are not allowed to end in `%1%'")
|
||||
|
@ -162,11 +164,17 @@ void toString(EvalState & state, Expr e,
|
|||
% path % dstPath);
|
||||
}
|
||||
|
||||
path = dstPath;
|
||||
result += dstPath;
|
||||
context = ATinsert(context, makePath(toATerm(dstPath)));
|
||||
}
|
||||
|
||||
result += path;
|
||||
context = ATinsert(context, makePath(toATerm(path)));
|
||||
else {
|
||||
result += path;
|
||||
/* !!! smells hacky. Check whether this is the Right
|
||||
Thing To Do. */
|
||||
if (!isWrapped)
|
||||
context = ATinsert(context, makePath(toATerm(toStorePath(path))));
|
||||
}
|
||||
}
|
||||
|
||||
else if (matchList(e, es)) {
|
||||
|
|
Loading…
Reference in a new issue