blob: c17bde7190026a469e39f70934d42f55c3ff6d80 (
plain)
| 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
 | (lang dune 3.16)
(name ogit)
(generate_opam_files true)
(source
 (github username/reponame))
(authors "Marius Peter")
(maintainers "Marius Peter")
(license LICENSE)
(documentation https://url/to/documentation)
(package
 (name ogit)
 (synopsis "Replacement for cgit")
 (description "A longer description")
 (depends
   ocaml
   dune
   dream
   git)
 (tags
  (topics "to describe" your project)))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/reference/dune-project/index.html
 |