1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libexpr/primops/flake.hh

41 lines
706 B
C++
Raw Normal View History

2019-02-12 12:23:11 -05:00
#include "types.hh"
#include "flakeref.hh"
#include <variant>
namespace nix {
struct Value;
class EvalState;
2019-02-12 12:23:11 -05:00
struct FlakeRegistry
{
struct Entry
{
FlakeRef ref;
};
std::map<FlakeId, Entry> entries;
};
Value * makeFlakeRegistryValue(EvalState & state);
Value * makeFlakeValue(EvalState & state, std::string flakeUri, Value & v);
2019-02-21 00:53:01 -05:00
struct Flake
{
FlakeId id;
std::string description;
Path path;
std::vector<FlakeRef> requires;
std::unique_ptr<FlakeRegistry> lockFile;
Value * vProvides; // FIXME: gc
// commit hash
// date
// content hash
};
Flake getFlake(EvalState & state, const FlakeRef & flakeRef);
2019-02-25 07:46:37 -05:00
void writeRegistry(FlakeRegistry);
2019-02-12 12:23:11 -05:00
}