2010-09-10 02:54:34 +04:00
|
|
|
name: hledger-vty
|
2011-09-02 04:42:50 +04:00
|
|
|
version: 0.15
|
2010-09-10 02:54:34 +04:00
|
|
|
category: Finance
|
2011-04-19 04:50:47 +04:00
|
|
|
synopsis: A curses-style interface for the hledger accounting tool.
|
2010-09-10 02:54:34 +04:00
|
|
|
description:
|
2011-04-19 04:50:47 +04:00
|
|
|
hledger is a haskell port and friendly fork of John Wiegley's ledger accounting tool.
|
|
|
|
This package provides a simple curses-style console interface as an alternative to the hledger command line interface.
|
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
license: GPL
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Simon Michael <simon@joyful.com>
|
2010-12-07 05:15:49 +03:00
|
|
|
maintainer: Simon Michael <simon@joyful.com>
|
2010-09-10 02:54:34 +04:00
|
|
|
homepage: http://hledger.org
|
|
|
|
bug-reports: http://code.google.com/p/hledger/issues
|
2010-11-26 22:59:23 +03:00
|
|
|
stability: beta
|
2010-09-10 02:54:34 +04:00
|
|
|
tested-with: GHC==6.10, GHC==6.12
|
|
|
|
cabal-version: >= 1.6
|
|
|
|
build-type: Simple
|
2010-09-10 05:45:12 +04:00
|
|
|
-- data-dir: data
|
|
|
|
-- data-files:
|
2010-09-10 02:54:34 +04:00
|
|
|
extra-tmp-files:
|
|
|
|
extra-source-files:
|
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: darcs
|
|
|
|
location: http://joyful.com/repos/hledger
|
|
|
|
|
|
|
|
executable hledger-vty
|
2010-11-25 10:10:38 +03:00
|
|
|
main-is: hledger-vty.hs
|
2010-09-10 02:54:34 +04:00
|
|
|
ghc-options: -threaded -W
|
|
|
|
other-modules:
|
2010-11-25 10:10:38 +03:00
|
|
|
Hledger.Vty.Main
|
2010-09-10 02:54:34 +04:00
|
|
|
build-depends:
|
2011-09-02 04:42:50 +04:00
|
|
|
hledger == 0.15
|
|
|
|
,hledger-lib == 0.15
|
2010-09-10 02:54:34 +04:00
|
|
|
-- ,HUnit
|
|
|
|
,base >= 3 && < 5
|
2011-08-16 02:50:09 +04:00
|
|
|
,cmdargs >= 0.7 && < 0.8
|
2010-09-10 02:54:34 +04:00
|
|
|
-- ,containers
|
|
|
|
-- ,csv
|
|
|
|
-- ,directory
|
|
|
|
-- ,filepath
|
|
|
|
-- ,mtl
|
|
|
|
-- ,old-locale
|
|
|
|
-- ,old-time
|
|
|
|
-- ,parsec
|
|
|
|
-- ,process
|
|
|
|
-- ,regexpr >= 0.5.1
|
|
|
|
,safe >= 0.2
|
|
|
|
-- ,split == 0.1.*
|
2011-06-06 22:59:24 +04:00
|
|
|
,time
|
2010-09-10 02:54:34 +04:00
|
|
|
-- ,utf8-string >= 0.3.5 && < 0.4
|
2011-06-06 22:59:24 +04:00
|
|
|
,vty >= 4.6.0.1 && < 4.8
|