mirror of
https://github.com/NixOS/nix.git
synced 2025-12-16 14:01:05 +01:00
Use the new interface
This commit is contained in:
parent
d564ac1c50
commit
7ef1e3cd14
10 changed files with 72 additions and 72 deletions
|
|
@ -305,8 +305,8 @@ struct InstallableStorePath : Installable
|
|||
if (storePath.isDerivation()) {
|
||||
std::map<std::string, StorePath> outputs;
|
||||
auto drv = store->readDerivation(storePath);
|
||||
for (auto & [name, output] : drv.outputs)
|
||||
outputs.emplace(name, output.path(*store, drv.name));
|
||||
for (auto & i : drv.outputsAndPaths(*store))
|
||||
outputs.emplace(i.first, i.second.second);
|
||||
return {
|
||||
Buildable {
|
||||
.drvPath = storePath,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue