forked from LukasPietzschmann/Haskellator9000
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
66 lines (57 loc) · 1.23 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
name: haskellator
version: 0.1.0.0
license: BSD-3-Clause
author: "Lukas Pietzschmann, Thomas Schöller"
maintainer: "Lukas Pietzschmann, Thomas Schöller"
copyright: "2024 Lukas Pietzschmann, Thomas Schöller"
extra-source-files:
- README.md
synopsis: SI-Units supporting calculator
category: Math
description: See README on GitHub <https://github.com/LukasPietzschmann/Haskellator9000>
dependencies:
- base >= 4.7 && < 5
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wpartial-fields
- -Wredundant-constraints
- -ddump-splices
default-extensions:
- DeriveLift
library:
source-dirs: src
dependencies:
- template-haskell
- mtl
- containers
executables:
haskellator-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskellator
- haskeline
- directory
tests:
haskellator-test:
main: Main.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskellator
- tasty
- tasty-hunit
- tasty-quickcheck