-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.yaml
80 lines (69 loc) · 1.39 KB
/
package.yaml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: &this archetype
version: 0.1.0.0
synopsis: Archetype IDL compiler
description: |
Archetype IDL compiler.
Please see the README on GitHub at <https://github.com/trskop/archetype#readme>
github: trskop/archetype
license: BSD3
license-file: LICENSE
author: Peter Trško
maintainer: [email protected]
copyright: (c) 2019 Peter Trško
category: Language, Compiler, Code Generation
extra-source-files:
- README.md
- ChangeLog.md
default-extensions:
- BlockArguments
- DeriveAnyClass
- DeriveDataTypeable
- DeriveFoldable
- DeriveGeneric
- DeriveTraversable
- DerivingStrategies
- DuplicateRecordFields
- FlexibleContexts
- LambdaCase
- NamedFieldPuns
- OverloadedStrings
- RankNTypes
- RecordWildCards
- TupleSections
- TypeApplications
ghc-options:
- -Wall
- -Werror
dependencies:
- base
- dhall >= 1.23
- endo >= 0.3
- mainplate
- text
- verbosity >= 0.3
library:
source-dirs: lib
dependencies:
- megaparsec # Choosen because of Dhall, which uses it too.
- mtl
- parsers
- text
- unordered-containers
- bytestring
- containers
- cryptonite
- memory
- prettyprinter
- uri-encode
executables:
ark:
source-dirs: compiler
main: Main.hs
dependencies:
- *this
- ansi-terminal
- optparse-applicative
- prettyprinter
- process
- terminal-size
- terminfo