aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/primops.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-03-09 13:36:30 +0100
committerEelco Dolstra <edolstra@gmail.com>2017-03-09 13:36:30 +0100
commit86227390c59cd0f55d0bea77b86338e017c2498a (patch)
tree7628d122bfbc753a93a94dded10271443b46f96d /src/libexpr/primops.cc
parent6a308c7da4a36146eb019c764b0f6dd2a4f57c3f (diff)
parent5f831c10574ae7ec44d0d357a6a371ac55d00593 (diff)
Merge branch 'allow-import-from-derivation' of https://github.com/shlevy/nix
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r--src/libexpr/primops.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc
index 5a570cefb..93097f3d1 100644
--- a/src/libexpr/primops.cc
+++ b/src/libexpr/primops.cc
@@ -59,6 +59,8 @@ void EvalState::realiseContext(const PathSet & context)
drvs.insert(decoded.first + "!" + decoded.second);
}
if (!drvs.empty()) {
+ if (!settings.enableImportFromDerivation)
+ throw EvalError(format("attempted to realize ‘%1%’ during evaluation but 'allow-import-from-derivation' is false") % *(drvs.begin()));
/* For performance, prefetch all substitute info. */
PathSet willBuild, willSubstitute, unknown;
unsigned long long downloadSize, narSize;