diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-04 07:15:08 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-04 07:15:08 +0100 |
commit | 13f78c557b402422aefc09cc217b001d83f08baa (patch) | |
tree | 09cd9c8708df37bbc9bdfddcc26f20d82320e4b3 /src/libstore/store-api.hh | |
parent | bc34274aae277bb5b05d3e833fbdc0bd30c7250a (diff) |
Merge pull request #9589 from obsidiansystems/floating-content-addressing-derivations-eval-store
Fix building CA derivations with and eval store
(cherry picked from commit dfc0cee7024a082d90a4f68296f55a82dfd52126)
Change-Id: I28feb5a36d4fe75f0ed3e3e2db6eb56b67d0f371
Diffstat (limited to 'src/libstore/store-api.hh')
-rw-r--r-- | src/libstore/store-api.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index 87fb4c04e..d3d7a315e 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -1053,6 +1053,7 @@ const ContentAddress * getDerivationCA(const BasicDerivation & drv); std::map<DrvOutput, StorePath> drvOutputReferences( Store & store, const Derivation & drv, - const StorePath & outputPath); + const StorePath & outputPath, + Store * evalStore = nullptr); } |