mirror of
https://github.com/NixOS/nix.git
synced 2025-11-12 21:46:01 +01:00
Check LockedInput::computeStorePath()
This commit is contained in:
parent
b9fb372075
commit
b9f93e7386
3 changed files with 8 additions and 3 deletions
|
|
@ -25,9 +25,9 @@ nlohmann::json LockedInput::toJson() const
|
|||
return json;
|
||||
}
|
||||
|
||||
Path LockedInput::computeStorePath(Store & store) const
|
||||
StorePath LockedInput::computeStorePath(Store & store) const
|
||||
{
|
||||
return store.printStorePath(store.makeFixedOutputPath(true, narHash, "source"));
|
||||
return store.makeFixedOutputPath(true, narHash, "source");
|
||||
}
|
||||
|
||||
LockedInputs::LockedInputs(const nlohmann::json & json)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue