-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.yaml
71 lines (66 loc) · 1.53 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
67
68
69
70
71
name: LtuPatternFactory
version: 0.1.0.0
synopsis: Comparing OO Design Patterns with Functional Programming concepts
homepage: https://github.com/thma/LtuPatternFactory#readme
github: "thma/LtuPatternFactory"
license: Apache-2.0
license-file: LICENSE
author: Thomas Mahler
maintainer: [email protected]
copyright: 2018 - 2021 Thomas Mahler
category: Programming
#build-type: Simple
#cabal-version: >=1.10
extra-source-files: README.md
description: Please see the README on GitHub at <https://github.com/thma/LtuPatternFactory#readme>
dependencies:
- base >= 4.7 && < 5
executables:
LtuPatternFactory:
main: Main.hs
source-dirs: src
# ghc-options:
# - -threaded
# - -rtsopts
# - -with-rtsopts=-N
dependencies:
# - LtuPatternFactory
- containers
- mtl
- aeson
- aeson-pretty
- text
- directory
- bytestring
- tagged
- cmark-gfm
- cheapskate
- blaze-html
- parallel
- comonad
- time
- zlib
tests:
LtuPatternFactory-test:
main: Main.hs
source-dirs: src
# ghc-options:
# - -threaded
# - -rtsopts
# - -with-rtsopts=-N
dependencies:
# - LtuPatternFactory
- containers
- mtl
- aeson
- aeson-pretty
- text
- directory
- bytestring
- tagged
- cmark-gfm
- cheapskate
- blaze-html
- parallel
- comonad
- zlib