-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.yaml
60 lines (52 loc) · 907 Bytes
/
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
name: simformat
version: 0.1.1.0
license: MIT
license-file: LICENSE
synopsis: Format Haskell source files.
description: Format Haskell source files according to convention at SimSpace - see the README
category: Language
github: Simspace/simformat
ghc-options:
- -Wall
- -Werror
- -Wtabs
- -O2
default-extensions:
- LambdaCase
- RecordWildCards
- OverloadedStrings
- ScopedTypeVariables
- TupleSections
dependencies:
- base
- bytestring
- containers
- directory
- filepath
- megaparsec >= 6.0.0
- optparse-applicative
- process
- text
- turtle
- yaml
library:
source-dirs: src
executables:
simformat:
main: simformat.hs
source-dirs: app
dependencies:
- simformat
tests:
test:
main: main.hs
source-dirs: test
dependencies:
- simformat
- hspec
- QuickCheck
- unliftio
simformat-doctests:
main: doctests.hs
dependencies:
- doctest