this repo has no description
1opam-version: "2.0"
2synopsis:
3 "OCaml library and executable to work with the scfg configuration file format"
4description: """
5scfg is an OCaml library and executable to work with the scfg configuration file format.
6It provides a parser, a pretty printer and a module to perform queries.
7"""
8maintainer: ["Léo Andrès <contact@ndrs.fr>"]
9authors: ["Léo Andrès <contact@ndrs.fr>"]
10license: "ISC"
11tags: ["scfg" "configuration" "format" "simple" "config" "parser" "printer"]
12homepage: "https://git.zapashcanon.fr/zapashcanon/scfg"
13doc: "https://doc.zapashcanon.fr/scfg"
14bug-reports: "https://git.zapashcanon.fr/zapashcanon/scfg/issues"
15depends: [
16 "dune" {>= "2.8"}
17 "ocaml" {>= "4.13"}
18 "menhir" {>= "20211230"}
19 "sedlex"
20 "odoc" {with-doc}
21]
22build: [
23 ["dune" "subst"] {dev}
24 [
25 "dune"
26 "build"
27 "-p"
28 name
29 "-j"
30 jobs
31 "@install"
32 "@runtest" {with-test}
33 "@doc" {with-doc}
34 ]
35]
36dev-repo: "git+https://git.zapashcanon.fr/zapashcanon/scfg.git"
37url {
38 src: "https://git.zapashcanon.fr/zapashcanon/scfg/archive/0.1.tar.gz"
39 checksum: [
40 "sha256=faaafdd2cbb36e61c074aad2a28e0a63d00ef5060f436172edaf345f34071e7f"
41 "sha512=b35fb0989f1becf23c52b2c832d30c41ac705f0da2214e5535869251dcda7cb4368daae28857369273e55503344da69d404b70156f9a827db733dd8ae1b18f7f"
42 ]
43}