-
Notifications
You must be signed in to change notification settings - Fork 6
/
preface.opam
38 lines (33 loc) · 996 Bytes
/
preface.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
opam-version: "2.0"
version: "1.0.0"
maintainer: "[email protected]"
authors: [
"Didier Plaindoux <[email protected]>"
"Pierre Ruyter <[email protected]>"
"Xavier Van de Woestyne <[email protected]>"
]
license: "MIT"
tags: ["library" "standard" "monad"]
homepage: "https://github.com/xvw/preface"
dev-repo: "git+https://github.com/xvw/preface.git"
bug-reports: "https://github.com/xvw/preface/issues"
build: [
[ "dune" "subst" ] {dev}
[ "dune" "build" "-p" name "-j" jobs ]
[ "dune" "runtest" "-p" name ] {with-test}
[ "dune" "build" "@doc" "-p" name ] {with-doc}
]
depends: [
"ocaml" { >= "4.12.0" }
"dune" { >= "2.8.0" }
"alcotest" {with-test}
"qcheck-core" {with-test}
"qcheck-alcotest" {with-test}
"mdx" {with-test}
"odoc"{with-doc}
]
synopsis: "An opinionated library for function programming (à La Haskell)"
description:"""
Preface is an opinionated library designed to facilitate the
handling of recurring functional programming idioms in OCaml.
"""