mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 09:46:16 +02:00
31 lines
708 B
C++
31 lines
708 B
C++
#include "command.hh"
|
|
|
|
using namespace nix;
|
|
|
|
struct CmdNar : NixMultiCommand
|
|
{
|
|
CmdNar() : MultiCommand(RegisterCommand::getCommandsFor({"nar"}))
|
|
{ }
|
|
|
|
std::string description() override
|
|
{
|
|
return "query the contents of NAR files";
|
|
}
|
|
|
|
Category category() override { return catUtility; }
|
|
|
|
void run() override
|
|
{
|
|
if (!command)
|
|
throw UsageError("'nix nar' requires a sub-command.");
|
|
command->second->prepare();
|
|
command->second->run();
|
|
}
|
|
|
|
void printHelp(const string & programName, std::ostream & out) override
|
|
{
|
|
MultiCommand::printHelp(programName, out);
|
|
}
|
|
};
|
|
|
|
static auto rCmdNar = registerCommand<CmdNar>("nar");
|