this repo has no description
1opam-version: "2.0"
2license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
3synopsis: "The ocaml-solidity project"
4description: """
5
6Ocaml-solidity provides a Solidity parser and typechecker
7"""
8authors: [
9 "David Declerck <david.declerck@ocamlpro.com>"
10 "Steven De Oliveira <steven.de-oliveira@ocamlpro.com>"
11]
12maintainer: [
13 "David Declerck <david.declerck@ocamlpro.com>"
14 "Steven De Oliveira <steven.de-oliveira@ocamlpro.com>"
15]
16homepage: "https://github.com/OcamlPro/ocaml-solidity"
17doc: "https://OCamlPro.github.io/ocaml-solidity/sphinx"
18bug-reports: "https://github.com/OCamlPro/ocaml-solidity/issues"
19dev-repo: "git+https://github.com/OcamlPro/ocaml-solidity.git"
20tags: "org:OCamlPro"
21build: [
22 ["dune" "subst"] {dev}
23 ["sh" "-c" "./scripts/before.sh build '%{name}%'"]
24 [
25 "dune"
26 "build"
27 "-p"
28 name
29 "-j"
30 jobs
31 "@install"
32 "@runtest" {with-test}
33 "@doc" {with-doc}
34 ]
35 ["sh" "-c" "./scripts/after.sh build '%{name}%'"]
36]
37install: [
38 ["sh" "-c" "./scripts/before.sh install '%{name}%'"]
39]
40depends: [
41 "ocaml" {>= "4.08.0"}
42 "dune" {>= "2.6.0"}
43 "solidity-typechecker" {= version}
44 "solidity-parser" {= version}
45 "solidity-common" {= version}
46 "alcotest" {>= "1.2"}
47 "ppx_inline_test" {with-test}
48 "ppx_expect" {with-test}
49 "odoc" {with-doc}
50 "ocamlformat" {with-test}
51]
52
53url {
54 src: "https://github.com/OCamlPro/ocaml-solidity/archive/v0.2.0.tar.gz"
55 checksum: [ "sha256=d5d0f31101413c9a36d6a37973aa03fde788644808f34dbff0220ee45c17ece4" ]
56}