-
Notifications
You must be signed in to change notification settings - Fork 5
/
modern-ocaml.opam
32 lines (32 loc) · 949 Bytes
/
modern-ocaml.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
opam-version: "2.0"
maintainer: "Louis Roché <louis@louisroche.net>"
authors: "Louis Roché <louis@louisroche.net>"
homepage: "https://github.com/Khady/modern-ocaml"
bug-reports: "https://github.com/Khady/modern-ocaml/issues"
license: "AGPL-3.0-or-later"
dev-repo: "git+https://github.com/Khady/modern-ocaml.git"
doc: "https://khady.github.io/modern-ocaml/"
tags: ["ocaml" "is" "love"]
depends: [
"ocaml"
"dune" {>= "3.12"}
"ocamlformat" {= "0.26.2" & with-dev-setup}
"ocaml-lsp-server" {with-dev-setup}
"odoc" {with-doc}
"dune-release" {with-dev-setup}
]
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
["dune" "build" "-p" name "-j" jobs] {with-doc}
]
name: "modern-ocaml"
synopsis: "Template for a modern ocaml project"
description: "Complete configuration of an ocaml project
- package manager
- CI
- build system
- code formatting
- editor setup
"