blob: 253fc7b0da7240a776d6e65366db5c7e46055406 (
plain)
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
|
-- Initial diddohs.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: diddohs
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.0.3
synopsis: Time/Task Tracking, Analysis, Reporting
description: Tool for tracking and reporting time/task
homepage: https://projects.netwichtig.de/projects/sw-diddohs/
license: BSD3
license-file: LICENSE
author: Hendrik Jaeger
maintainer: code AT henk DOT geekmail DOT org
-- copyright:
category: Data
build-type: Simple
cabal-version: >=1.8
executable diddohs
main-is: Main.hs
hs-source-dirs: src
-- other-modules:
build-depends: base ==4.6.*
, old-locale
, time
, text
, containers
, parsec
ghc-prof-options: -Wall -Werror -rtsopts -prof -fprof-auto -fhpc
ghc-options: -Wall -Werror -rtsopts -prof -fprof-auto -fhpc
-- ghc-options: -Wall -rtsopts -eventlog -debug
-- ghc-options: -Wall
source-repository head
type: git
location: git://git.netwichtig.de/diddohs
source-repository head
type: git
location: http://git.netwichtig.de/diddohs
--test-suite Tests
-- hs-source-dirs: test
|