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" {< "0.15.0"} 24 "cppo" {build} 25 "stdlib-shims" 26] 27 28url { 29 src: "https://github.com/progman1/genprintlib/archive/v0.4.tar.gz" 30 checksum: [ 31 "sha256=9b71bdce7717f69007495ef7b189cc9cd9c7ea1b120a7c004d50f0275bc49ae3" 32 "md5=dc698dd8c97112c296a529781f1365b6" 33 ] 34}