-
Notifications
You must be signed in to change notification settings - Fork 19
/
dune-project
47 lines (46 loc) · 1.14 KB
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
(lang dune 3.0)
(name extunix)
(generate_opam_files true)
(package
(name extunix)
(depends
(ocaml (>= 4.06))
(dune-configurator (and (>= 2.9) :build))
(ppxlib (and (>= 0.18) :build))
(ounit2 :with-test)
base-bytes
base-bigarray
base-unix
)
(synopsis "Collection of thin bindings to various low-level system API")
(description
"\| Motto: "Be to Unix, what extlib is to stdlib"
"\|
"\| * Implement thin C bindings that directly map to underlying system API.
"\| * Provide common consistent ocaml interface: naming convention, exceptions.
"\| * Simple to build - no extra dependencies.
)
(license "LGPL-2.1-only WITH OCaml-LGPL-linking-exception")
(authors
"Andre Nathan"
"Antonin Décimo"
"Dmitry Grebeniuk"
"François Bobot"
"Gerd Stolpmann"
"Goswin von Brederlow"
"Joshua Smith"
"Kaustuv Chaudhuri"
"Markus W. Weissmann"
"Mehdi Dogguy"
"Niki Yoshiuchi"
"Pierre Chambart"
"Roman Vorobets"
"Stéphane Glondu"
"Sylvain Le Gall"
"Teague Hansen"
"ygrek"
"Zhenya Lykhovyd"
)
(maintainers "[email protected]" "Antonin Décimo <[email protected]>")
(source (github ygrek/extunix))
(tags ("org:ygrek")))