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...], 6among other features like a compact ranges syntax. 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.2/item/README" 15 "https://ocaml.org/p/ppx_seq/0.3.2/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.2.tar.gz" 44 checksum: [ 45 "md5=dca5b027638ecaecf5229174b8492757" 46 "sha256=a3687a6b1491eb8e23ccb104d4864b2e4c13eeb44cb8848e60cba990dba1081e" 47 "sha512=0b165dd5450a157cdb950b5bf14c1f33c795efcfc4c145f552a4a07965a7239edd41a0647c2c33193e919145ad17035ad7ca166655a92c3c4f3ac846b11fe172" 48 ] 49 mirrors: "https://git.sr.ht/~hyphen/ppx_seq/archive/0.3.2.tar.gz" 50}