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 internal printing facilities a la toplevel evaluation.
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.02.0" & < "4.09.0"}
22 "dune"
23 "ppxlib" {< "0.9.0"}
24 "cppo" {build}
25 "stdlib-shims"
26]
27
28url {
29 src: "https://github.com/progman1/genprintlib/archive/v0.2.tar.gz"
30 checksum: [
31 "sha256=5de73818ad276d0acd51b3def5283780be7ec20eeb27ef7b50f931b652293a06"
32 "md5=c05b2c71c1ed187ddd5aacfcdc7c9df8"
33 ]
34}