aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/store-api.hh
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2021-05-19 10:35:31 +0200
committerregnat <rg@regnat.ovh>2021-05-26 16:59:09 +0200
commit8c30acc3e896839283a2c96ec97cc0c811e8ad6a (patch)
treeeb8ec43ea857187c5017a9e94e56d66446826477 /src/libstore/store-api.hh
parentaf3afd25eafb7866406aee04ef049121a3e3ffb0 (diff)
Properly track the drvoutput references when building
Diffstat (limited to 'src/libstore/store-api.hh')
-rw-r--r--src/libstore/store-api.hh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh
index f66298991..29af0f495 100644
--- a/src/libstore/store-api.hh
+++ b/src/libstore/store-api.hh
@@ -864,4 +864,9 @@ std::pair<std::string, Store::Params> splitUriAndParams(const std::string & uri)
std::optional<ContentAddress> getDerivationCA(const BasicDerivation & drv);
+std::set<DrvOutput> drvOutputReferences(
+ Store & store,
+ const Derivation & drv,
+ const StorePath & outputPath);
+
}