diff options
author | regnat <rg@regnat.ovh> | 2021-01-26 10:48:41 +0100 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2021-02-23 08:04:03 +0100 |
commit | 6fbf3fe636bc1d9a9aba4bacb2a70191c1d6b1a7 (patch) | |
tree | a98ab8a829322f113b5b74e21c670ab416fed0ce /src/libstore/realisation.hh | |
parent | 35205e2e922952fc0654260a07fc3191c5afc2cc (diff) |
Make the build-hook work with ca derivations
- Pass it the name of the outputs rather than their output paths (as
these don't exist for ca derivations)
- Get the built output paths from the remote builder
- Register the new received realisations
Diffstat (limited to 'src/libstore/realisation.hh')
-rw-r--r-- | src/libstore/realisation.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/realisation.hh b/src/libstore/realisation.hh index 7c91d802a..fc92d3c17 100644 --- a/src/libstore/realisation.hh +++ b/src/libstore/realisation.hh @@ -33,6 +33,8 @@ struct Realisation { GENERATE_CMP(Realisation, me->id, me->outPath); }; +typedef std::map<DrvOutput, Realisation> DrvOutputs; + struct OpaquePath { StorePath path; |