diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2017-01-19T17·21+0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-19T17·21+0100 |
commit | 8af062f372ae5db6a90700641f15d98505b4a839 (patch) | |
tree | 1c4f61be3cca82b3a03255557d9e5f3d87107018 /src/libstore/store-api.hh | |
parent | 21948deed99a3295e4d5666e027a6ca42dc00b40 (diff) | |
parent | 28db29786277ce6790ffb1567f9e679c62737b96 (diff) |
Merge pull request #981 from shlevy/build-remote-c++
build-remote: Implement in C++
Diffstat (limited to 'src/libstore/store-api.hh')
-rw-r--r-- | src/libstore/store-api.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index 789526cc2b70..ec3bf5a6fd83 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -625,6 +625,8 @@ void removeTempRoots(); ref<Store> openStore(const std::string & uri = getEnv("NIX_REMOTE")); +void copyPaths(ref<Store> from, ref<Store> to, const Paths & storePaths); + enum StoreType { tDaemon, tLocal, |