this repo has no description
1opam-version: "2.0" 2 3synopsis: "Functional monadic library" 4 5description: """ 6 7Library which is completely functional and monadic. It features 8 9- Monadic parsing functions with combinators suitable for indentation sensitive 10 parsing. 11 12- Pretty printing functions. 13""" 14 15maintainer: "Helmut Brandl <helmut.brandl@gmx.net>" 16 17authors: [ "Helmut Brandl <helmut.brandl@gmx.net>" ] 18 19license: "BSD-3-Clause" 20homepage: "https://github.com/hbr/fmlib" 21dev-repo: "git+https://github.com/hbr/fmlib.git" 22bug-reports: "https://github.com/hbr/fmlib/issues" 23 24 25build: [ 26 ["dune" "subst"] {dev} 27 ["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}] 28] 29 30 31depends: [ 32 "ocaml" {>= "4.08.0"} 33 "dune" {>= "1.10"} 34 "odoc" {with-doc} 35 "ppx_inline_test" {>= "v0.12.0"} 36] 37 38url { 39 src: "https://github.com/hbr/fmlib/archive/0.2.0.tar.gz" 40 checksum: [ 41 "sha256=d47f6539af49a4c3e947dbfbe416c1e78d534897cd6d9d8e3660aae0cf8d9494" 42 "md5=d649b8a62403362bd3a24cbf1a9af590" 43 ] 44}