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 "lix/libcmd/command.hh"
#include "lix/libcmd/installable-value.hh"
#include "run.hh"
#include "fmt.hh"
namespace nix {
struct CmdFmt : SourceExprCommand {
std::vector<std::string> args;
CmdFmt() { expectArgs({.label = "args", .handler = {&args}}); }
std::string description() override {
return "reformat your code in the standard style";
}
std::string doc() override {
return
#include "fmt.md"
;
}
Category category() override { return catSecondary; }
Strings getDefaultFlakeAttrPaths() override {
// We are running it locally so it should be the actual system
return Strings{"formatter." + settings.thisSystem.get()};
}
Strings getDefaultFlakeAttrPathPrefixes() override { return Strings{}; }
void run(ref<Store> store) override
{
auto evaluator = getEvaluator();
auto evalStore = getEvalStore();
auto state = evaluator->begin(aio());
auto installable_ = parseInstallable(*state, store, ".");
auto & installable = InstallableValue::require(*installable_);
auto app = installable.toApp(*state).resolve(*state, evalStore, store);
Strings programArgs{app.program};
// Propagate arguments from the CLI
for (auto &i : args) {
programArgs.push_back(i);
}
runProgramInStore(store, UseSearchPath::DontUse, app.program, programArgs);
};
};
void registerNixFmt()
{
registerCommand<CmdFmt>("fmt");
}
}
|