this repo has no description
1opam-version: "2.0" 2 3synopsis: "Functional monadic library" 4 5 6description: """ 7 8Umbrella for a collection of libraries supporting functional programming with 9managed effects. The umbrella contains only documentation. See the following 10packages to get the functionality: 11 12- fmlib_std: A lot of standard data types. 13 14- fmlib_parse: Monadic parsing functions with combinators suitable for 15 incremental and indentation sensitive parsing. 16 17- fmlib_pretty: Pretty printing functions. Prints hierachical structures like 18 expressions and indented paragraphs nicely. 19 20- fmlib_js: Interface to javscript via js_of_ocaml. 21 22""" 23 24 25maintainer: "Helmut Brandl <helmut.brandl@gmx.net>" 26 27authors: [ "Helmut Brandl <helmut.brandl@gmx.net>" ] 28 29license: "BSD-3-Clause" 30homepage: "https://github.com/hbr/fmlib" 31dev-repo: "git+https://github.com/hbr/fmlib.git" 32bug-reports: "https://github.com/hbr/fmlib/issues" 33 34 35build: [ 36 ["dune" "subst"] {dev} 37 ["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}] 38] 39 40 41depends: [ 42 "ocaml" {>= "4.08.0"} 43 "dune" {>= "1.10"} 44 "odoc" {with-doc} 45 "ppx_inline_test" {>= "v0.13.0"} 46] 47 48url { 49 src: "https://github.com/hbr/fmlib/archive/0.4.0.tar.gz" 50 checksum: [ 51 "sha256=b54320cbe9bddac9ff88654e1d8ffea1d2eecb48aa668f3483f26f80c7954531" 52 "md5=28a93cbd62d5debe496759e8e954848b" 53 ] 54}