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...],
6as well as a Range syntax like that of Haskell/Idris/etc..
7"""
8maintainer: "hyphens@pm.me"
9authors: "Hazem Elmasry"
10license: "ISC"
11tags: "syntax"
12homepage: "https://sr.ht/~hyphen/ppx_seq"
13doc: [
14 "https://git.sr.ht/~hyphen/ppx_seq/tree/0.3.1/item/README"
15 "https://ocaml.org/p/ppx_seq/0.3.1/doc/index.html"
16]
17bug-reports: "https://lists.sr.ht/~hyphen/ppx_seq"
18depends: [
19 "ocaml" {>= "4.04.2"}
20 "dune" {>= "2.9"}
21 "ppxlib" {>= "0.23"}
22 "seq" {with-test}
23 "odoc" {with-doc}
24]
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "--promote-install-files=false"
35 "@install"
36 "@runtest" {with-test}
37 "@doc" {with-doc}
38 ]
39 ["dune" "install" "-p" name "--create-install-files" name]
40]
41dev-repo: "git+https://git.sr.ht/~hyphen/ppx_seq"
42url {
43 src: "https://github.com/hyphenrf/ppx_seq/archive/refs/tags/0.3.1.tar.gz"
44 checksum: [
45 "md5=ff156ce09d555d593c80a5b3c0d76dff"
46 "sha256=ef9f5fb7a0fdfaecc1f3e7e3d8480a46f90dc013478a4e670633e6495a4b8114"
47 "sha512=30cfee3343ec8652b7d0b2722bc538830758be0c9076231d5c5678840b270caff034be21a76fa98125e4f157e73324ade94a0a96eeaf7a22e6804680e7b855d8"
48 ]
49 mirrors: "https://git.sr.ht/~hyphen/ppx_seq/archive/0.3.1.tar.gz"
50}