mirror of
https://github.com/NixOS/nix
synced 2025-06-27 08:31:16 +02:00
Fix DerivationOutputExtensional name
This commit is contained in:
parent
06a4e15478
commit
a7884970c5
4 changed files with 8 additions and 8 deletions
|
@ -798,7 +798,7 @@ static void prim_derivationStrict(EvalState & state, const Pos & pos, Value * *
|
|||
if (!jsonObject) drv.env[i] = "";
|
||||
drv.outputs.insert_or_assign(i,
|
||||
DerivationOutput {
|
||||
.output = DerivationOutputIntensional {
|
||||
.output = DerivationOutputExtensional {
|
||||
.path = StorePath::dummy,
|
||||
},
|
||||
});
|
||||
|
@ -811,7 +811,7 @@ static void prim_derivationStrict(EvalState & state, const Pos & pos, Value * *
|
|||
if (!jsonObject) drv.env[i] = state.store->printStorePath(outPath);
|
||||
drv.outputs.insert_or_assign(i,
|
||||
DerivationOutput {
|
||||
.output = DerivationOutputIntensional {
|
||||
.output = DerivationOutputExtensional {
|
||||
.path = std::move(outPath),
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue