diff options
Diffstat (limited to 'src/libstore/store.hh')
-rw-r--r-- | src/libstore/store.hh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/libstore/store.hh b/src/libstore/store.hh index 4a37a66322aa..01a971404c5c 100644 --- a/src/libstore/store.hh +++ b/src/libstore/store.hh @@ -66,6 +66,19 @@ void registerValidPath(const Transaction & txn, const Path & path, const Hash & hash, const PathSet & references, const Path & deriver); +struct ValidPathInfo +{ + Path path; + Path deriver; + Hash hash; + PathSet references; +}; + +typedef list<ValidPathInfo> ValidPathInfos; + +void registerValidPaths(const Transaction & txn, + const ValidPathInfos & infos); + /* Throw an exception if `path' is not directly in the Nix store. */ void assertStorePath(const Path & path); |