blob: 6111b21c353ddfb03c79723eca5154b0a21b9992 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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);
} // namespace nix
|