1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-02 21:51:50 +02:00

Enfore the use of properly built paths in libcmd

Replace `DerivedPathWithHints` by a new `BuiltPath` type that serves as
a proof that the corresponding path has been built.
This commit is contained in:
regnat 2021-05-17 08:45:08 +02:00
parent ec613603ba
commit 2105084645
10 changed files with 189 additions and 144 deletions

View file

@ -29,9 +29,9 @@ struct Installable
virtual std::string what() = 0;
virtual BuiltPaths toBuiltPaths() = 0;
virtual DerivedPaths toDerivedPaths() = 0;
BuiltPath toBuiltPath();
DerivedPath toDerivedPath();
App toApp(EvalState & state);
@ -74,7 +74,7 @@ struct InstallableValue : Installable
virtual std::vector<DerivationInfo> toDerivations() = 0;
BuiltPaths toBuiltPaths() override;
DerivedPaths toDerivedPaths() override;
};
struct InstallableFlake : InstallableValue