mirror of
https://github.com/NixOS/nix
synced 2025-06-27 00:11:17 +02:00
FileSystemHash -> DerivationOutputHash
This commit is contained in:
parent
517f5980e2
commit
237d88c97e
4 changed files with 15 additions and 15 deletions
|
@ -776,7 +776,7 @@ static void prim_derivationStrict(EvalState & state, const Pos & pos, Value * *
|
|||
if (!jsonObject) drv.env["out"] = state.store->printStorePath(outPath);
|
||||
drv.outputs.insert_or_assign("out", DerivationOutput {
|
||||
.path = std::move(outPath),
|
||||
.hash = FileSystemHash { ingestionMethod, std::move(h) },
|
||||
.hash = DerivationOutputHash { ingestionMethod, std::move(h) },
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -792,7 +792,7 @@ static void prim_derivationStrict(EvalState & state, const Pos & pos, Value * *
|
|||
drv.outputs.insert_or_assign(i,
|
||||
DerivationOutput {
|
||||
.path = StorePath::dummy,
|
||||
.hash = std::optional<FileSystemHash> {},
|
||||
.hash = std::optional<DerivationOutputHash> {},
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -804,7 +804,7 @@ static void prim_derivationStrict(EvalState & state, const Pos & pos, Value * *
|
|||
drv.outputs.insert_or_assign(i,
|
||||
DerivationOutput {
|
||||
.path = std::move(outPath),
|
||||
.hash = std::optional<FileSystemHash>(),
|
||||
.hash = std::optional<DerivationOutputHash>(),
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue