mirror of
https://github.com/NixOS/nix
synced 2025-06-25 23:11:16 +02:00
15 lines
246 B
C
15 lines
246 B
C
#ifndef NIX_API_EXPR_INTERNAL_H
|
|
#define NIX_API_EXPR_INTERNAL_H
|
|
|
|
#include "eval.hh"
|
|
#include "attr-set.hh"
|
|
|
|
struct State {
|
|
nix::EvalState state;
|
|
};
|
|
|
|
struct BindingsBuilder {
|
|
nix::BindingsBuilder builder;
|
|
};
|
|
|
|
#endif // NIX_API_EXPR_INTERNAL_H
|