-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
43 lines (32 loc) · 1.16 KB
/
dune-project
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
31
32
33
34
35
36
37
38
39
40
41
42
43
(lang dune 3.10)
(using menhir 2.0)
(using mdx 0.4)
(cram enable)
(name mra_bi_assembler)
(generate_opam_files true)
(source
(github katrinafyi/mra-bi-assembler))
(authors "Kait Lam <[email protected]>")
(maintainers "Kait Lam <[email protected]>")
(license Apache-2.0)
(documentation https://katrinafyi.github.io/mra-bi-assembler/mra_bi_assembler/)
(package
(name mra_bi_assembler)
(synopsis "Deriving an assembler/disassembler from the ARM MRA")
(description "Libraries for programatically generating an assembler and disassembler from a machine-readable architecture specification. Created for the ARM Aarch64 architecture, but designed to be mostly architecture-agnostic. Includes a generic domain-specific language for defining invertible parsers and a simple bidirectional imperative language.")
(depends
ocaml
dune
angstrom
faraday
containers
re
(ppx_deriving :build)
(ppx_deriving_yojson :build)
(js_of_ocaml :build)
(ppx_expect :with-test)
(ppx_inline_test :with-test)
(mdx (and :with-test (>= "2.3.0")))
)
(tags ("assembly" "parser" "disassembly")))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project