this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

New package pattern.0.1.0 (#14146)

* New package pattern.0.1.0

pattern is a PPX extension that generates functions from patterns
that explain match failures by returning the common context and the
list of differences between a pattern and a value.

* Add build instruction!

* Remove reference to ppx_deriving

* Add ppx_deriving to dependencies

* Update dependencies in the ocaml repo

* Fix compatibility with old OCaml versions

authored by

thierry-martinez and committed by
Marcello Seri
2a7a6ceb a289f4a3

+17
+17
packages/pattern/pattern.0.1.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Run-time patterns that explain match failures" 3 + description: "pattern is a PPX extension that generates functions from patterns that explain match failures by returning the common context and the list of differences between a pattern and a value" 4 + maintainer: "Thierry Martinez <Thierry.Martinez@inria.fr>" 5 + authors: "Thierry Martinez <Thierry.Martinez@inria.fr>" 6 + homepage: "https://gitlab.inria.fr/tmartine/pattern" 7 + bug-reports: "https://gitlab.inria.fr/tmartine/pattern/issues" 8 + license: "BSD" 9 + dev-repo: "git+https://gitlab.inria.fr/tmartine/pattern.git" 10 + build: [["dune" "build" "-p" name "-j" jobs]] 11 + depends: [ 12 + "dune" {>= "1.9.1"} "ppxlib" "stdcompat" "ppx_deriving" 13 + "ocaml" {>= "4.04.1" & < "4.08.0"}] # no ppxlib for OCaml <4.04.1 14 + url { 15 + src: "https://gitlab.inria.fr/tmartine/pattern/-/archive/0.1.0/pattern-0.1.0.tar.gz" 16 + checksum: "md5=c82c63f7e7c5c866bf40ae7a4a315165" 17 + }