nix-super/src/nix/build.cc

90 lines
2.8 KiB
C++
Raw Normal View History

#include "eval.hh"
#include "command.hh"
#include "common-args.hh"
#include "shared.hh"
#include "store-api.hh"
#include "local-fs-store.hh"
#include <nlohmann/json.hpp>
using namespace nix;
struct CmdBuild : InstallablesCommand, MixDryRun, MixJSON, MixProfile
{
Path outLink = "result";
BuildMode buildMode = bmNormal;
CmdBuild()
{
2020-05-04 23:40:19 +03:00
addFlag({
.longName = "out-link",
.shortName = 'o',
.description = "Use *path* as prefix for the symlinks to the build results. It defaults to `result`.",
2020-05-04 23:40:19 +03:00
.labels = {"path"},
.handler = {&outLink},
2020-05-10 22:35:07 +03:00
.completer = completePath
2020-05-04 23:40:19 +03:00
});
2020-05-04 23:40:19 +03:00
addFlag({
.longName = "no-link",
.description = "Do not create symlinks to the build results.",
2020-05-04 23:40:19 +03:00
.handler = {&outLink, Path("")},
});
addFlag({
.longName = "rebuild",
.description = "Rebuild an already built package and compare the result to the existing store paths.",
.handler = {&buildMode, bmCheck},
});
}
std::string description() override
{
return "build a derivation or fetch a store path";
}
2020-12-08 15:19:36 +02:00
std::string doc() override
2017-09-07 21:14:04 +03:00
{
2020-12-08 15:19:36 +02:00
return
#include "build.md"
;
2017-09-07 21:14:04 +03:00
}
void run(ref<Store> store) override
{
auto buildables = build(
getEvalStore(), store,
dryRun ? Realise::Derivation : Realise::Outputs,
installables, buildMode);
if (json) logger->cout("%s", derivedPathsWithHintsToJSON(buildables, store).dump());
if (dryRun) return;
if (outLink != "")
if (auto store2 = store.dynamic_pointer_cast<LocalFSStore>())
2021-01-21 11:29:51 +02:00
for (const auto & [_i, buildable] : enumerate(buildables)) {
auto i = _i;
std::visit(overloaded {
[&](const BuiltPath::Opaque & bo) {
std::string symlink = outLink;
if (i) symlink += fmt("-%d", i);
2020-09-03 12:26:36 +03:00
store2->addPermRoot(bo.path, absPath(symlink));
},
[&](const BuiltPath::Built & bfd) {
for (auto & output : bfd.outputs) {
std::string symlink = outLink;
if (i) symlink += fmt("-%d", i);
if (output.first != "out") symlink += fmt("-%s", output.first);
2020-09-03 12:26:36 +03:00
store2->addPermRoot(output.second, absPath(symlink));
}
},
}, buildable.raw());
2021-01-18 23:50:39 +02:00
}
updateProfile(buildables);
}
};
static auto rCmdBuild = registerCommand<CmdBuild>("build");