diff options
Diffstat (limited to '')
-rw-r--r-- | dune-project | 2 | ||||
-rw-r--r-- | wormhole.opam | 41 |
2 files changed, 41 insertions, 2 deletions
diff --git a/dune-project b/dune-project index b50935b..d0f9448 100644 --- a/dune-project +++ b/dune-project @@ -3,8 +3,6 @@ (name wormhole) (version 82ea8dd-dirty) -(generate_opam_files true) - (authors "Marc Coquand") (maintainers "Marc Coquand") diff --git a/wormhole.opam b/wormhole.opam index e69de29..762e1df 100644 --- a/wormhole.opam +++ b/wormhole.opam @@ -0,0 +1,41 @@ +# This file is generated by dune, edit dune-project instead +opam-version: "2.0" +synopsis: "A short synopsis" +description: "A longer description" +maintainer: ["Maintainer Name"] +authors: ["Author Name"] +license: "LICENSE" +tags: ["topics" "to describe" "your" "project"] +homepage: "https://github.com/username/reponame" +doc: "https://url/to/documentation" +bug-reports: "https://github.com/username/reponame/issues" +depends: [ + "ocaml" + "crunch" + "dream" + "dune" {>= "3.11"} + "ppx_yojson_conv" + "cohttp" + "cohttp-lwt-unix" + "odoc" {with-doc} + "containers" + "calendar" + "ptime" + "mirage-crypto-rng" {>= "0.11.0"} + "mirage-crypto-rng-lwt" {>= "0.11.0"} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/username/reponame.git" |