mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
26 lines
342 B
C++
26 lines
342 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;
|
|
|
|
private:
|
|
|
|
std::map<std::string, std::string> autoArgs;
|
|
};
|
|
|
|
Path lookupFileArg(EvalState & state, string s);
|
|
|
|
}
|