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

DerivationOutputExtensional -> DerivationOutputInputAddressed

Thanks @regnat for the great name.
This commit is contained in:
John Ericson 2020-07-12 15:56:20 +00:00
parent a8d4707107
commit 503b425690
4 changed files with 8 additions and 8 deletions

View file

@ -13,7 +13,7 @@ namespace nix {
/* Abstract syntax of derivations. */
struct DerivationOutputExtensional
struct DerivationOutputInputAddressed
{
StorePath path;
};
@ -25,7 +25,7 @@ struct DerivationOutputFixed
struct DerivationOutput
{
std::variant<DerivationOutputExtensional, DerivationOutputFixed> output;
std::variant<DerivationOutputInputAddressed, DerivationOutputFixed> output;
StorePath path(const Store & store, std::string_view drvName) const;
};