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.2.tar.gz"
37 checksum: [
38 "sha256=75bddc93dd19c2d7da6583f959b0d0a4a44aa41e9173a66d6193275f5cc1917c"
39 "sha512=92e6fa84f8ff73efd29e62babe4ca3ffbd86743443e80c743d6dd49a01597b831d832ca5bff85a2ca4ad16f99b24b717692f34e84820413c9fcc918bb96f53da"
40 ]
41}