mirror of
https://github.com/NixOS/nix.git
synced 2025-11-25 19:51:00 +01:00
17 lines
452 B
C++
17 lines
452 B
C++
#pragma once
|
|
|
|
#include "eval.hh"
|
|
|
|
namespace nix {
|
|
|
|
/* Some common option parsing between nix-env and nix-instantiate. */
|
|
bool parseOptionArg(const string & arg, Strings::iterator & i,
|
|
const Strings::iterator & argsEnd, EvalState & state,
|
|
Bindings & autoArgs);
|
|
|
|
bool parseSearchPathArg(const string & arg, Strings::iterator & i,
|
|
const Strings::iterator & argsEnd, EvalState & state);
|
|
|
|
Path lookupFileArg(EvalState & state, string s);
|
|
|
|
}
|