about summary refs log tree commit diff
path: root/src/nix/installables.hh
blob: 5eb897d461480c3c8fbf2fe3ec3567a9d455b7ff (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
37
38
#pragma once

#include "args.hh"

namespace nix {

struct UserEnvElem
{
    Strings attrPath;

    // FIXME: should use boost::variant or so.
    bool isDrv;

    // Derivation case:
    Path drvPath;
    StringSet outputNames;

    // Non-derivation case:
    PathSet outPaths;
};

typedef std::vector<UserEnvElem> UserEnvElems;

struct MixInstallables : virtual Args
{
    Strings installables;
    Path file = "<nixpkgs>";

    MixInstallables()
    {
        mkFlag('f', "file", "file", "evaluate FILE rather than the default", &file);
        expectArgs("installables", &installables);
    }

    UserEnvElems evalInstallables(ref<Store> store);
};

}