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 "dune" {>= "2.7"} 13 "ppxlib" {>= "0.15.0" & < "0.36.0"} 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/vogler/ppx_distr_guards.git" 31url { 32 src: 33 "https://github.com/vogler/ppx_distr_guards/releases/download/0.3/ppx_distr_guards-0.3.tbz" 34 checksum: [ 35 "sha256=a05dc97065a18ef83eb5b8fcfeea9dfa07dcefbf7daf2e41f7fc09cfddea7f55" 36 "sha512=f4aba0549c93a67d935a3b1554c189db20efcf26c0d8474c9f015a252e17d7b641996e3d72ef466f537b83ef0ea6c35baa7d1d67788b51686d9c77da387973e8" 37 ] 38} 39x-commit-hash: "0ec3a096baa6f147c8981eb1f2d11fb72f865f2a"