aboutsummaryrefslogtreecommitdiff
path: root/src/nix/run.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix/run.hh')
-rw-r--r--src/nix/run.hh11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nix/run.hh b/src/nix/run.hh
new file mode 100644
index 000000000..6180a87dd
--- /dev/null
+++ b/src/nix/run.hh
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "store-api.hh"
+
+namespace nix {
+
+void runProgramInStore(ref<Store> store,
+ const std::string & program,
+ const Strings & args);
+
+}