blob: 1cca4b6ce000049d81b506c5f591502976383c0d (
plain) (
blame)
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
|
(lang dune 3.7)
(name sandy)
(generate_opam_files true)
; Needed to generate correct debug information.
; See https://dune.readthedocs.io/en/stable/dune-files.html#stanza-map_workspace_root
(map_workspace_root false)
(source
(github username/reponame))
(authors "Federico Igne")
; (maintainers "Maintainer Name")
; (license LICENSE)
; (documentation https://url/to/documentation)
(package
(name sandy)
(synopsis "A simple editor inspired by 'kilo'.")
; (description "A longer description")
; (tags
; (topics "to describe" your project))
(depends ocaml dune base stdio))
|