-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnightmare.opam
More file actions
34 lines (34 loc) · 850 Bytes
/
nightmare.opam
File metadata and controls
34 lines (34 loc) · 850 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
34
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "An ad-hoc framework for writing web application using OCaml"
description:
"An ad-hoc framework (that should fit well with Dream) for writting OCaml web application"
maintainer: ["Funkywork"]
authors: ["Funkywork"]
license: "MIT"
homepage: "https://github.com/funkywork/nightmare"
bug-reports: "https://github.com/funkywork/nightmare/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "5.0.0"}
"lwt" {>= "5.6.1"}
"preface" {>= "1.0.0"}
"alcotest" {with-test}
"nightmare-test" {= version & with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/funkywork/nightmare.git"