-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.yaml
55 lines (49 loc) · 1.2 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
name : loopbreaker
synopsis : inline self-recursive definitions
description : Please see the README file on Github for more info
version : 0.1.1.1
category : Plugin
github : "polysemy-research/loopbreaker"
license : BSD3
author : ["Matej Nižník", "Sandy Maguire"]
maintainer : "[email protected]"
copyright : ["2019 Matej Nižník", "2019 Sandy Maguire"]
extra-source-files : [README.md, ChangeLog.md]
dependencies :
- base >= 4.7 && < 5
- ghc >= 8.6 && < 8.9
- syb >= 0.7 && < 0.8
- containers >= 0.6 && < 0.7
library :
source-dirs : src
exposed-modules : [Loopbreaker]
tests :
loopbreaker-test :
main : Spec.hs
source-dirs : test
ghc-options :
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -fplugin=Loopbreaker
build-tools :
- hspec-discover
dependencies :
- loopbreaker
- hspec >= 2.6.1 && < 3
- inspection-testing >= 0.4.2.1 && < 0.5
ghc-options :
- -Wall
default-extensions :
- ConstraintKinds
- FlexibleContexts
- KindSignatures
- LambdaCase
- MultiWayIf
- NamedFieldPuns
- OverloadedStrings
- ScopedTypeVariables
- TupleSections
- TypeFamilies
- UnicodeSyntax
- ViewPatterns