1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 12:41:15 +02:00

EvalCache: Revert to using symbols in getAttr()

This commit is contained in:
Eelco Dolstra 2022-04-26 14:01:21 +02:00
parent fab731a9d4
commit 474695975d
6 changed files with 37 additions and 21 deletions

View file

@ -600,7 +600,7 @@ std::tuple<std::string, FlakeRef, InstallableValue::DerivationInfo> InstallableF
auto drvInfo = DerivationInfo {
std::move(drvPath),
attr->getAttr("outputName")->getString()
attr->getAttr(state->sOutputName)->getString()
};
return {attrPath, getLockedFlake()->flake.lockedRef, std::move(drvInfo)};