-
Notifications
You must be signed in to change notification settings - Fork 7
/
muhokama.opam
47 lines (42 loc) · 1.25 KB
/
muhokama.opam
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
opam-version: "2.0"
version: "dev"
synopsis: "A minimalist forum"
maintainer: "Xavier Van de Woestyne <[email protected]"
authors: [ "Xavier Van de Woestyne <[email protected]" ]
license: "MIT"
tags: ["web" "forum" "server"]
description: """
Muhokama is a web application that powers a rudimentary forum
because Slack, Discord and IRC are, in our opinion, not very
suitable for long conversations and message tracking.
"""
homepage: "https://github.com/xvw/muhokama"
dev-repo: "git://github.com/xvw/muhokama.git"
bug-reports: "https://github.com/xvw/muhokama/issues"
depends: [
"ocaml" { >= "4.13.1" }
"dune" { >= "2.9" }
"lwt" { >= "5.3.0" }
"caqti" { >= "1.6.0" }
"caqti-lwt" { >= "1.6.0" }
"caqti-driver-postgresql" { >= "1.6.0" }
"logs" {>= "0.7.0" }
"cmdliner" { >= "1.0.0"}
"hacl-star" { >= "0.4.4" }
"yaml" { >= "2.1.0" }
"dream" { >= "1.0.0~alpha4" }
"cohttp-lwt-unix" { >= "5.0.0" }
"tyxml" { >= "4.5.0" }
"yojson" { >= "1.7.0" }
"ppx_yojson_conv" { >= "0.14.0" }
"omd" { >= "2.0.0~alpha2" }
"odoc" {with-doc}
"alcotest" {with-test}
"preface" { >= "1.0.0" }
]
build: [
[ "dune" "subst" ]
[ "dune" "build" "-p" name "-j" jobs ]
[ "dune" "runtest" "-p" name ] {with-test}
[ "dune" "build" "@doc" "-p" name ] {with-doc}
]