about summary refs log blame commit diff
path: root/src/libexpr/common-opts.hh
blob: be0f40202430f5f37252c69cfde00710b198ee98 (plain) (tree)
1
2
3
4
5
6
7
8
9
            


                  


                                                                     

                                                                       
 
                                                                          

                                              
                                                             
 

                                                
 
#pragma once

#include "eval.hh"

namespace nix {

/* Some common option parsing between nix-env and nix-instantiate. */
bool parseAutoArgs(Strings::iterator & i,
    const Strings::iterator & argsEnd, std::map<string, string> & res);

Bindings * evalAutoArgs(EvalState & state, std::map<string, string> & in);

bool parseSearchPathArg(Strings::iterator & i,
    const Strings::iterator & argsEnd, Strings & searchPath);

Path lookupFileArg(EvalState & state, string s);

}