20 lines
417 B
C
20 lines
417 B
C
#ifndef NIXIDE_STORE
|
|
#define NIXIDE_STORE
|
|
|
|
// Nix C API for store operations.
|
|
//
|
|
#include <nix_api_store.h>
|
|
|
|
// Nix C API for derivation operations that don't require a store.
|
|
//
|
|
#include <nix_api_store/derivation.h>
|
|
|
|
// Nix C API for store path operations that don't require a store.
|
|
//
|
|
#include <nix_api_store/store_path.h>
|
|
|
|
// Nixide C API extensions for store operations.
|
|
//
|
|
#include <nixide_api_store.h>
|
|
|
|
#endif
|