this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/cinaps" 5bug-reports: "https://github.com/janestreet/cinaps/issues" 6dev-repo: "git+https://github.com/janestreet/cinaps.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/cinaps/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.07.0" & < "4.14"} 14 "dune" {>= "1.5.1"} 15 "re" {>= "1.8.0"} 16] 17synopsis: "Trivial metaprogramming tool" 18description: " 19Cinaps is a trivial Metaprogramming tool using the OCaml toplevel. It 20is based on the same idea as expectation tests. The user write some 21OCaml code inside special comments and cinaps make sure that what 22follows is what is printed by the OCaml code. 23" 24url { 25 src: 26 "https://ocaml.janestreet.com/ocaml-core/v0.13/files/cinaps-v0.13.0.tar.gz" 27 checksum: [ 28 "sha256=5597092f04039fab8bd0224ac232c74b0d97fd31cead7cc30bd68bf02cdcddf9" 29 "md5=a08fba2769d726d877b0e653d595fd52" 30 ] 31}