about summary refs log tree commit diff
path: root/third_party/nix/src/nix/dump-path.cc
blob: f411c0cb7c89f86b80fbb87d67ba4fa06f7d12f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#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);
        sink.flush();
    }
};

static RegisterCommand r1(make_ref<CmdDumpPath>());