mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-30 17:46:15 +02:00
18 lines
343 B
C++
18 lines
343 B
C++
|
#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,
|
||
|
ATermMap & autoArgs);
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif /* !__COMMON_OPTS_H */
|