forked from lix-project/lix
df552ff53e
Also use std::string_view in a few more places.
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);
|
|
|
|
}
|