nix-super/src/nix/dump-path.cc
Eelco Dolstra 85c8be6286 Remove static variable name clashes
This was useful for an experiment with building Nix as a single
compilation unit. It's not very useful otherwise but also doesn't
hurt...
2020-10-06 13:49:20 +02:00

34 lines
845 B
C++

#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"
},
};
}
Category category() override { return catUtility; }
void run(ref<Store> store, const StorePath & storePath) override
{
FdSink sink(STDOUT_FILENO);
store->narFromPath(storePath, sink);
sink.flush();
}
};
static auto rDumpPath = registerCommand<CmdDumpPath>("dump-path");