2026-03-28 11:57:13 +10:00
|
|
|
#ifndef NIXIDE_EXPR
|
|
|
|
|
#define NIXIDE_EXPR
|
|
|
|
|
|
2026-03-27 10:38:56 +10:00
|
|
|
// Nix C API for the Nix expressions evaluator.
|
2026-04-10 11:51:27 +10:00
|
|
|
//
|
2026-03-27 10:38:56 +10:00
|
|
|
#include <nix_api_expr.h>
|
|
|
|
|
|
|
|
|
|
// Nix C API for value manipulation.
|
|
|
|
|
//
|
|
|
|
|
#include <nix_api_value.h>
|
|
|
|
|
|
|
|
|
|
// Nix C API for external values.
|
|
|
|
|
//
|
|
|
|
|
#include <nix_api_external.h>
|
2026-03-28 11:57:13 +10:00
|
|
|
|
2026-04-10 11:51:27 +10:00
|
|
|
// Nixide C API extensions for the Nix expressions evaluator.
|
|
|
|
|
//
|
|
|
|
|
#include <nixide_api_expr.h>
|
|
|
|
|
|
2026-03-28 11:57:13 +10:00
|
|
|
#endif
|