-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.yaml
55 lines (49 loc) · 1 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: generics-eot
version: "0.4.0.1"
synopsis: A library for generic programming that aims to be easy to understand
description: "Documentation is here: <https://generics-eot.readthedocs.io/>"
category: Generics
maintainer: "[email protected]"
license: BSD3
github: soenkehahn/generics-eot
homepage: https://generics-eot.readthedocs.io/
dependencies:
- base >= 4.8 && < 5
extra-source-files:
- README.md
ghc-options:
- "-Wall -fno-warn-name-shadowing"
library:
exposed-modules:
- Generics.Eot
source-dirs:
- src
tests:
spec:
main: Spec.hs
source-dirs:
- test
- src
- examples
dependencies:
- hspec
- QuickCheck
- interpolate
- doctest
- markdown-unlit
ghc-options:
- "-pgmL markdown-unlit"
quickcheck:
main: Spec.hs
source-dirs:
- test/quickcheck
- src
dependencies:
- hspec
- mockery
- interpolate
- shake
- directory
- filepath
- QuickCheck
- silently