this repo has no description
1opam-version: "2.0"
2synopsis: "A sample syntax extension using OCaml's new extension points API"
3maintainer: ["whitequark <whitequark@whitequark.org>"]
4authors: ["whitequark <whitequark@whitequark.org>"]
5license: "Public domain"
6tags: ["syntax"]
7homepage: "https://github.com/ocaml-ppx/ppx_getenv"
8bug-reports: "https://github.com/ocaml-ppx/ppx_getenv/issues"
9depends: [
10 "dune" {>= "2.0"}
11 "ocaml" {>= "4.04.0"}
12 "ppxlib" {>= "0.9.0" < "0.18.0"}
13 "ounit2" {with-test}
14 "odoc" {with-doc}
15]
16build: [
17 ["dune" "subst"] {dev}
18 [
19 "dune"
20 "build"
21 "-p"
22 name
23 "-j"
24 jobs
25 "@install"
26 "@runtest" {with-test}
27 "@doc" {with-doc}
28 ]
29]
30dev-repo: "git+https://github.com/ocaml-ppx/ppx_getenv.git"
31url {
32 src: "https://github.com/ocaml-ppx/ppx_getenv/archive/v2.0.tar.gz"
33 checksum: [
34 "md5=f7822fc5bb7e9fbeb18ac7433e3eb38b"
35 "sha512=9add1c4182e8d18e21a7e8d9d4ee3bb1273541de772604829814f3718397febfbd790f2bf24bc7437c0715568857b27f837ad96f4805b833ab36c127ae124994"
36 ]
37}