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://gitlab.inria.fr/tmartine/pattern" 11homepage: "https://gitlab.inria.fr/tmartine/pattern" 12doc: "https://gitlab.inria.fr/tmartine/pattern" 13license: "BSD" 14dev-repo: "git+https://gitlab.inria.fr/tmartine/pattern" 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 "dune" {>= "1.10.0"} 23 "ppxlib" {>= "0.9.0" & < "0.14.0"} 24 "ppx_deriving" {>= "4.4"} 25 "stdcompat" {>= "10"} 26] 27url { 28 src: "https://gitlab.inria.fr/tmartine/pattern/-/archive/0.1.1/pattern-0.1.1.tar.gz" 29 checksum: "sha512=5fa5bfba1a4f2587a391ec622ab4281d4a2acceaac2fdc45a85990cbc98e5c2865b6634363374ae7b554435f500f5a80065c1abc2b33698175a72a38a66f8724" 30}