about summary refs log tree commit diff
path: root/third_party/nix/src/nix-env/user-env.hh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/src/nix-env/user-env.hh')
-rw-r--r--third_party/nix/src/nix-env/user-env.hh13
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/nix/src/nix-env/user-env.hh b/third_party/nix/src/nix-env/user-env.hh
new file mode 100644
index 0000000000..f188efe9b4
--- /dev/null
+++ b/third_party/nix/src/nix-env/user-env.hh
@@ -0,0 +1,13 @@
+#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);
+
+}