nix-super/src/nix/build.cc

33 lines
606 B
C++
Raw Normal View History

#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
{
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
{
auto paths = toStorePaths(store, dryRun ? DryRun : Build);
printError("build result: %s", showPaths(paths));
}
};
2016-02-25 12:55:05 +02:00
static RegisterCommand r1(make_ref<CmdBuild>());