blob: 8352c26e8190a0a6c66d46f2c808405035fccd6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#include "command.hh"
#include "shared.hh"
#include "eval.hh"
#include "attr-path.hh"
#include "editor-for.hh"
#include "current-process.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";
}
std::string doc() override
{
return
#include "edit.md"
;
}
Category category() override { return catSecondary; }
void run(ref<Store> store, ref<Installable> installable) override
{
auto state = getEvalState();
auto const installableValue = InstallableValue::require(installable);
const auto [file, line] = [&] {
auto [v, pos] = installableValue->toValue(*state);
try {
return findPackageFilename(*state, *v, installable->what());
} catch (NoPositionInfo &) {
throw Error("cannot find position information for '%s", installableValue->what());
}
}();
logger->pause();
auto args = editorFor(file, line);
restoreProcessContext();
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 rCmdEdit = registerCommand<CmdEdit>("edit");
|