this repo has no description
1opam-version: "2.0"
2synopsis: "Seq literals ppx for OCaml"
3description: """
4Simple unintrusive ppx rewriter that offers Seq literals.
5It offers List-like syntax in the form of [%seq a; b; c...]
6"""
7maintainer: "hyphens@pm.me"
8authors: "Hazem Elmasry"
9license: "ISC"
10tags: "syntax"
11homepage: "https://sr.ht/~hyphen/ppx_seq"
12doc: "https://git.sr.ht/~hyphen/ppx_seq/tree/0.2/item/README"
13bug-reports: "https://lists.sr.ht/~hyphen/ppx_seq"
14depends: [
15 "ocaml" {>= "4.04.2"}
16 "dune" {>= "2.9"}
17 "ppxlib" {>= "0.23"}
18 "seq" {with-test}
19 "odoc" {with-doc}
20]
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "--promote-install-files=false"
31 "@install"
32 "@runtest" {with-test}
33 "@doc" {with-doc}
34 ]
35 ["dune" "install" "-p" name "--create-install-files" name]
36]
37dev-repo: "git+https://git.sr.ht/~hyphen/ppx_seq"
38url {
39 src: "https://github.com/hyphenrf/ppx_seq/archive/refs/tags/0.2.tar.gz"
40 checksum: [
41 "md5=6de710e3be3c6ff4c69e3cb932f05467"
42 "sha256=6f83c627e9ee91d0f7d85675fbb85f169c0489d1221227a6b23fd97b9ccd0b0f"
43 "sha512=62897fe5249880b811f1bbef0c42eaa148d1060d9046312a9cd5979eeeea9a13e19efc6701cdcb1c436b4d6554f31a16a057bbc1bbad6a4e432daecc930171e8"
44 ]
45 mirrors: "https://git.sr.ht/~hyphen/ppx_seq/archive/0.2.tar.gz"
46}