this repo has no description
1opam-version: "2.0" 2license: "ISC" 3maintainer: ["opensource+ansi-parse@support.diskuv.com"] 4authors: "Joel Jakubovic" 5dev-repo: "git+https://github.com/diskuv/ansi-parse.git" 6homepage: "https://github.com/diskuv/ansi-parse" 7bug-reports: "https://github.com/diskuv/ansi-parse/issues" 8depends: [ 9 "ocaml" { >= "4.03" } 10 "dune" { >= "2.9" } 11 "angstrom" { >= "0.15.0" } 12 "ppx_deriving" { >= "5.0" } 13 "tyxml" { >= "4.3" } 14 "ppx_expect" { >= "v0.14.1" & with-test } 15 "odoc" { >= "2.0.0" & with-doc } 16] 17build: [ 18 ["dune" "subst"] {dev} 19 [ 20 "dune" 21 "build" 22 "-p" 23 name 24 "-j" 25 jobs 26 "@install" 27 "@runtest" {with-test} 28 "@doc" {with-doc} 29 ] 30] 31# FIXME: doc: "https://diskuv.github.io/ansi-parse/doc" 32synopsis: "Ansiparse is a library for converting raw terminal output, replete with escape codes, into formatted HTML" 33url { 34 src: "https://github.com/diskuv/ansi-parse/archive/0.4.0.tar.gz" 35 checksum: [ 36 "md5=5683e4ac14bc065a3a5bcf72d5e8b530" 37 "sha512=9e7286aaa9a04bef29b5acefef1f0700e054e06418b99e9cba444afdb9a81222f42f8cd8d2c7d9a91b64c4fff0c49a4c0fd7fd7e052694a02484c9dce5d6a5c7" 38 ] 39}