-
Notifications
You must be signed in to change notification settings - Fork 0
/
nvlist.opam
35 lines (31 loc) · 867 Bytes
/
nvlist.opam
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
synopsis: "The Sun Microsystems / Solaris serialization framework written in pure OCaml"
description:
"""
The `nvlist` library is commonplace in Sun products (ZFS, ...) where it provides
an API for ad-hoc (de)serialization of typed datum.
This library is a from-scratch reimplementation in pure OCaml.
"""
opam-version: "2.0"
maintainer: "CFCS"
bug-reports: "https://github.com/cfcs/nvlist/issues"
homepage: "https://github.com/cfcs/nvlist/"
dev-repo: "git+https://github.com/cfcs/nvlist.git"
authors: [
"CFCS"
]
license: "ISC"
doc: "https://github.com/cfcs/nvlist"
depends: [
"ocaml" { >= "4.07.0" }
"dune" { build & >= "2.3.0" }
"stdlib-shims"
"alcotest" {with-test}
"crowbar" {with-test}
"afl-persistent" {with-test}
"ezgzip"
"cmdliner"
"logs"
"fmt"
"rresult"
]
build: [ [ "dune" "build" "-p" name "-j" jobs ] ]