diff options
Diffstat (limited to 'src/libstore/storeexpr.hh')
-rw-r--r-- | src/libstore/storeexpr.hh | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/libstore/storeexpr.hh b/src/libstore/storeexpr.hh index 07676c3ccedb..d8b8b2a96cbf 100644 --- a/src/libstore/storeexpr.hh +++ b/src/libstore/storeexpr.hh @@ -20,12 +20,30 @@ struct Closure ClosureElems elems; }; + +struct DerivationOutput +{ + Path path; + string hashAlgo; /* hash used for expected hash computation */ + string hash; /* expected hash, may be null */ + DerivationOutput() + { + } + DerivationOutput(Path path, string hashAlgo, string hash) + { + this->path = path; + this->hashAlgo = hashAlgo; + this->hash = hash; + } +}; + +typedef map<string, DerivationOutput> DerivationOutputs; typedef map<string, string> StringPairs; struct Derivation { - PathSet outputs; - PathSet inputs; /* Store expressions, not actual inputs */ + DerivationOutputs outputs; /* keyed on symbolic IDs */ + PathSet inputs; /* store expressions, not actual inputs */ string platform; Path builder; Strings args; |