diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-01-10 11:27:19 -0500 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2023-01-10 11:27:19 -0500 |
commit | da64f026dd7b12d72ffbc15752e8b95707fa1f9f (patch) | |
tree | 80c63ff92aba1820e0f70845efcba0a190ef4838 /src/libcmd/installables.hh | |
parent | 1c98daf6e8bdf771ed3b17c947384fef4ed8d006 (diff) |
Make clear that `StorePathWithOutputs` is a deprecated type
- Add a comment
- Put `OutputsSpec` in a different header (First part of #6815)
- Make a few stray uses of it in new code use `DerivedPath` instead.
Diffstat (limited to 'src/libcmd/installables.hh')
-rw-r--r-- | src/libcmd/installables.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcmd/installables.hh b/src/libcmd/installables.hh index 250cf7e83..9b92cc4be 100644 --- a/src/libcmd/installables.hh +++ b/src/libcmd/installables.hh @@ -2,7 +2,7 @@ #include "util.hh" #include "path.hh" -#include "path-with-outputs.hh" +#include "outputs-spec.hh" #include "derived-path.hh" #include "eval.hh" #include "store-api.hh" @@ -20,7 +20,7 @@ namespace eval_cache { class EvalCache; class AttrCursor; } struct App { - std::vector<StorePathWithOutputs> context; + std::vector<DerivedPath> context; Path program; // FIXME: add args, sandbox settings, metadata, ... }; |