this repo has no description
1opam-version: "2.0" 2synopsis: "Libraries to manipulate Erlang sources" 3description: """ 4erlang is a a set of libraries designed to facilitate manipulating 5 Standard Erlang and Core Erlang sources. 6 7 It provides a lexer/parser, a concrete AST, and a printer for Standard Erlang 8 in its current version. 9""" 10maintainer: ["Leandro Ostera <leandro@ostera.io>"] 11authors: ["Leandro Ostera <leandro@ostera.io>"] 12license: "Apache-2.0" 13homepage: "https://github.com/AbstractMachinesLab/caramel" 14bug-reports: "https://github.com/AbstractMachinesLab/caramel/issues" 15depends: [ 16 "dune" {>= "2.7"} 17 "ocaml" {>= "4.11.1"} 18 "cmdliner" 19 "menhir" 20 "ppx_sexp_conv" 21 "sexplib" 22 "odoc" {with-doc} 23] 24dev-repo: "git+https://github.com/AbstractMachinesLab/caramel.git" 25build: [ 26 ["dune" "subst"] {dev} 27 [ 28 "dune" 29 "build" 30 "-p" 31 name 32 "-j" 33 jobs 34 "@install" 35 "@doc" {with-doc} 36 ] 37] 38run-test: ["dune" "runtest" "./erlang/tests" "-p" name] 39x-commit-hash: "27bc02d4c865d73764d3aadb2c77f0e815460e44" 40url { 41 src: 42 "https://github.com/AbstractMachinesLab/caramel/releases/download/v0.0.14/erlang-v0.0.14.tbz" 43 checksum: [ 44 "sha256=5e018ee6cd932f534c19b31e83345290fbc48cb91af1cd5c57986ab485215031" 45 "sha512=bbaf181dc8f4e20d2ba56b629ee9470b581bf7731f65b2b627957a58ba40de131fcf4fe152b0bafa7b788060a15659f069042355c9713b5c8969f4f1e0e08818" 46 ] 47}