forked from links-lang/links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.opam
40 lines (37 loc) · 997 Bytes
/
links.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
opam-version: "2.0"
maintainer: "Daniel Hillerström <[email protected]>"
authors: "The Links Team <[email protected]>"
synopsis: "The Links Programming Language"
description: "Links is a functional programming language designed to make web programming easier."
homepage: "https://github.com/links-lang/links"
dev-repo: "git+https://github.com/links-lang/links.git"
bug-reports: "https://github.com/links-lang/links/issues"
license: "GPL-3.0-only"
build: [
[ "dune" "exec" "preinstall/preinstall.exe" "--" "-libdir" _:lib ]
[ make "opam-build-links.opam" ]
]
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.7"}
"ppx_deriving"
"ppx_deriving_yojson" {>= "3.3"}
"base64"
"linenoise"
"ANSITerminal"
"lwt" {>= "5.0.0"}
"cohttp"
"cohttp-lwt"
"cohttp-lwt-unix"
"conduit-lwt-unix"
"uri"
"tls"
"websocket"
"websocket-lwt-unix"
"safepass"
"result"
"ocamlfind"
"menhir" {>= "20210419"}
"ppx_sexp_conv" {<= "v0.15.1"}
"calendar" {>= "2.0.4"}
]