blob: cc3ce88dc5ead001a31a4613bf8baba0d94c1452 (
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 sand)
(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 sand)
(synopsis "A simple editor inspired by 'kilo'.")
; (description "A longer description")
; (tags
; (topics "to describe" your project))
(depends ocaml dune base stdio))
|