diff options
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r-- | src/libexpr/primops.cc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 0f62653b0e9c..7776a38d6528 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -43,8 +43,15 @@ static Expr primImport(EvalState & state, const ATermVector & args) { PathSet context; Path path = coerceToPath(state, args[0], context); - - /* !!! build the derivations in context */ + + for (PathSet::iterator i = context.begin(); i != context.end(); ++i) { + assert(isStorePath(*i)); + if (!isValidPath(*i)) + throw EvalError(format("cannot import `%1%', since path `%2%' is not valid") + % path % *i); + if (isDerivation(*i)) + buildDerivations(singleton<PathSet>(*i)); + } return evalFile(state, path); } |