-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
111 lines (106 loc) · 2.58 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: text-slides
version: 0.1
synopsis: Generate slides from markdown
description:
text-slides generates slides in various formats from a markdown
description. It offers supports for diagrams, importing drawings
from keynote and for source code extraction.
license: BSD3
author: Stefan Wehr
maintainer: Stefan Wehr
github: skogsbaer/text-slides
category: Development
extra-source-files:
- LICENSE
- README.md
data-files: data/*
library:
source-dirs: src
dependencies:
- aeson
- QuickCheck
- base
- base16-bytestring
- bytestring
- containers
- cryptohash-md5
- directory
- exceptions
- extra
- filepath
- language-java
- megaparsec
- optparse-applicative
- parsec
- process
- process-extras
- safe
- shake
- shell-escape
- temporary
- text
- time
- transformers
- unordered-containers
- unix
- vector
- yaml
ghc-options:
- -Werror -W -fwarn-unused-imports -fwarn-unused-binds -fwarn-orphans
- -fwarn-unused-matches -fwarn-unused-do-bind -fwarn-wrong-do-bind
- -fwarn-missing-signatures -fno-warn-partial-type-signatures
- -Wredundant-constraints -fwarn-incomplete-patterns
executable:
main: Main.hs
source-dirs: app
dependencies:
- base
- text-slides
ghc-options:
- -Werror -W -fwarn-unused-imports -fwarn-unused-binds -fwarn-orphans
- -fwarn-unused-matches -fwarn-unused-do-bind -fwarn-wrong-do-bind
- -fwarn-missing-signatures -fno-warn-partial-type-signatures
- -Wredundant-constraints -fwarn-incomplete-patterns -rtsopts
tests:
unit-tests:
main: Tests.hs
source-dirs: test
dependencies:
- aeson
- base
- bytestring
- containers
- directory
- extra
- filepath
- heredoc
- HTF
- language-java
- process
- safe
- temporary
- text-slides
- text
- transformers
- vector
build-tools: HTF
ghc-options:
- -Werror -W -fwarn-unused-imports -fwarn-unused-binds -fwarn-orphans
- -fwarn-unused-matches -fwarn-unused-do-bind -fwarn-wrong-do-bind
- -fwarn-missing-signatures -fno-warn-partial-type-signatures
- -Wredundant-constraints -fwarn-incomplete-patterns -rtsopts
default-extensions:
- DeriveDataTypeable
- DeriveFoldable
- DeriveFunctor
- DeriveGeneric
- DeriveTraversable
- DerivingStrategies
- DoAndIfThenElse
- EmptyDataDecls
- FlexibleContexts
- OverloadedStrings
- ScopedTypeVariables
- StandaloneDeriving
- TypeOperators
- ViewPatterns