forked from lix-project/lix
da7d8daa77
Requires moving the MixEvalArgs class from libexpr to libcmd because that's where completeFlakeRef is.
28 lines
397 B
C++
28 lines
397 B
C++
#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);
|
|
|
|
}
|