2020-07-30 16:33:22 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
2020-10-09 20:18:08 +00:00
|
|
|
#include "local-fs-store.hh"
|
2020-07-30 16:33:22 +00:00
|
|
|
#include "fs-accessor.hh"
|
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2020-07-30 20:03:57 +00:00
|
|
|
struct CmdBundle : InstallableCommand
|
2020-07-30 16:33:22 +00:00
|
|
|
{
|
2020-07-30 20:03:57 +00:00
|
|
|
std::string bundler = "github:matthewbauer/nix-bundle";
|
2020-07-30 20:18:48 +00:00
|
|
|
std::optional<Path> outLink;
|
2020-07-30 16:33:22 +00:00
|
|
|
|
2020-07-30 20:03:57 +00:00
|
|
|
CmdBundle()
|
2020-07-30 16:33:22 +00:00
|
|
|
{
|
|
|
|
addFlag({
|
2020-07-30 20:03:57 +00:00
|
|
|
.longName = "bundler",
|
2021-01-13 13:18:04 +00:00
|
|
|
.description = fmt("Use a custom bundler instead of the default (`%s`).", bundler),
|
2020-07-30 16:33:22 +00:00
|
|
|
.labels = {"flake-url"},
|
2020-07-30 20:03:57 +00:00
|
|
|
.handler = {&bundler},
|
2020-07-30 16:33:22 +00:00
|
|
|
.completer = {[&](size_t, std::string_view prefix) {
|
|
|
|
completeFlakeRef(getStore(), prefix);
|
|
|
|
}}
|
|
|
|
});
|
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "out-link",
|
|
|
|
.shortName = 'o',
|
2021-01-13 13:18:04 +00:00
|
|
|
.description = "Override the name of the symlink to the build result. It defaults to the base name of the app.",
|
2020-07-30 16:33:22 +00:00
|
|
|
.labels = {"path"},
|
|
|
|
.handler = {&outLink},
|
|
|
|
.completer = completePath
|
|
|
|
});
|
2020-11-21 04:28:49 +00:00
|
|
|
|
2020-07-30 16:33:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
2020-07-30 20:03:57 +00:00
|
|
|
return "bundle an application so that it works outside of the Nix store";
|
2020-07-30 16:33:22 +00:00
|
|
|
}
|
|
|
|
|
2020-12-17 10:45:59 +00:00
|
|
|
std::string doc() override
|
2020-07-30 16:33:22 +00:00
|
|
|
{
|
2020-12-17 10:45:59 +00:00
|
|
|
return
|
|
|
|
#include "bundle.md"
|
|
|
|
;
|
2020-07-30 16:33:22 +00:00
|
|
|
}
|
|
|
|
|
2020-07-31 15:30:12 +00:00
|
|
|
Category category() override { return catSecondary; }
|
|
|
|
|
2020-07-30 16:33:22 +00:00
|
|
|
Strings getDefaultFlakeAttrPaths() override
|
|
|
|
{
|
|
|
|
Strings res{"defaultApp." + settings.thisSystem.get()};
|
|
|
|
for (auto & s : SourceExprCommand::getDefaultFlakeAttrPaths())
|
|
|
|
res.push_back(s);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
Strings getDefaultFlakeAttrPathPrefixes() override
|
|
|
|
{
|
2021-08-21 18:17:05 +00:00
|
|
|
Strings res{"apps." + settings.thisSystem.get() + "."};
|
2020-07-30 16:33:22 +00:00
|
|
|
for (auto & s : SourceExprCommand::getDefaultFlakeAttrPathPrefixes())
|
|
|
|
res.push_back(s);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
|
|
|
auto evalState = getEvalState();
|
|
|
|
|
2021-07-16 14:04:47 +00:00
|
|
|
auto app = installable->toApp(*evalState).resolve(getEvalStore(), store);
|
2020-07-30 16:33:22 +00:00
|
|
|
|
2021-10-31 17:19:53 +00:00
|
|
|
auto [progFlakeRef, progName] = parseFlakeRefWithFragment(installable->what(), absPath("."));
|
|
|
|
const flake::LockFlags lockFlagsProg{ .writeLockFile = false };
|
|
|
|
auto programInstallable = InstallableFlake(this,
|
|
|
|
evalState, std::move(progFlakeRef),
|
|
|
|
Strings{progName == "" ? "defaultPackage" : progName},
|
|
|
|
Strings({"packages."+settings.thisSystem.get()+".","legacyPackages."+settings.thisSystem.get()+"."}), lockFlagsProg);
|
|
|
|
auto val = programInstallable.toValue(*evalState).first;
|
|
|
|
|
2020-07-30 20:03:57 +00:00
|
|
|
auto [bundlerFlakeRef, bundlerName] = parseFlakeRefWithFragment(bundler, absPath("."));
|
2020-07-30 16:33:22 +00:00
|
|
|
const flake::LockFlags lockFlags{ .writeLockFile = false };
|
2021-02-17 16:32:10 +00:00
|
|
|
auto bundler = InstallableFlake(this,
|
2020-07-30 20:03:57 +00:00
|
|
|
evalState, std::move(bundlerFlakeRef),
|
2020-07-30 20:37:05 +00:00
|
|
|
Strings{bundlerName == "" ? "defaultBundler" : bundlerName},
|
|
|
|
Strings({"bundlers."}), lockFlags);
|
2020-07-30 16:33:22 +00:00
|
|
|
|
2022-01-04 16:39:16 +00:00
|
|
|
auto attrs = evalState->buildBindings(2);
|
2020-07-30 16:33:22 +00:00
|
|
|
|
2021-10-31 17:19:53 +00:00
|
|
|
Value & prog = *evalState->allocAttr(*arg, evalState->symbols.create("program"));
|
|
|
|
evalState->mkAttrs(prog,val->attrs->size());
|
|
|
|
for (auto &j : *(val->attrs)){
|
|
|
|
prog.attrs->push_back(j);
|
|
|
|
}
|
|
|
|
prog.attrs->sort();
|
2020-07-30 16:33:22 +00:00
|
|
|
|
2022-01-04 16:39:16 +00:00
|
|
|
attrs.alloc("system").mkString(settings.thisSystem.get());
|
2021-01-13 13:18:04 +00:00
|
|
|
|
2020-07-30 16:33:22 +00:00
|
|
|
auto vRes = evalState->allocValue();
|
2022-01-04 16:39:16 +00:00
|
|
|
evalState->callFunction(
|
|
|
|
*bundler.toValue(*evalState).first,
|
|
|
|
evalState->allocValue()->mkAttrs(attrs),
|
|
|
|
*vRes, noPos);
|
2020-07-30 16:33:22 +00:00
|
|
|
|
|
|
|
if (!evalState->isDerivation(*vRes))
|
2020-07-30 20:03:57 +00:00
|
|
|
throw Error("the bundler '%s' does not produce a derivation", bundler.what());
|
2020-07-30 16:33:22 +00:00
|
|
|
|
2020-09-18 11:10:42 +00:00
|
|
|
auto attr1 = vRes->attrs->get(evalState->sDrvPath);
|
2020-07-30 20:18:48 +00:00
|
|
|
if (!attr1)
|
|
|
|
throw Error("the bundler '%s' does not produce a derivation", bundler.what());
|
2020-07-30 16:33:22 +00:00
|
|
|
|
|
|
|
PathSet context2;
|
2020-07-30 20:18:48 +00:00
|
|
|
StorePath drvPath = store->parseStorePath(evalState->coerceToPath(*attr1->pos, *attr1->value, context2));
|
2020-07-30 16:33:22 +00:00
|
|
|
|
2020-09-18 11:10:42 +00:00
|
|
|
auto attr2 = vRes->attrs->get(evalState->sOutPath);
|
2020-07-30 20:18:48 +00:00
|
|
|
if (!attr2)
|
2020-07-30 20:03:57 +00:00
|
|
|
throw Error("the bundler '%s' does not produce a derivation", bundler.what());
|
2020-07-30 16:33:22 +00:00
|
|
|
|
2020-07-30 20:18:48 +00:00
|
|
|
StorePath outPath = store->parseStorePath(evalState->coerceToPath(*attr2->pos, *attr2->value, context2));
|
2020-07-30 16:33:22 +00:00
|
|
|
|
2021-04-05 13:48:18 +00:00
|
|
|
store->buildPaths({ DerivedPath::Built { drvPath } });
|
2020-07-30 16:33:22 +00:00
|
|
|
|
|
|
|
auto outPathS = store->printStorePath(outPath);
|
|
|
|
|
2020-07-30 20:18:48 +00:00
|
|
|
if (!outLink)
|
2020-07-30 16:33:22 +00:00
|
|
|
outLink = baseNameOf(app.program);
|
|
|
|
|
2020-09-03 09:26:36 +00:00
|
|
|
store.dynamic_pointer_cast<LocalFSStore>()->addPermRoot(outPath, absPath(*outLink));
|
2020-07-30 16:33:22 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-07-30 20:03:57 +00:00
|
|
|
static auto r2 = registerCommand<CmdBundle>("bundle");
|