about summary refs log tree commit diff
path: root/src/libstore/globals.hh
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2014-06-24T14·50-0400
committerShea Levy <shea@shealevy.com>2014-06-24T14·50-0400
commitd62f46e500958bc97ae6837911e27c20a47cc181 (patch)
tree74d8e8f480979061d1b1b09198fa671f774f7af9 /src/libstore/globals.hh
parent5cd022d6c099c583c0494bdacd06f4eb32661135 (diff)
Only add the importNative primop if the allow-arbitrary-code-during-evaluation option is true (default false)
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r--src/libstore/globals.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh
index 65a6c388b8..8dd59a9c79 100644
--- a/src/libstore/globals.hh
+++ b/src/libstore/globals.hh
@@ -200,6 +200,9 @@ struct Settings {
     /* A list of URL prefixes that can return Nix build logs. */
     Strings logServers;
 
+    /* Whether the importNative primop should be enabled */
+    bool enableImportNative;
+
 private:
     SettingsMap settings, overrides;