diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-05-04 14:16:26 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-05-04 14:21:22 +0200 |
commit | 2da6a424486e16b4b30e448a15a9b4a608df602d (patch) | |
tree | 714f354bd9df41fd4b9ef3f5d391fc64aa1003bc /src/nix/dump-path.cc | |
parent | 44309c506767fcfb8aae15761b329a87b0dd4b8c (diff) |
nix dump-path: Add
This is primarily useful for extracting NARs from other stores (like
binary caches), which "nix-store --dump" cannot do.
Diffstat (limited to 'src/nix/dump-path.cc')
-rw-r--r-- | src/nix/dump-path.cc | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/nix/dump-path.cc b/src/nix/dump-path.cc new file mode 100644 index 000000000..1a1866437 --- /dev/null +++ b/src/nix/dump-path.cc @@ -0,0 +1,35 @@ +#include "command.hh" +#include "store-api.hh" + +using namespace nix; + +struct CmdDumpPath : StorePathCommand +{ + std::string name() override + { + return "dump-path"; + } + + 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" + }, + }; + } + + void run(ref<Store> store, const Path & storePath) override + { + FdSink sink(STDOUT_FILENO); + store->narFromPath(storePath, sink); + } +}; + +static RegisterCommand r1(make_ref<CmdDumpPath>()); |