this repo has no description
1opam-version: "2.0"
2maintainer: "Tony Wuersch <tony.wuersch@gmail.com>"
3homepage: "https://github.com/awuersch/sslconf"
4dev-repo: "git+https://github.com/awuersch/sslconf.git"
5bug-reports: "https://github.com/awuersch/sslconf/issues"
6doc: "https://awuersch.github.io/sslconf/doc"
7authors: [
8 "Tony Wuersch <tony.wuersch@gmail.com>"
9]
10license: "ISC"
11depends: [
12 "ocaml" {>= "4.03.0"}
13 "jbuilder" {>= "1.0+beta7"}
14 "ppx_sexp_conv"
15 "ocaml-migrate-parsetree" {< "2.0.0"}
16 "sexplib"
17 "astring"
18 "rresult"
19 "fpath"
20 "cmdliner"
21 "topkg-jbuilder" {build}
22 "ounit" {with-test}
23 "odoc" {with-doc}
24]
25build: [
26 ["jbuilder" "subst" "-p" name] {dev}
27 ["jbuilder" "build" "-p" name "-j" jobs]
28]
29synopsis: "An OCaml version of Openssl's NCONF library"
30description: """
31sslconf is a reimplementation of the Openssl NCONF library in OCaml.
32
33NCONF reads Openssl config files. It delivers a data structure and
34a query API. Under the data structure are hash tables with strings
35and name-value stacks as values. The query API hides details of
36implementation.
37
38sslconf has only OCaml code, so it can be used in a unikernel.
39
40sslconf is distributed under the ISC license."""
41url {
42 src:
43 "https://github.com/awuersch/sslconf/releases/download/0.8.3/sslconf-0.8.3.tbz"
44 checksum: [
45 "sha256=b427a97c7a47a39e718f3994f1f6f09ff8ce414a5ee0dac3bc89e716bfecdf0a"
46 "md5=2a0da5a04934b18b15b36c5707809aa9"
47 ]
48}