Shells in OCaml
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "A shell"
4description:
5 "msh is a shell written completely in OCaml using the merry library"
6maintainer: ["Patrick Ferris <patrick@sirref.org>"]
7authors: ["Patrick Ferris <patrick@sirref.org>"]
8license: "ISC"
9doc: "https://url/to/documentation"
10depends: [
11 "dune" {>= "3.20"}
12 "eio" {>= "1.3" & with-test}
13 "fmt" {>= "0.11.0"}
14 "eio_posix" {>= "1.3"}
15 "cmdliner" {>= "1.3.0"}
16 "merry"
17 "odoc" {with-doc}
18]
19build: [
20 ["dune" "subst"] {dev}
21 [
22 "dune"
23 "build"
24 "-p"
25 name
26 "-j"
27 jobs
28 "@install"
29 "@runtest" {with-test}
30 "@doc" {with-doc}
31 ]
32]
33dev-repo: "git+https://tangled.org/patrick.sirref.org/merry"
34x-maintenance-intent: ["(latest)"]