Skip to content

Commit

Permalink
nit: s/InstantiateDerivation/DerivationInstantiate/g
Browse files Browse the repository at this point in the history
  • Loading branch information
layus committed Sep 30, 2024
1 parent 8d6c168 commit b8d1965
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/nix/derivation-instantiate.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ createOutLinks(const std::filesystem::path & outLink, const StorePathSet & deriv
}
}

struct CmdInstantiateDerivation : InstallablesCommand, MixJSON
struct CmdDerivationInstantiate : InstallablesCommand, MixJSON
{
Path outLink = "drv";
bool printOutputPaths = false;

CmdInstantiateDerivation()
CmdDerivationInstantiate()
{
addFlag(
{.longName = "out-link",
Expand Down Expand Up @@ -90,4 +90,4 @@ struct CmdInstantiateDerivation : InstallablesCommand, MixJSON
}
};

static auto rCmdInstantiateDerivation = registerCommand2<CmdInstantiateDerivation>({"derivation", "instantiate"});
static auto rCmdDerivationInstantiate = registerCommand2<CmdDerivationInstantiate>({"derivation", "instantiate"});

0 comments on commit b8d1965

Please sign in to comment.