blob: 5676cf0d6b70b6d7ac7d6bc54823679ae71d3e92 (
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
|
(lang dune 3.11)
(name fixgen)
(generate_opam_files true)
(source
(github username/reponame))
(authors "Marc Coquand")
(maintainers "Marc Coquand")
(license AGPL-3.0-only)
(documentation https://url/to/documentation)
(using menhir 2.1)
(package
(name fixgen)
(synopsis "Generate fixtures for testing")
(description "Generate fixtures for testing")
(depends ocaml dune ppx_inline_test ppx_deriving uuidm alcotest cmdliner
)
)
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
|