2008-10-01 11:56:21 +04:00
|
|
|
Name: hledger
|
2008-11-23 22:56:58 +03:00
|
|
|
Version: 0.2
|
2008-10-01 11:56:21 +04:00
|
|
|
Category: Finance
|
|
|
|
Synopsis: A ledger-compatible text-based accounting tool.
|
2008-11-24 01:04:40 +03:00
|
|
|
Description: hledger is a minimal haskell clone of John Wiegley's "ledger" text-based
|
|
|
|
accounting tool (http://newartisans.com/software/ledger.html). hledger
|
|
|
|
generates ledger-compatible register & balance reports from a plain text
|
|
|
|
ledger file, and demonstrates a functional implementation of ledger.
|
2008-10-01 11:56:21 +04:00
|
|
|
License: GPL
|
2008-10-01 12:42:08 +04:00
|
|
|
Stability: alpha
|
2008-10-01 11:56:21 +04:00
|
|
|
Author: Simon Michael <simon@joyful.com>
|
|
|
|
Maintainer: Simon Michael <simon@joyful.com>
|
2008-10-18 02:04:28 +04:00
|
|
|
Homepage: http://joyful.com/hledger
|
2008-10-01 11:56:21 +04:00
|
|
|
Tested-With: GHC
|
|
|
|
Build-Type: Simple
|
2008-10-01 12:42:08 +04:00
|
|
|
License-File: LICENSE
|
2008-10-01 12:51:08 +04:00
|
|
|
Extra-Source-Files: README sample.ledger
|
2008-10-01 11:56:21 +04:00
|
|
|
Extra-Tmp-Files:
|
|
|
|
Cabal-Version: >= 1.2
|
|
|
|
|
|
|
|
Executable hledger
|
2008-10-10 08:05:46 +04:00
|
|
|
Build-Depends: base, containers, haskell98, directory, parsec, regex-compat,
|
2008-10-17 22:05:38 +04:00
|
|
|
old-locale, time, HUnit
|
2008-10-01 11:56:21 +04:00
|
|
|
Main-Is: hledger.hs
|
2008-10-10 08:05:46 +04:00
|
|
|
Other-Modules:
|
|
|
|
BalanceCommand
|
|
|
|
Options
|
|
|
|
PrintCommand
|
|
|
|
RegisterCommand
|
|
|
|
Setup
|
|
|
|
Tests
|
2008-10-16 01:38:55 +04:00
|
|
|
Utils
|
2008-10-10 08:05:46 +04:00
|
|
|
Ledger
|
|
|
|
Ledger.Account
|
|
|
|
Ledger.AccountName
|
|
|
|
Ledger.Amount
|
2008-10-16 01:38:55 +04:00
|
|
|
Ledger.Commodity
|
2008-11-23 22:55:50 +03:00
|
|
|
Ledger.Dates
|
2008-10-10 08:05:46 +04:00
|
|
|
Ledger.Entry
|
|
|
|
Ledger.RawLedger
|
|
|
|
Ledger.Ledger
|
|
|
|
Ledger.RawTransaction
|
|
|
|
Ledger.Parse
|
|
|
|
Ledger.TimeLog
|
|
|
|
Ledger.Transaction
|
|
|
|
Ledger.Types
|
|
|
|
Ledger.Utils
|
2008-10-01 11:56:21 +04:00
|
|
|
|
2008-11-11 00:32:13 +03:00
|
|
|
library
|
|
|
|
Build-Depends: base, containers, haskell98, directory, parsec, regex-compat,
|
|
|
|
old-locale, time, HUnit
|
|
|
|
Exposed-modules:
|
|
|
|
Ledger
|
|
|
|
Ledger.Account
|
|
|
|
Ledger.AccountName
|
|
|
|
Ledger.Amount
|
|
|
|
Ledger.Commodity
|
2008-11-23 22:55:50 +03:00
|
|
|
Ledger.Dates
|
2008-11-11 00:32:13 +03:00
|
|
|
Ledger.Entry
|
|
|
|
Ledger.RawLedger
|
|
|
|
Ledger.Ledger
|
|
|
|
Ledger.RawTransaction
|
|
|
|
Ledger.Parse
|
|
|
|
Ledger.TimeLog
|
|
|
|
Ledger.Transaction
|
|
|
|
Ledger.Types
|
|
|
|
Ledger.Utils
|