mirror of
https://github.com/NixOS/nix
synced 2025-07-02 13:31:48 +02:00
Fix DerivationOutputExtensional name
This commit is contained in:
parent
06a4e15478
commit
a7884970c5
4 changed files with 8 additions and 8 deletions
|
@ -13,7 +13,7 @@ namespace nix {
|
|||
|
||||
/* Abstract syntax of derivations. */
|
||||
|
||||
struct DerivationOutputIntensional
|
||||
struct DerivationOutputExtensional
|
||||
{
|
||||
StorePath path;
|
||||
};
|
||||
|
@ -25,7 +25,7 @@ struct DerivationOutputFixed
|
|||
|
||||
struct DerivationOutput
|
||||
{
|
||||
std::variant<DerivationOutputIntensional, DerivationOutputFixed> output;
|
||||
std::variant<DerivationOutputExtensional, DerivationOutputFixed> output;
|
||||
StorePath path(const Store & store, string drvName) const;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue