nix-super/src/libexpr/primops/flake.hh

18 lines
200 B
C++
Raw Normal View History

2019-02-12 19:23:11 +02:00
#include "types.hh"
#include "flakeref.hh"
#include <variant>
namespace nix {
struct FlakeRegistry
{
struct Entry
{
FlakeRef ref;
};
std::map<FlakeId, Entry> entries;
};
}