diff options
author | Maximilian Bosch <maximilian@mbosch.me> | 2021-05-13 16:11:56 +0200 |
---|---|---|
committer | Maximilian Bosch <maximilian@mbosch.me> | 2021-06-22 19:15:57 +0200 |
commit | f1e281c4fe1263a0c848bc8aaf57a0e61a99fa93 (patch) | |
tree | 0441e2eb826aad0530f7c6522a355ad332b9581f /src/libstore/parsed-derivations.hh | |
parent | 447928bdb55d160617387e7ac5954f9a8f36004b (diff) |
Split shell & json creation for build environments with structured attrs
Diffstat (limited to 'src/libstore/parsed-derivations.hh')
-rw-r--r-- | src/libstore/parsed-derivations.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/parsed-derivations.hh b/src/libstore/parsed-derivations.hh index 4b8b8c8ff..37af36630 100644 --- a/src/libstore/parsed-derivations.hh +++ b/src/libstore/parsed-derivations.hh @@ -39,7 +39,8 @@ public: bool substitutesAllowed() const; - std::optional<StructuredAttrsWithShellRC> generateStructuredAttrs(std::optional<StringMap> inputRewrites, Store & store, const StorePathSet & inputPaths); + std::optional<nlohmann::json> prepareStructuredAttrs(std::optional<StringMap> inputRewrites, Store & store, const StorePathSet & inputPaths); + std::string writeStructuredAttrsShell(nlohmann::json & json); }; } |