forked from lix-project/lix
ea39c98d41
* only the last generation can be lazy * depend on the '--lazy-generation' flag to be set
14 lines
281 B
C++
14 lines
281 B
C++
#pragma once
|
|
|
|
#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, bool lazyGeneration);
|
|
|
|
}
|