this repo has no description
1opam-version: "2.0" 2synopsis: "Extension to distribute guards over or-patterns" 3description: 4 "`function%distr A x, _ | _, A x when p x -> e` will result in `function A x, _ when p x -> e | _, A x when p x -> e`" 5maintainer: ["Ralf Vogler <ralf.vogler@gmail.com>"] 6authors: ["Ralf Vogler <ralf.vogler@gmail.com>"] 7license: "MIT" 8homepage: "https://github.com/vogler/ppx_distr_guards" 9doc: "https://vogler.github.io/ppx_distr_guards" 10bug-reports: "https://github.com/vogler/ppx_distr_guards/issues" 11depends: [ 12 "ocaml" 13 "dune" {>= "2.3.0"} 14 "ocaml-migrate-parsetree" {>= "1.6.0" & < "2.0.0"} 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 & ocaml:version >= "4.06"} 27 "@doc" {with-doc} 28 ] 29] 30dev-repo: "git+https://github.com/vogler/ppx_distr_guards.git" 31url { 32 src: 33 "https://github.com/vogler/ppx_distr_guards/releases/download/v0.2/ppx_distr_guards-v0.2.tbz" 34 checksum: [ 35 "sha256=a6e7efa882e0492648e0d08f5c8c4fdaa3fc47b546d15ea3aebecc0736c36e1f" 36 "sha512=4fbfa77d3947106dbe384eb5f6e61e235b2c4a13e7f49ca59e9479eb9ce4f75239be26a5f0633e17cf41bf7d1e53d3d50808ca53e145e847e61380602d0e9b84" 37 ] 38}