2017-05-04 12:16:26 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
|
|
|
struct CmdDumpPath : StorePathCommand
|
|
|
|
{
|
|
|
|
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"
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
Category category() override { return catUtility; }
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
void run(ref<Store> store, const StorePath & storePath) override
|
2017-05-04 12:16:26 +00:00
|
|
|
{
|
|
|
|
FdSink sink(STDOUT_FILENO);
|
|
|
|
store->narFromPath(storePath, sink);
|
2018-02-13 11:05:25 +00:00
|
|
|
sink.flush();
|
2017-05-04 12:16:26 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-18 14:01:35 +00:00
|
|
|
static auto r1 = registerCommand<CmdDumpPath>("dump-path");
|