1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libexpr/common-opts.hh

21 lines
491 B
C++
Raw Normal View History

#pragma once
#include "eval.hh"
namespace nix {
class StoreAPI;
/* Some common option parsing between nix-env and nix-instantiate. */
2014-08-12 21:50:44 -04:00
bool parseAutoArgs(Strings::iterator & i,
const Strings::iterator & argsEnd, std::map<string, string> & res);
Bindings * evalAutoArgs(EvalState & state, std::map<string, string> & in);
2014-08-12 21:50:44 -04:00
bool parseSearchPathArg(Strings::iterator & i,
const Strings::iterator & argsEnd, Strings & searchPath);
Path lookupFileArg(EvalState & state, string s);
}