Initial commit

This commit is contained in:
Gabriella Gonzalez
2022-06-15 10:21:24 -07:00
commit ddcf0a04db
11 changed files with 905 additions and 0 deletions

22
cbits/nix.hh Normal file
View File

@@ -0,0 +1,22 @@
#include <stdint.h>
#include <stddef.h>
struct string {
char const * data;
size_t size;
};
struct strings {
struct string * data;
size_t size;
};
struct PathInfo {
struct string deriver;
struct string narHash;
uint64_t narSize;
struct strings references;
struct strings sigs;
};