-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.yaml
99 lines (99 loc) · 1.98 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
name: tmux-tui
version: 0.2.0.0
synopsis: Pretty printing a diff of two values.
description: Please see the README at <https://github.com/stoeffel/tmux-tui>.
author: Christoph Hermann
maintainer: [email protected]
copyright: 2020 Christoph Hermann
homepage: https://github.com/stoeffel/tmux-tui#readme
license-file: LICENSE
category: Diffing
github: stoeffel/tmux-tui
extra-doc-files:
- README.md
- CHANGELOG.md
default-extensions:
- DeriveGeneric
- GeneralizedNewtypeDeriving
- NamedFieldPuns
- NoImplicitPrelude
- OverloadedStrings
- ScopedTypeVariables
data-files:
- ./words/large/adjectives.txt
- ./words/large/adverbs.txt
- ./words/large/names.txt
- ./words/medium/adjectives.txt
- ./words/medium/adverbs.txt
- ./words/medium/names.txt
- ./words/small/adjectives.txt
- ./words/small/adverbs.txt
- ./words/small/names.txt
executables:
tmux-tui:
dependencies:
- base
- tmux-tui
- protolude
ghc-options:
- -threaded
- -rtsopts "-with-rtsopts=-N -T"
- -O2
main: Main.hs
source-dirs:
- app/
library:
dependencies:
- aeson
- attoparsec
- bytestring
- safe-exceptions
- base >= 4.10.1.0 && < 5
- brick
- file-embed
- directory
- filepath
- fuzzy
- text >= 1.2 && < 1.3
- process
- text-zipper
- microlens
- microlens-th
- protolude
- random
- vty
- unix
- time >= 1.9 && < 2.0
exposed-modules:
- Tmux.Tui
source-dirs: src
tests:
spec:
dependencies:
- base
- tasty
- tasty-hunit
- tasty-test-reporter
- text >= 1.2 && < 1.3
- aeson
- attoparsec
- bytestring
- safe-exceptions
- brick
- file-embed
- directory
- filepath
- fuzzy
- process
- text-zipper
- microlens
- microlens-th
- protolude
- random
- vty
- unix
- time >= 1.9 && < 2.0
main: Main.hs
source-dirs:
- test
- src