forked from lix-project/lix
ac67685606
(cherry picked from commit a0de58f471
)
49 lines
1.1 KiB
C++
49 lines
1.1 KiB
C++
#include "command.hh"
|
|
#include "shared.hh"
|
|
#include "eval.hh"
|
|
#include "attr-path.hh"
|
|
#include "progress-bar.hh"
|
|
|
|
#include <unistd.h>
|
|
|
|
using namespace nix;
|
|
|
|
struct CmdEdit : InstallableCommand
|
|
{
|
|
std::string description() override
|
|
{
|
|
return "open the Nix expression of a Nix package in $EDITOR";
|
|
}
|
|
|
|
Examples examples() override
|
|
{
|
|
return {
|
|
Example{
|
|
"To open the Nix expression of the GNU Hello package:",
|
|
"nix edit nixpkgs.hello"
|
|
},
|
|
};
|
|
}
|
|
|
|
void run(ref<Store> store) override
|
|
{
|
|
auto state = getEvalState();
|
|
|
|
auto v = installable->toValue(*state);
|
|
|
|
Pos pos = findDerivationFilename(*state, *v, installable->what());
|
|
|
|
stopProgressBar();
|
|
|
|
auto args = editorFor(pos);
|
|
|
|
execvp(args.front().c_str(), stringsToCharPtrs(args).data());
|
|
|
|
std::string command;
|
|
for (const auto &arg : args) command += " '" + arg + "'";
|
|
throw SysError("cannot run command%s", command);
|
|
}
|
|
};
|
|
|
|
static auto r1 = registerCommand<CmdEdit>("edit");
|