2019-02-21 07:53:01 +02:00
|
|
|
#include "eval.hh"
|
2016-02-09 22:34:24 +02:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
2020-10-09 23:18:08 +03:00
|
|
|
#include "local-fs-store.hh"
|
2016-02-09 22:34:24 +02:00
|
|
|
|
2020-10-23 07:59:01 +03:00
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
2016-02-09 22:34:24 +02:00
|
|
|
using namespace nix;
|
|
|
|
|
2020-10-23 07:59:01 +03:00
|
|
|
struct CmdBuild : InstallablesCommand, MixDryRun, MixJSON, MixProfile
|
2016-02-09 22:34:24 +02:00
|
|
|
{
|
2017-09-06 17:20:34 +03:00
|
|
|
Path outLink = "result";
|
2020-06-29 11:05:44 +03:00
|
|
|
BuildMode buildMode = bmNormal;
|
2017-09-06 17:20:34 +03:00
|
|
|
|
2016-02-09 22:34:24 +02:00
|
|
|
CmdBuild()
|
|
|
|
{
|
2020-05-04 23:40:19 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "out-link",
|
|
|
|
.shortName = 'o',
|
|
|
|
.description = "path of the symlink to the build result",
|
|
|
|
.labels = {"path"},
|
|
|
|
.handler = {&outLink},
|
2020-05-10 22:35:07 +03:00
|
|
|
.completer = completePath
|
2020-05-04 23:40:19 +03:00
|
|
|
});
|
2017-09-06 17:20:34 +03:00
|
|
|
|
2020-05-04 23:40:19 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "no-link",
|
|
|
|
.description = "do not create a symlink to the build result",
|
|
|
|
.handler = {&outLink, Path("")},
|
|
|
|
});
|
2020-06-29 11:05:44 +03:00
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "rebuild",
|
2020-07-31 18:32:16 +03:00
|
|
|
.description = "rebuild an already built package and compare the result to the existing store paths",
|
2020-06-29 11:05:44 +03:00
|
|
|
.handler = {&buildMode, bmCheck},
|
|
|
|
});
|
2016-02-09 22:34:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "build a derivation or fetch a store path";
|
|
|
|
}
|
|
|
|
|
2017-09-07 21:14:04 +03:00
|
|
|
Examples examples() override
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
Example{
|
|
|
|
"To build and run GNU Hello from NixOS 17.03:",
|
|
|
|
"nix build -f channel:nixos-17.03 hello; ./result/bin/hello"
|
|
|
|
},
|
|
|
|
Example{
|
|
|
|
"To build the build.x86_64-linux attribute from release.nix:",
|
|
|
|
"nix build -f release.nix build.x86_64-linux"
|
|
|
|
},
|
2019-07-12 16:32:17 +03:00
|
|
|
Example{
|
|
|
|
"To make a profile point at GNU Hello:",
|
2020-04-01 00:55:07 +03:00
|
|
|
"nix build --profile /tmp/profile nixpkgs#hello"
|
2019-07-12 16:32:17 +03:00
|
|
|
},
|
2017-09-07 21:14:04 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-02-09 22:34:24 +02:00
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
2020-06-29 11:05:44 +03:00
|
|
|
auto buildables = build(store, dryRun ? Realise::Nothing : Realise::Outputs, installables, buildMode);
|
2016-02-09 22:34:24 +02:00
|
|
|
|
2018-02-07 22:58:38 +02:00
|
|
|
if (dryRun) return;
|
|
|
|
|
2020-07-23 22:02:57 +03:00
|
|
|
if (outLink != "")
|
|
|
|
if (auto store2 = store.dynamic_pointer_cast<LocalFSStore>())
|
|
|
|
for (size_t i = 0; i < buildables.size(); ++i)
|
|
|
|
std::visit(overloaded {
|
|
|
|
[&](BuildableOpaque 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));
|
2020-07-23 22:02:57 +03:00
|
|
|
},
|
|
|
|
[&](BuildableFromDrv bfd) {
|
2020-08-20 21:14:12 +03:00
|
|
|
auto builtOutputs = store->queryDerivationOutputMap(bfd.drvPath);
|
2020-08-07 22:09:26 +03:00
|
|
|
for (auto & output : builtOutputs) {
|
2020-07-23 22:02:57 +03:00
|
|
|
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));
|
2020-07-23 22:02:57 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
}, buildables[i]);
|
2019-07-12 16:32:17 +03:00
|
|
|
|
|
|
|
updateProfile(buildables);
|
2020-10-23 07:59:01 +03:00
|
|
|
|
|
|
|
if (json) logger->cout("%s", buildablesToJSON(buildables, store).dump());
|
2016-02-09 22:34:24 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-10-06 14:36:55 +03:00
|
|
|
static auto rCmdBuild = registerCommand<CmdBuild>("build");
|