|
| 1 | +opam-version: "2.0" |
| 2 | +maintainer: "Guillaume Bury < [email protected]>" |
| 3 | +authors: "Guillaume Bury < [email protected]>" |
| 4 | +license: "BSD-2-Clause" |
| 5 | +build: [ |
| 6 | + ["dune" "subst"] {dev} |
| 7 | + ["dune" "build" "-p" name "-j" jobs "@install" "@runtest" {with-test} "@doc" {with-doc}] |
| 8 | +] |
| 9 | +depends: [ |
| 10 | + "ocaml" {>= "4.08"} |
| 11 | + "menhir" {>= "20211230" } |
| 12 | + "dune" { >= "3.0" } |
| 13 | + "fmt" { >= "0.8.7" } |
| 14 | + "seq" |
| 15 | + "odoc" { with-doc } |
| 16 | + "qcheck" { with-test } |
| 17 | + "mdx" { with-test } |
| 18 | +] |
| 19 | + |
| 20 | +tags: [ "parser" "logic" "tptp" "smtlib" "dimacs" ] |
| 21 | +homepage: "https://github.com/Gbury/dolmen" |
| 22 | +dev-repo: "git+https://github.com/Gbury/dolmen.git" |
| 23 | +bug-reports: "https://github.com/Gbury/dolmen/issues" |
| 24 | + |
| 25 | +doc: "https://gbury.github.io/dolmen" |
| 26 | +synopsis: "A parser library for automated deduction" |
| 27 | +description: |
| 28 | +"Dolmen is a parser library. It currently targets languages used in automated theorem provers, |
| 29 | +but may be extended to other domains. |
| 30 | + |
| 31 | +Dolmen provides functors that takes as arguments a representation of terms and statements, |
| 32 | +and returns a module that can parse files (or streams of tokens) into the provided representation |
| 33 | +of terms or statements. This is meant so that Dolmen can be used as a drop-in replacement of existing |
| 34 | +parser, in order to factorize parsers among projects. |
| 35 | + |
| 36 | +Additionally, Dolmen also provides a standard implementation of terms and statements that cna be |
| 37 | +used ot instantiate its parsers." |
| 38 | +url { |
| 39 | + src: |
| 40 | + "https://github.com/Gbury/dolmen/releases/download/v0.9/dolmen-0.9.tbz" |
| 41 | + checksum: [ |
| 42 | + "sha256=003db53854bacc3a33fa55ed69cf79817c10369a4f7c6be944af1dcc36578a0a" |
| 43 | + "sha512=3f8570f41c8c559c2907734efca98eecfc0f28ec3bce9dde500d5777a97391121a89ca66e7135d40b15161fe890d7b40fa53daba83eab0accf71fff136d45c74" |
| 44 | + ] |
| 45 | +} |
| 46 | +x-commit-hash: "d9f5abbaffe6e5daa4b06758db66134fe85c8c6a" |
0 commit comments