nix run: fix "'defaultApp.x86_64-linux' should have type 'derivation'"

This commit is contained in:
Yorick 2022-10-26 10:05:27 +02:00
parent 899878f77a
commit aff6d10934
No known key found for this signature in database
GPG key ID: A36E70F9DC014A15

View file

@ -66,7 +66,9 @@ UnresolvedApp Installable::toApp(EvalState & state)
auto type = cursor->getAttr("type")->getString();
std::string expected = !attrPath.empty() && state.symbols[attrPath[0]] == "apps" ? "app" : "derivation";
std::string expected = !attrPath.empty() &&
(state.symbols[attrPath[0]] == "apps" || state.symbols[attrPath[0]] == "defaultApp")
? "app" : "derivation";
if (type != expected)
throw Error("attribute '%s' should have type '%s'", cursor->getAttrPathStr(), expected);