1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-29 14:53:16 +02:00

Properly track the drvoutput references when building

This commit is contained in:
regnat 2021-05-19 10:35:31 +02:00
parent af3afd25ea
commit 8c30acc3e8
3 changed files with 48 additions and 0 deletions

View file

@ -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);
}