2010-04-19 10:47:56 +00:00
|
|
|
#ifndef __USER_ENV_H
|
|
|
|
#define __USER_ENV_H
|
|
|
|
|
|
|
|
#include "get-drvs.hh"
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
DrvInfos queryInstalled(EvalState & state, const Path & userEnv);
|
|
|
|
|
2010-04-21 15:08:58 +00:00
|
|
|
bool createUserEnv(EvalState & state, DrvInfos & elems,
|
|
|
|
const Path & profile, bool keepDerivations,
|
|
|
|
const string & lockToken);
|
|
|
|
|
2010-04-19 10:47:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* !__USER_ENV_H */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|