-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcamelot.opam
More file actions
33 lines (33 loc) · 851 Bytes
/
camelot.opam
File metadata and controls
33 lines (33 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "2.1.1"
synopsis: "An OCaml Linter / Style Checker"
maintainer: ["William Goeller <william@williamgoeller.com>"]
authors: ["Vighnesh Vijay" "Daniel Like" "William Goeller"]
license: "Apache-2.0"
homepage: "https://github.com/upenn-cis1xx/camelot"
bug-reports: "https://github.com/upenn-cis1xx/camelot/issues"
depends: [
"dune" {>= "2.5"}
"ocaml" {>= "5.4.1" & < "5.5.0"}
"ANSITerminal" {>= "0.8"}
"yojson" {>= "1.7.0"}
"camlp-streams" {>= "5.0.1"}
"ppx_expect" {with-test & >= "v0.17.3"}
"odoc" {with-doc & >= "1.5.0"}
]
dev-repo: "git+https://github.com/upenn-cis1xx/camelot.git"
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]