this repo has no description
1opam-version: "2.0"
2build: [
3 ["dune" "subst"] {dev}
4 ["dune" "build" "-p" name "-j" jobs]
5 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
6 ["dune" "build" "-p" name "@doc"] {with-doc}
7]
8maintainer: ["Thierry Martinez <thierry.martinez@inria.fr>"]
9authors: ["Thierry Martinez <thierry.martinez@inria.fr>"]
10bug-reports: "https://github.com/thierry-martinez/pattern"
11homepage: "https://github.com/thierry-martinez/pattern"
12doc: "https://github.com/thierry-martinez/pattern"
13license: "BSD-2-Clause"
14dev-repo: "git+https://github.com/thierry-martinez/pattern.git"
15synopsis: "Run-time patterns that explain match failures"
16description: """
17pattern is a PPX extension that generates functions from patterns
18that explain match failures by returning the common context and
19the list of differences between a pattern and a value.
20"""
21depends: [
22 "ocaml" {>= "4.08.0"}
23 "dune" {>= "1.10.0"}
24 "metapp" {>= "0.4.4"}
25 "metaquot" {>= "0.4.0"}
26 "refl" {>= "0.4.1"}
27 "ocaml-migrate-parsetree" {>= "1.5.0"}
28 "stdcompat" {>= "10"}
29]
30url {
31 src: "https://github.com/thierry-martinez/pattern/releases/download/v0.3.2/pattern.0.3.2.tar.gz"
32 checksum: "sha512=1bc7d5c52b5cc4f67615d14cb68c39ba6215b6441ff832d685bd13c8fe3faaefcab4449baa25d8ebd88b4043784531edab26ff69ef28156ecd77549b87982e4f"
33}