this repo has no description
1opam-version: "2.0" 2#name: "genprint" 3#version: "0.1" 4 5synopsis: "PPX syntax extension and library package for printing values of any type" 6description: """ 7A PPX syntax extension and library package enabling printing of values of any type using OCaml's internal printing facilities a la toplevel evaluation. 8Useful for debugging as a quick alternative to ocamldebug/ppx_deriving/#install_printer. 9""" 10 11maintainer: "progman1" 12authors: [ "progman1" ] 13homepage: "https://github.com/progman1/genprintlib" 14bug-reports: "https://github.com/progman1/genprintlib/issues" 15dev-repo: "git+https://github.com/progman1/genprintlib.git" 16 17build: [ 18 ["dune" "subst"] {dev} 19# ["dune" "build" "@epoc1"] {ocaml:version <"4.08.0"} 20# ["dune" "build" "@epoc2"] {ocaml:version >="4.08.0"} 21 ["dune" "build" "-p" name "-j" jobs] 22] 23 24depends: [ 25 "ocaml" {>= "4.02.0" & < "4.09.0"} 26 "dune" 27 "stdlib-shims" 28 "ppxlib" {build & < "0.9.0"} 29] 30 31url { 32 src: "https://github.com/progman1/genprintlib/archive/v0.1.tar.gz" 33 checksum: [ 34 "sha256=8e931785a66adce31d051a23614fbbf6a2807dbb9a58acd0b31b99eb926b6487" 35 "md5=09a13f311c792283b3264b1cfbc936b9" 36 ] 37}