2017-05-08 16:39:33 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "eval.hh"
|
|
|
|
#include "attr-path.hh"
|
2017-08-29 13:13:30 +00:00
|
|
|
#include "progress-bar.hh"
|
2017-05-08 16:39:33 +00:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
struct CmdEdit : InstallableCommand
|
2017-05-08 16:39:33 +00:00
|
|
|
{
|
|
|
|
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();
|
|
|
|
|
2020-02-07 13:22:01 +00:00
|
|
|
auto [v, pos] = installable->toValue(*state);
|
2017-05-08 16:39:33 +00:00
|
|
|
|
2020-02-07 13:22:01 +00:00
|
|
|
try {
|
|
|
|
pos = findDerivationFilename(*state, *v, installable->what());
|
|
|
|
} catch (NoPositionInfo &) {
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pos == noPos)
|
|
|
|
throw Error("cannot find position information for '%s", installable->what());
|
2017-05-08 16:39:33 +00:00
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
stopProgressBar();
|
2017-08-29 13:13:30 +00:00
|
|
|
|
2019-10-28 20:36:34 +00:00
|
|
|
auto args = editorFor(pos);
|
2019-10-23 14:48:28 +00:00
|
|
|
|
2018-04-17 10:16:04 +00:00
|
|
|
execvp(args.front().c_str(), stringsToCharPtrs(args).data());
|
2017-05-08 16:39:33 +00:00
|
|
|
|
2019-10-23 14:48:28 +00:00
|
|
|
std::string command;
|
|
|
|
for (const auto &arg : args) command += " '" + arg + "'";
|
|
|
|
throw SysError("cannot run command%s", command);
|
2017-05-08 16:39:33 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-18 14:01:35 +00:00
|
|
|
static auto r1 = registerCommand<CmdEdit>("edit");
|