-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmlisp.opam
37 lines (37 loc) · 784 Bytes
/
mlisp.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A Lisp implementation in OCaml"
description: "A Lisp implementation in OCaml"
maintainer: ["Muqiu Han"]
authors: ["Muqiu Han"]
license: "MPL-2.0"
tags: ["lisp" "interpreter" "compiler"]
homepage: "https://github.com/muqiuhan/MLisp"
doc: "https://github.com/muqiuhan/MLisp"
bug-reports: "https://github.com/muqiuhan/MLisp/issues"
depends: [
"ocaml"
"dune" {>= "3.3"}
"core"
"ocolor"
"camlp-streams"
"ocamline"
"core_unix"
"ppx_string"
"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/muqiuhan/MLisp.git"