aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/realisation.hh
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2020-11-10 14:49:25 +0100
committerregnat <rg@regnat.ovh>2021-05-26 16:59:09 +0200
commit7ce0441d806d12bb073047337545e3901404996d (patch)
tree34c2da7138927390153d30a63e8ce7c66395aec3 /src/libstore/realisation.hh
parent4077d55775fa3d178c56640d26722dea737ccfcc (diff)
Add a dependencies field to DrvOutputInfo
Currently never used, nor set but will be useful shortly
Diffstat (limited to 'src/libstore/realisation.hh')
-rw-r--r--src/libstore/realisation.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/realisation.hh b/src/libstore/realisation.hh
index f5049c9e9..1e2808ce3 100644
--- a/src/libstore/realisation.hh
+++ b/src/libstore/realisation.hh
@@ -28,6 +28,8 @@ struct Realisation {
StringSet signatures;
+ std::set<DrvOutput> drvOutputDeps;
+
nlohmann::json toJSON() const;
static Realisation fromJSON(const nlohmann::json& json, const std::string& whence);