note.opam -rw-r--r-- 902 B
1opam-version: "2.0"
2version: "0.6.1"
3synopsis: "Note is a simple CLI based note taking program"
4description: "Note is a simple CLI based note taking program"
5maintainer: ["Kevin Schoon <kevinschoon@gmail.com>"]
6authors: ["Kevin Schoon <kevinschoon@gmail.com>"]
7license: "AGPL3"
8homepage: "https://github.com/kevinschoon/note"
9bug-reports: "https://github.com/kevinschoon/note/issues"
10depends: [
11 "ANSITerminal" {>= "0.8.2"}
12 "base" {>= "v0.14.0"}
13 "core" {>= "v0.14.0"}
14 "dune" {>= "2.7" & >= "2.7"}
15 "ezjsonm" {>= "1.2.0"}
16 "omd" {>= "2.0.0~alpha1"}
17 "re" {>= "v1.9.0"}
18 "stdio" {>= "v0.14.0"}
19 "yaml" {>= "2.1.0"}
20 "odoc" {with-doc}
21]
22build: [
23 ["dune" "subst"] {pinned}
24 [
25 "dune"
26 "build"
27 "-p"
28 name
29 "-j"
30 jobs
31 "@install"
32 "@runtest" {with-test}
33 "@doc" {with-doc}
34 ]
35]
36depexts: ["pkg-config" "m4"]
37dev-repo: "git+https://github.com/kevinschoon/note.git"