this repo has no description
1opam-version: "2.0" 2synopsis: "An OCaml Linter / Style Checker" 3maintainer: ["William Goeller <william@williamgoeller.com>"] 4authors: ["Vighnesh Vijay" "Daniel Like" "William Goeller"] 5license: "Apache-2.0" 6homepage: "https://github.com/upenn-cis1xx/camelot" 7bug-reports: "https://github.com/upenn-cis1xx/camelot/issues" 8depends: [ 9 "dune" {>= "2.5"} 10 "ocaml" {>= "4.10.0" & < "4.11.0"} 11 "ANSITerminal" {>= "0.8"} 12 "yojson" {>= "1.7.0"} 13 "ppx_expect" {with-test & >= "v0.13.0"} 14 "odoc" {with-doc & >= "1.5.0"} 15] 16build: [ 17 ["dune" "subst"] {dev} 18 [ 19 "dune" 20 "build" 21 "-p" 22 name 23 "-j" 24 jobs 25 "@install" 26 "@runtest" {with-test} 27 "@doc" {with-doc} 28 ] 29] 30dev-repo: "git+https://github.com/upenn-cis1xx/camelot.git" 31url { 32 src: "https://github.com/upenn-cis1xx/camelot/archive/1.3.0.tar.gz" 33 checksum: [ 34 "md5=9e21687976fb4b4d477777d64d37dac6" 35 "sha512=ef5363dc552cfe055d26c47c3fad476e5f12d42b9e4612b795b350d473dbc7a44a9e3d9945c8c91f2987f164db1da9bef82af0135616aa84dc96b1d95057c44c" 36 ] 37}