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