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