2016-02-09 22:34:24 +02:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2017-04-25 13:06:32 +03:00
|
|
|
struct CmdBuild : MixDryRun, InstallablesCommand
|
2016-02-09 22:34:24 +02:00
|
|
|
{
|
|
|
|
CmdBuild()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "build";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "build a derivation or fetch a store path";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
2017-07-14 15:23:38 +03:00
|
|
|
auto paths = toStorePaths(store, dryRun ? DryRun : Build);
|
2016-02-09 22:34:24 +02:00
|
|
|
|
2017-08-31 18:57:04 +03:00
|
|
|
printError("build result: %s", showPaths(paths));
|
2016-02-09 22:34:24 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-02-25 12:55:05 +02:00
|
|
|
static RegisterCommand r1(make_ref<CmdBuild>());
|