1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-02 21:51:50 +02:00

Ensure resolved CA derivations are written

so we can link outputs to deriver and thus properly cache.
This commit is contained in:
John Ericson 2020-09-09 19:13:21 +00:00
parent 7fdbb377ba
commit 2741fffa35
2 changed files with 21 additions and 13 deletions

View file

@ -136,6 +136,7 @@ struct Derivation : BasicDerivation
std::optional<BasicDerivation> tryResolve(Store & store);
Derivation() = default;
Derivation(const BasicDerivation & bd) : BasicDerivation(bd) { }
Derivation(BasicDerivation && bd) : BasicDerivation(std::move(bd)) { }
};