this repo has no description
1(rule
2 (targets config.ml c_flags.sexp c_library_flags.sexp)
3 (action
4 (run ./include/discover.exe)))
5
6(library
7 (name zfs)
8 (public_name zfs)
9 (libraries unix)
10 (c_library_flags
11 (:include c_library_flags.sexp))
12 (flags
13 (:standard -w -9-27))
14 (ctypes
15 (external_library_name libzfs)
16 (build_flags_resolver
17 (vendored
18 (c_flags
19 :standard
20 -D_GNU_SOURCE
21 (:include c_flags.sexp))))
22 (headers
23 (include
24 "unistd.h"
25 "stdio.h"
26 "stdint.h"
27 "stdbool.h"
28 "libzfs_core.h"
29 "libzfs.h"))
30 (type_description
31 (instance Types)
32 (functor Type_description))
33 (function_description
34 (concurrency unlocked)
35 (instance Functions)
36 (functor Function_description))
37 (generated_types Types_generated)
38 (generated_entry_point C)))