this repo has no description
1opam-version: "2.0" 2 3synopsis: "Functional monadic library" 4 5description: """ 6 7Library supporting functional programming with managed effects. It features 8 9- Fmlib_std: A lot of standard data types. 10 11- Fmlib_parse: Monadic parsing functions with combinators suitable for indentation sensitive 12 parsing. 13 14- Fmlib_pretty: Pretty printing functions. 15 16- Fmlib_js: Interface to javscript via js_of_ocaml. 17 18""" 19 20maintainer: "Helmut Brandl <helmut.brandl@gmx.net>" 21 22authors: [ "Helmut Brandl <helmut.brandl@gmx.net>" ] 23 24license: "BSD-3-Clause" 25homepage: "https://github.com/hbr/fmlib" 26dev-repo: "git+https://github.com/hbr/fmlib.git" 27bug-reports: "https://github.com/hbr/fmlib/issues" 28 29 30build: [ 31 ["dune" "subst"] {dev} 32 ["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}] 33] 34 35 36depends: [ 37 "ocaml" {>= "4.08.0"} 38 "dune" {>= "1.10"} 39 "odoc" {with-doc} 40 "ppx_inline_test" {>= "v0.12.0"} 41] 42 43url { 44 src: "https://github.com/hbr/fmlib/archive/0.3.0.tar.gz" 45 checksum: [ 46 "sha256=82db21ad71b6698a20890d329bf9e1cf6a83eb3b0e18f6acc4ffc3ad9173445d" 47 "md5=15e32aea1a5cd9962f29db3d1a1f4b7a" 48 ] 49}