mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
#include "installables.hh"
|
|
#include "store-api.hh"
|
|
#include "eval-inline.hh"
|
|
#include "eval-cache.hh"
|
|
#include "names.hh"
|
|
|
|
namespace nix {
|
|
|
|
App Installable::toApp(EvalState & state)
|
|
{
|
|
auto [cursor, attrPath] = getCursor(state);
|
|
|
|
auto type = cursor->getAttr("type")->getString();
|
|
|
|
if (type == "app") {
|
|
auto [program, context] = cursor->getAttr("program")->getStringWithContext();
|
|
|
|
if (!state.store->isInStore(program))
|
|
throw Error("app program '%s' is not in the Nix store", program);
|
|
|
|
std::vector<StorePathWithOutputs> context2;
|
|
for (auto & [path, name] : context)
|
|
context2.push_back({state.store->parseStorePath(path), {name}});
|
|
|
|
return App {
|
|
.context = std::move(context2),
|
|
.program = program,
|
|
};
|
|
}
|
|
|
|
else if (type == "derivation") {
|
|
auto drvPath = cursor->forceDerivation();
|
|
auto outPath = cursor->getAttr(state.sOutPath)->getString();
|
|
auto outputName = cursor->getAttr(state.sOutputName)->getString();
|
|
auto name = cursor->getAttr(state.sName)->getString();
|
|
return App {
|
|
.context = { { drvPath, {outputName} } },
|
|
.program = outPath + "/bin/" + DrvName(name).name,
|
|
};
|
|
}
|
|
|
|
else
|
|
throw Error("attribute '%s' has unsupported type '%s'", attrPath, type);
|
|
}
|
|
|
|
}
|