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:
parent
a8d4707107
commit
503b425690
4 changed files with 8 additions and 8 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue