-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.yaml
53 lines (49 loc) · 1.07 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
name: lambdananas
version: 2.4.2.0
github: "Epitech/lambdananas"
license: BSD3
author: ["Arthur Soulié", "Marc Planard"]
maintainer: "[email protected]"
description: Please see the README on GitHub at <https://github.com/Epitech/lambdananas#readme>
extra-source-files:
- README.md
- ChangeLog.md
dependencies:
- base >= 4.7 && < 5
- optparse-applicative >= 0.18
- mtl >= 2.2
- directory >= 1.3
- filepath >= 1.4
- haskell-src-exts >= 1.23
- text >= 2.0
- regex-tdfa >= 1.3 && < 2
library:
source-dirs:
- src
- src/rules
ghc-options:
- -O3
- -Wall
executables:
lambdananas-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -O3
- -Wall
dependencies:
- lambdananas
tests:
integration-tests:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- lambdananas
- hspec >= 2.7