-
Notifications
You must be signed in to change notification settings - Fork 8
/
hledger-iadd.cabal
134 lines (128 loc) · 5.09 KB
/
hledger-iadd.cabal
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
name: hledger-iadd
version: 1.3.21
synopsis: A terminal UI as drop-in replacement for hledger add
description: This is a terminal UI as drop-in replacement for hledger add.
.
It improves in the following ways on hledger's add command:
.
* Interactive as-you-type completion for
account names and descriptions with optional
fuzzy matching.
.
* Integrated calculator: Amounts can be written
as simple sums with real-time feedback on the
result.
.
* All actions while entering a transaction can
be undone
.
* Configurable format for date input. Instead
of @y\/m\/d@ it is also possible to use other
formats like the german @d.m.y@.
homepage: https://github.com/hpdeifel/hledger-iadd#readme
bug-reports: https://github.com/hpdeifel/hledger-iadd/issues
license: BSD3
license-file: LICENSE
author: Hans-Peter Deifel <[email protected]>
maintainer: Hans-Peter Deifel <[email protected]>
copyright: 2018 Hans-Peter Deifel
category: Finance, Console
build-type: Simple
cabal-version: >=1.10
tested-with: GHC ==8.10.7
, GHC ==9.0.2
, GHC ==9.2.8
, GHC ==9.4.8
, GHC ==9.6.3
extra-source-files:
doc/screencast.gif
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/hpdeifel/hledger-iadd.git
library
hs-source-dirs: src
exposed-modules: Model
, View
, AmountParser
, DateParser
, ConfigParser
, Brick.Widgets.List.Utils
, Brick.Widgets.HelpMessage
, Brick.Widgets.CommentDialog
, Brick.Widgets.BetterDialog
, Brick.Widgets.WrappedText
, Brick.Widgets.Edit.EmacsBindings
, Brick.Widgets.Border.Utils
, Data.Time.Ext
default-language: Haskell2010
build-depends: base >= 4.14 && < 5
, hledger-lib >= 1.33 && < 1.41
, brick >= 2.1 && < 2.6
, vty >= 6.1 && < 6.3
, text
, microlens
, microlens-th
, microlens-mtl
, text-zipper >= 0.10
, transformers >= 0.3
, time >= 1.5
, vector
, megaparsec >= 7.0 && <9.7
, containers
, optparse-applicative
, directory
, xdg-basedir
, unordered-containers
, free >= 4.12.4
ghc-options: -Wall -fdefer-typed-holes -fno-warn-name-shadowing
executable hledger-iadd
hs-source-dirs: src/main
main-is: Main.hs
other-modules: Paths_hledger_iadd
default-language: Haskell2010
build-depends: base >= 4.14 && < 5
, hledger-iadd
, hledger-lib >= 1.33 && <1.41
, brick >= 2.1 && < 2.6
, vty >= 6.1 && < 6.3
, text
, microlens
, microlens-th
, microlens-mtl
, text-zipper >= 0.10
, transformers >= 0.3
, time >= 1.5
, vector
, optparse-applicative
, directory
, xdg-basedir
, unordered-containers
, free >= 4.12.4
, megaparsec >= 7.0 && <9.7
ghc-options: -threaded -Wall -fdefer-typed-holes -fno-warn-name-shadowing
test-suite spec
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Spec.hs
other-modules: DateParserSpec
, ConfigParserSpec
, AmountParserSpec
, ModelSpec
default-language: Haskell2010
build-depends: base >= 4.14 && < 5
, hledger-iadd
, hledger-lib >= 1.33 && <1.41
, text
, transformers >= 0.3
, time >= 1.5
, vector
, hspec
, QuickCheck
, quickcheck-instances
, free >= 4.12.4
, megaparsec >= 7.0 && <9.7
, text-zipper >= 0.10
build-tool-depends: hspec-discover:hspec-discover ==2.*
ghc-options: -threaded -Wall -fdefer-typed-holes -fno-warn-name-shadowing