fe2d869e04
$out/manifest.nix rather than as an ATerm. (Hm, I thought I committed this two days ago...)
20 lines
321 B
C++
20 lines
321 B
C++
#ifndef __USER_ENV_H
|
|
#define __USER_ENV_H
|
|
|
|
#include "get-drvs.hh"
|
|
|
|
namespace nix {
|
|
|
|
DrvInfos queryInstalled(EvalState & state, const Path & userEnv);
|
|
|
|
bool createUserEnv(EvalState & state, DrvInfos & elems,
|
|
const Path & profile, bool keepDerivations,
|
|
const string & lockToken);
|
|
|
|
}
|
|
|
|
#endif /* !__USER_ENV_H */
|
|
|
|
|
|
|
|
|