diff options
author | Shea Levy <shea@shealevy.com> | 2018-02-08T16·26-0500 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2018-02-08T17·44-0500 |
commit | 88cd2d41acb994684a3e4ead1b1676019f43b4b6 (patch) | |
tree | 7385aefa5755fd27983f3260b69020acef6de170 /src/libstore/globals.hh | |
parent | f201b7733e22cc236a41093a88cc789239d994bd (diff) |
Add plugins to make Nix more extensible.
All plugins in plugin-files will be dlopened, allowing them to statically construct instances of the various Register* types Nix supports.
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r-- | src/libstore/globals.hh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh index 20ac8fe4e9ae..508084d08acb 100644 --- a/src/libstore/globals.hh +++ b/src/libstore/globals.hh @@ -367,12 +367,19 @@ public: Setting<Strings> allowedUris{this, {}, "allowed-uris", "Prefixes of URIs that builtin functions such as fetchurl and fetchGit are allowed to fetch."}; + + Setting<Paths> pluginFiles{this, {}, "plugin-files", + "Plugins to dynamically load at nix initialization time."}; }; // FIXME: don't use a global variable. extern Settings settings; +/* This should be called after settings are initialized, but before + anything else */ +void initPlugins(); + extern const string nixVersion; |