2007-01-14 13:32:44 +01:00
|
|
|
#ifndef __COMMON_OPTS_H
|
|
|
|
#define __COMMON_OPTS_H
|
|
|
|
|
|
|
|
#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,
|
2010-04-07 17:47:06 +02:00
|
|
|
Bindings & autoArgs);
|
2007-01-14 13:32:44 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* !__COMMON_OPTS_H */
|