2026-03-28 11:57:13 +10:00
|
|
|
#ifndef NIXIDE_STORE
|
|
|
|
|
#define NIXIDE_STORE
|
|
|
|
|
|
2026-03-27 10:38:56 +10:00
|
|
|
// Nix C API for store operations.
|
|
|
|
|
//
|
|
|
|
|
#include <nix_api_store.h>
|
2026-03-28 11:57:13 +10:00
|
|
|
|
2026-04-10 11:51:27 +10:00
|
|
|
// Nix C API for derivation operations that don't require a store.
|
|
|
|
|
//
|
2026-04-10 10:12:06 +10:00
|
|
|
#include <nix_api_store/derivation.h>
|
2026-04-10 11:51:27 +10:00
|
|
|
|
|
|
|
|
// Nix C API for store path operations that don't require a store.
|
|
|
|
|
//
|
2026-04-10 10:12:06 +10:00
|
|
|
#include <nix_api_store/store_path.h>
|
|
|
|
|
|
2026-04-10 11:51:27 +10:00
|
|
|
// Nixide C API extensions for store operations.
|
|
|
|
|
//
|
|
|
|
|
#include <nixide_api_store.h>
|
|
|
|
|
|
2026-03-28 11:57:13 +10:00
|
|
|
#endif
|