2015-08-13 21:52:10 +03:00
|
|
|
name : hledger-ui
|
2024-06-02 02:30:20 +03:00
|
|
|
version : 1.34.99
|
2023-09-21 09:40:24 +03:00
|
|
|
synopsis : Terminal interface for the hledger accounting system
|
2015-08-13 21:52:10 +03:00
|
|
|
description : |
|
2023-09-21 09:40:24 +03:00
|
|
|
A simple terminal user interface for the hledger accounting system.
|
2020-03-22 20:49:02 +03:00
|
|
|
It can be a more convenient way to browse your accounts than the CLI.
|
|
|
|
This package currently does not support Microsoft Windows, except in WSL.
|
|
|
|
|
|
|
|
hledger is a robust, cross-platform set of tools for tracking money,
|
|
|
|
time, or any other commodity, using double-entry accounting and a
|
|
|
|
simple, editable file format, with command-line, terminal and web
|
|
|
|
interfaces. It is a Haskell rewrite of Ledger, and one of the leading
|
|
|
|
implementations of Plain Text Accounting. Read more at:
|
|
|
|
<https://hledger.org>
|
2015-08-13 21:52:10 +03:00
|
|
|
|
2016-08-09 21:39:42 +03:00
|
|
|
category : Finance, Console
|
2017-03-08 11:19:13 +03:00
|
|
|
license : GPL-3
|
2015-08-13 21:52:10 +03:00
|
|
|
author : Simon Michael <simon@joyful.com>
|
|
|
|
maintainer : Simon Michael <simon@joyful.com>
|
|
|
|
github : simonmichael/hledger
|
|
|
|
homepage : http://hledger.org
|
|
|
|
bug-reports : http://bugs.hledger.org
|
2017-08-26 02:31:54 +03:00
|
|
|
stability : stable
|
2023-07-01 20:34:46 +03:00
|
|
|
tested-with: GHC==8.10.7, GHC==9.0.2, GHC==9.2.8, GHC==9.4.5, GHC==9.6.2
|
2017-08-26 02:31:54 +03:00
|
|
|
|
2015-08-13 21:52:10 +03:00
|
|
|
extra-source-files:
|
2019-01-26 05:11:04 +03:00
|
|
|
- CHANGES.md
|
2020-03-22 19:07:47 +03:00
|
|
|
- README.md
|
2017-12-07 05:45:01 +03:00
|
|
|
- hledger-ui.1
|
|
|
|
- hledger-ui.txt
|
|
|
|
- hledger-ui.info
|
2017-08-26 02:31:54 +03:00
|
|
|
|
2018-01-26 22:49:26 +03:00
|
|
|
#data-files:
|
|
|
|
|
2016-06-13 02:02:44 +03:00
|
|
|
flags:
|
|
|
|
threaded:
|
|
|
|
description: Build with support for multithreaded execution
|
|
|
|
default: true
|
2024-04-25 19:28:11 +03:00
|
|
|
manual: false
|
|
|
|
ghcdebug:
|
|
|
|
description: Build with support for attaching a ghc-debug client
|
|
|
|
default: false
|
|
|
|
manual: true
|
2017-08-26 02:31:54 +03:00
|
|
|
|
2024-06-02 02:30:20 +03:00
|
|
|
cpp-options: -DVERSION="1.34.99"
|
2017-08-26 02:31:54 +03:00
|
|
|
|
2022-03-26 21:11:52 +03:00
|
|
|
ghc-options:
|
|
|
|
- -Wall
|
|
|
|
- -Wno-incomplete-uni-patterns
|
|
|
|
- -Wno-missing-signatures
|
|
|
|
- -Wno-orphans
|
|
|
|
- -Wno-type-defaults
|
|
|
|
- -Wno-unused-do-bind
|
|
|
|
|
2017-08-26 02:31:54 +03:00
|
|
|
dependencies:
|
2024-01-04 19:40:17 +03:00
|
|
|
- base >=4.14 && <4.20
|
2017-08-26 02:31:54 +03:00
|
|
|
|
2024-04-25 19:28:11 +03:00
|
|
|
when:
|
|
|
|
- condition: (flag(ghcdebug))
|
|
|
|
cpp-options: -DGHCDEBUG
|
|
|
|
dependencies:
|
|
|
|
- ghc-debug-stub >=0.6.0.0 && <0.7
|
|
|
|
|
2017-08-26 02:31:54 +03:00
|
|
|
# curses is required to build terminfo for vty for hledger-ui.
|
|
|
|
# On POSIX systems it might be not present.
|
|
|
|
# On windows it's very likely not present, but possibly it could be.
|
|
|
|
# Ideally we'd like to
|
|
|
|
# on POSIX: give a clear error ("install your system libcurses-dev package") if not present
|
|
|
|
# on windows: quietly skip building if not present, build if it is present
|
|
|
|
# curses
|
|
|
|
# default: True
|
|
|
|
# description:
|
2023-12-08 17:18:16 +03:00
|
|
|
#
|
|
|
|
# note on windows: the vty-windows (and hence hledger-ui) will reliably work only on the newer backends
|
|
|
|
# like Windows Terminal.
|
|
|
|
# mintty-based backends (default for cygwin/gitbash/msys2) are not supported (yet)
|
2017-08-26 02:31:54 +03:00
|
|
|
|
2023-09-21 09:38:28 +03:00
|
|
|
library:
|
|
|
|
source-dirs: .
|
2024-06-02 02:30:20 +03:00
|
|
|
cpp-options: -DVERSION="1.34.99"
|
2023-09-21 09:38:28 +03:00
|
|
|
exposed-modules:
|
|
|
|
- Hledger.UI
|
|
|
|
- Hledger.UI.Main
|
|
|
|
- Hledger.UI.Theme
|
|
|
|
- Hledger.UI.UIOptions
|
2023-11-07 20:04:50 +03:00
|
|
|
dependencies:
|
2024-06-02 02:30:20 +03:00
|
|
|
- hledger-lib >=1.34.99 && <1.35
|
|
|
|
- hledger >=1.34.99 && <1.35
|
2023-11-07 20:04:50 +03:00
|
|
|
- ansi-terminal >=0.9
|
|
|
|
- async
|
|
|
|
- cmdargs >=0.8
|
|
|
|
- containers >=0.5.9
|
|
|
|
- data-default
|
|
|
|
- directory
|
|
|
|
- doclayout >=0.3 && <0.5
|
|
|
|
- extra >=1.6.3
|
|
|
|
- filepath
|
|
|
|
- fsnotify >=0.4 && <0.5
|
2024-04-25 19:28:11 +03:00
|
|
|
- githash >=0.1.6.2
|
2023-11-07 20:04:50 +03:00
|
|
|
- microlens >=0.4
|
|
|
|
- microlens-platform >=0.2.3.1
|
2023-12-14 21:57:42 +03:00
|
|
|
- megaparsec >=7.0.0 && <9.7
|
2023-11-07 20:04:50 +03:00
|
|
|
- mtl >=2.2.1
|
2024-05-02 12:00:15 +03:00
|
|
|
- process >=1.2
|
2024-02-29 03:39:53 +03:00
|
|
|
- safe >=0.3.20
|
2023-11-07 20:04:50 +03:00
|
|
|
- split >=0.1
|
2023-11-23 10:11:59 +03:00
|
|
|
- text >=1.2.4.1
|
2023-11-07 20:04:50 +03:00
|
|
|
- text-zipper >=0.4
|
|
|
|
- time >=1.5
|
|
|
|
- transformers
|
|
|
|
- vector
|
2024-01-04 19:40:17 +03:00
|
|
|
- brick >=2.1.1 && <2.4
|
2024-01-27 11:47:40 +03:00
|
|
|
- vty >=6.1 && <6.3
|
2023-12-08 17:18:16 +03:00
|
|
|
- vty-crossplatform >= 0.4.0.0 && < 0.5.0.0
|
|
|
|
when:
|
|
|
|
- condition: os(windows)
|
|
|
|
then:
|
|
|
|
dependencies: vty-windows >= 0.2.0.1 && < 0.3.0.0
|
|
|
|
else:
|
|
|
|
dependencies: unix
|
|
|
|
|
2023-09-21 09:38:28 +03:00
|
|
|
|
2015-08-13 21:52:10 +03:00
|
|
|
executables:
|
|
|
|
hledger-ui:
|
2023-11-07 20:04:50 +03:00
|
|
|
source-dirs: app
|
2015-08-13 21:52:10 +03:00
|
|
|
main: hledger-ui.hs
|
2023-11-07 20:04:50 +03:00
|
|
|
dependencies:
|
2024-01-04 19:40:17 +03:00
|
|
|
- base >=4.14 && <4.20
|
2023-11-07 20:04:50 +03:00
|
|
|
- hledger-ui
|
2016-06-13 02:02:44 +03:00
|
|
|
when:
|
2017-08-26 02:31:54 +03:00
|
|
|
- condition: flag(threaded)
|
2024-02-29 14:07:04 +03:00
|
|
|
ghc-options: -threaded -with-rtsopts=-T
|