blob: af45d2d85d33f982abca98701a9ffd33da38cd86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
///@file
#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 std::string & lockToken);
}
|