mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 12:06:01 +01:00
25 lines
325 B
C
25 lines
325 B
C
#ifndef NIX_API_STORE_INTERNAL_H
|
|
#define NIX_API_STORE_INTERNAL_H
|
|
#include "nix/store/store-api.hh"
|
|
#include "nix/store/derivations.hh"
|
|
|
|
extern "C" {
|
|
|
|
struct Store
|
|
{
|
|
nix::ref<nix::Store> ptr;
|
|
};
|
|
|
|
struct StorePath
|
|
{
|
|
nix::StorePath path;
|
|
};
|
|
|
|
struct nix_derivation
|
|
{
|
|
nix::Derivation drv;
|
|
};
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|