add license + dune-project

This commit is contained in:
Swrup 2025-09-21 17:44:14 +02:00
parent cd85efffde
commit 2eb42f51cc
4 changed files with 709 additions and 23 deletions

View file

@ -4,23 +4,29 @@
(generate_opam_files true)
(source
(github username/reponame))
; (source
; (github username/reponame))
(authors "Author Name <author@example.com>")
(authors "Olivier Pierre <swrup@protonmail.com>")
(maintainers "Maintainer Name <maintainer@example.com>")
(maintainers "Olivier Pierre <swrup@protonmail.com>")
(license LICENSE)
(license AGPL-3.0-only)
(documentation https://url/to/documentation)
; (documentation https://url/to/documentation)
(package
(name mte)
(synopsis "A short synopsis")
(description "A longer description")
(depends ocaml)
(synopsis "MTE - the MirageOS Taler Exchange")
(description "A GNU Taler exchange implementation with the unikernel framework MirageOS")
(tags
("add topics" "to describe" your project)))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/reference/dune-project/index.html
("GNU Taler" MirageOS unikernel OCaml crypto))
(depends
(ocaml (>= 5.3))
crunch
vif
jsont
cohttp
fmt
(ocamlformat :with-dev-setup)
))