diff options
author | Daiderd Jordan <daiderd@gmail.com> | 2018-08-29T22·59+0200 |
---|---|---|
committer | Daiderd Jordan <daiderd@gmail.com> | 2018-09-02T10·54+0200 |
commit | c9a08540c3d64d1285928d1ce3d3d416a2547dd9 (patch) | |
tree | da05fd3fd68c9977d33d1e5a99ca9c07fcb3e565 | |
parent | 475a0a54a9c28c311f0c05d129bb165e7c215efb (diff) |
nix doctor: add command
Inspired by the homebrew command, shows a combination of debugging information and warnings with potential issues with a nix installation.
-rw-r--r-- | src/nix/doctor.cc | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/nix/doctor.cc b/src/nix/doctor.cc new file mode 100644 index 000000000000..fb4fc2a6e7e2 --- /dev/null +++ b/src/nix/doctor.cc @@ -0,0 +1,26 @@ +#include "command.hh" +#include "shared.hh" +#include "store-api.hh" + +using namespace nix; + +struct CmdDoctor : StoreCommand +{ + std::string name() override + { + return "doctor"; + } + + std::string description() override + { + return "check your system for potential problems"; + } + + void run(ref<Store> store) override + { + std::cout << "Store uri: " << store->getUri() << std::endl; + } +}; + +static RegisterCommand r1(make_ref<CmdDoctor>()); + |