this repo has no description
1opam-version: "2.0"
2
3synopsis: "PPX syntax extension and library package for printing values of any type"
4description: """
5A PPX syntax extension and library package enabling printing of values of any type using OCaml's REPL printing facility.
6Useful for debugging as a quick alternative to ocamldebug/ppx_deriving/#install_printer.
7"""
8
9maintainer: "progman1"
10authors: [ "progman1" ]
11homepage: "https://github.com/progman1/genprintlib"
12bug-reports: "https://github.com/progman1/genprintlib/issues"
13dev-repo: "git+https://github.com/progman1/genprintlib.git"
14
15build: [
16 ["dune" "subst"] {dev}
17 ["dune" "build" "-p" name "-j" jobs]
18]
19
20depends: [
21 "ocaml" {>= "4.04.1" & < "4.11"}
22 "dune" {>= "1.9"}
23 "ppxlib"
24 "cppo" {build}
25 "stdlib-shims"
26]
27
28url {
29 src:
30 "https://github.com/ocaml/opam-source-archives/raw/main/genprint-0.3a.tar.gz"
31 checksum: [
32 "sha256=720c867cb8362501a30635e5dec1fc2b3c3c96c9fc5c7541044a7f9f0adefa1a"
33 "md5=d5b58cc0aa7e1dd745d94fcc405d9d27"
34 ]
35}