nix-super/src/nix/derivation.cc

19 lines
454 B
C++
Raw Normal View History

#include "command.hh"
using namespace nix;
struct CmdDerivation : NixMultiCommand
{
CmdDerivation() : NixMultiCommand("derivation", RegisterCommand::getCommandsFor({"derivation"}))
{ }
std::string description() override
{
return "Work with derivations, Nix's notion of a build plan.";
}
Category category() override { return catUtility; }
};
static auto rCmdDerivation = registerCommand<CmdDerivation>("derivation");