diff options
Diffstat (limited to 'third_party/nix/src/nix/dump-path.cc')
-rw-r--r-- | third_party/nix/src/nix/dump-path.cc | 42 |
1 files changed, 17 insertions, 25 deletions
diff --git a/third_party/nix/src/nix/dump-path.cc b/third_party/nix/src/nix/dump-path.cc index f411c0cb7c89..5e93a3a44b83 100644 --- a/third_party/nix/src/nix/dump-path.cc +++ b/third_party/nix/src/nix/dump-path.cc @@ -3,34 +3,26 @@ using namespace nix; -struct CmdDumpPath : StorePathCommand -{ - std::string name() override - { - return "dump-path"; - } +struct CmdDumpPath : StorePathCommand { + std::string name() override { return "dump-path"; } - std::string description() override - { - return "dump a store path to stdout (in NAR format)"; - } + std::string description() override { + return "dump a store path to stdout (in NAR format)"; + } - Examples examples() override - { - return { - Example{ - "To get a NAR from the binary cache https://cache.nixos.org/:", - "nix dump-path --store https://cache.nixos.org/ /nix/store/7crrmih8c52r8fbnqb933dxrsp44md93-glibc-2.25" - }, - }; - } + Examples examples() override { + return { + Example{"To get a NAR from the binary cache https://cache.nixos.org/:", + "nix dump-path --store https://cache.nixos.org/ " + "/nix/store/7crrmih8c52r8fbnqb933dxrsp44md93-glibc-2.25"}, + }; + } - void run(ref<Store> store, const Path & storePath) override - { - FdSink sink(STDOUT_FILENO); - store->narFromPath(storePath, sink); - sink.flush(); - } + void run(ref<Store> store, const Path& storePath) override { + FdSink sink(STDOUT_FILENO); + store->narFromPath(storePath, sink); + sink.flush(); + } }; static RegisterCommand r1(make_ref<CmdDumpPath>()); |