nix-super/src/nix/store.cc

19 lines
389 B
C++
Raw Normal View History

2020-12-03 19:06:46 +02:00
#include "command.hh"
using namespace nix;
struct CmdStore : NixMultiCommand
2020-12-03 19:06:46 +02:00
{
CmdStore() : NixMultiCommand("store", RegisterCommand::getCommandsFor({"store"}))
2020-12-03 19:06:46 +02:00
{ }
std::string description() override
{
return "manipulate a Nix store";
}
Category category() override { return catUtility; }
};
static auto rCmdStore = registerCommand<CmdStore>("store");