2019-02-12 17:23:11 +00:00
|
|
|
#include "types.hh"
|
|
|
|
#include "flakeref.hh"
|
|
|
|
|
|
|
|
#include <variant>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2019-02-12 20:55:43 +00:00
|
|
|
struct Value;
|
|
|
|
class EvalState;
|
|
|
|
|
2019-02-12 17:23:11 +00:00
|
|
|
struct FlakeRegistry
|
|
|
|
{
|
|
|
|
struct Entry
|
|
|
|
{
|
|
|
|
FlakeRef ref;
|
|
|
|
};
|
|
|
|
std::map<FlakeId, Entry> entries;
|
|
|
|
};
|
|
|
|
|
2019-02-12 20:55:43 +00:00
|
|
|
Value * makeFlakeRegistryValue(EvalState & state);
|
|
|
|
|
|
|
|
Value * makeFlakeValue(EvalState & state, std::string flakeUri, Value & v);
|
|
|
|
|
2019-02-12 17:23:11 +00:00
|
|
|
}
|