this repo has no description
1opam-version: "2.0"
2maintainer: "Ralf Vogler <ralf.vogler@gmail.com>"
3authors: "Ralf Vogler <ralf.vogler@gmail.com>"
4homepage: "https://github.com/vogler/ppx_distr_guards"
5bug-reports: "https://github.com/vogler/ppx_distr_guards/issues"
6license: "MIT"
7dev-repo: "git+https://github.com/vogler/ppx_distr_guards.git"
8substs: "META"
9build: [make]
10install: ["ocamlfind" "install" name "META" "ppx_distr_guards.native"]
11remove: ["ocamlfind" "remove" name]
12depends: [
13 "ocaml" {>= "4.02.1"}
14 "ocamlfind" {build}
15 "ocamlbuild" {build}
16 "ppx_tools" {with-test}
17]
18synopsis: "Extension to distribute guards over or-patterns."
19description:
20 "`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`"
21flags: light-uninstall
22url {
23 src: "https://github.com/vogler/ppx_distr_guards/archive/v0.1.tar.gz"
24 checksum: [
25 "sha256=077a1a5682ab3bab5b32d5f719271a7eaf285e453440790bed92cd9a0cac7bf5"
26 "md5=0c4ce5c0fdc7977ebedc0cd837678ec2"
27 ]
28}