diff options
Diffstat (limited to 'src/libexpr/common-eval-args.hh')
-rw-r--r-- | src/libexpr/common-eval-args.hh | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/libexpr/common-eval-args.hh b/src/libexpr/common-eval-args.hh deleted file mode 100644 index 03fa226aa..000000000 --- a/src/libexpr/common-eval-args.hh +++ /dev/null @@ -1,27 +0,0 @@ -#pragma once - -#include "args.hh" - -namespace nix { - -class Store; -class EvalState; -class Bindings; - -struct MixEvalArgs : virtual Args -{ - MixEvalArgs(); - - Bindings * getAutoArgs(EvalState & state); - - Strings searchPath; - - std::optional<std::string> evalStoreUrl; - -private: - std::map<std::string, std::string> autoArgs; -}; - -Path lookupFileArg(EvalState & state, std::string_view s); - -} |