diff options
author | Marc Coquand <marc@mccd.space> | 2024-05-13 11:00:47 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-05-13 11:00:47 -0500 |
commit | 121a6a376209de3f5a9474bf03721e2032a73e01 (patch) | |
tree | 6f02ffa1695510aa9227a9290abac11811b25373 /stitch.opam | |
download | stitch-121a6a376209de3f5a9474bf03721e2032a73e01.tar.gz stitch-121a6a376209de3f5a9474bf03721e2032a73e01.tar.bz2 stitch-121a6a376209de3f5a9474bf03721e2032a73e01.zip |
initial commit
Diffstat (limited to 'stitch.opam')
-rw-r--r-- | stitch.opam | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/stitch.opam b/stitch.opam new file mode 100644 index 0000000..0a77db1 --- /dev/null +++ b/stitch.opam @@ -0,0 +1,32 @@ +# This file is generated by dune, edit dune-project instead +opam-version: "2.0" +synopsis: "A Terminal Note Taking App" +description: "" +maintainer: ["Marc Coquand"] +authors: ["Marc Coquand"] +license: "GPL-3.0-only" +tags: ["productivity" "minimal"] +doc: "https://url/to/documentation" +depends: [ + "ocaml" + "dune" {>= "3.11"} + "cmdliner" + "notty" + "lambda-term" + "shexp" + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] |