-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
59 lines (54 loc) · 1.34 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
name: mgs
version: 0.0.0.1
github: pniedzielski/mgs
license: BSD-3-Clause
license-file: [ LICENSE.md ]
author: Patrick M. Niedzielski
maintainer: Patrick M. Niedzielski <patrick@pniedzielski.net>
copyright: Copyright © 2022, Patrick M. Niedzielski.
synopsis: Tools for working with Minimalist Grammars
category: Text
description: >-
This package contains parsers and other utilities for working with
Minimalist Grammars (MGs) and related formalisms. The goal for this
package is to provide a high-quality, well-documented playground for
understanding MGs.
extra-source-files:
- README.md
- LICENSE.md
- package.yaml
ghc-options: -Wall -O4
default-extensions:
- UnicodeSyntax
library:
source-dirs: library
dependencies:
- base
- base-unicode-symbols
executables:
mgs:
source-dirs: executable
main: Main.hs
dependencies:
- base
ghc-options:
-rtsopts
-threaded
-with-rtsopts=-N
tests:
mgs-test-suite:
source-dirs: tests
main: Main.hs
dependencies:
- base
- base-unicode-symbols
- mgs
- tasty
- tasty-hunit
- tasty-travis
- tasty-quickcheck
- tasty-quickcheck-laws
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N