mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-27 08:16:14 +02:00
fa7cd5369b
Calling a class an API is a bit redundant...
20 lines
488 B
C++
20 lines
488 B
C++
#pragma once
|
|
|
|
#include "eval.hh"
|
|
|
|
namespace nix {
|
|
|
|
class Store;
|
|
|
|
/* 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);
|
|
|
|
}
|