forked from lix-project/lix
df552ff53e
Also use std::string_view in a few more places.
14 lines
265 B
C++
14 lines
265 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 std::string & lockToken);
|
|
|
|
}
|