forked from lix-project/lix
f4ab297b31
`///@file` makes them show up in the internal API dos. A tiny few were missing `#pragma once`.
15 lines
274 B
C++
15 lines
274 B
C++
#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);
|
|
|
|
}
|