blob: 55c7f115b4363a9e7d6d159dd32cacc765ba5851 (
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
)
)
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
|