aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/make-content-addressed.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/make-content-addressed.hh')
-rw-r--r--src/libstore/make-content-addressed.hh12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/libstore/make-content-addressed.hh b/src/libstore/make-content-addressed.hh
new file mode 100644
index 000000000..c4a66ed41
--- /dev/null
+++ b/src/libstore/make-content-addressed.hh
@@ -0,0 +1,12 @@
+#pragma once
+
+#include "store-api.hh"
+
+namespace nix {
+
+std::map<StorePath, StorePath> makeContentAddressed(
+ Store & srcStore,
+ Store & dstStore,
+ const StorePathSet & storePaths);
+
+}