about summary refs log blame commit diff
path: root/third_party/nix/src/libexpr/common-eval-args.hh
blob: 9663d40c148cec096b1ef312f433af33f7e8f009 (plain) (tree)
1
2
3
4
5
6
7
8
9







                  
               
 

                                   
 
                                          
 
                     
 

                                              

  
                                               
 
                   
#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);

}  // namespace nix