-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.yaml
55 lines (50 loc) · 1.1 KB
/
package.yaml
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
name: hours
version: 3.0.0
synopsis: Tool to print out hours worked toward a goal
author: John Wiegley
maintainer: [email protected]
github: jwiegley/hours
category: System
license: MIT
dependencies:
- aeson >= 1.2.3
- base >= 4
- bytestring >= 0.10.8
- colour >= 2.3.4
- mtl >= 2.2.1
- optparse-applicative >= 0.5.2
- text >= 1.2.2
- these >= 0.7.4
- time >= 1.4
- time-recurrence >= 0.9.1
library:
source-dirs: src
exposed-modules:
- Hours.Budget
- Hours.Calc
- Hours.Input
- Hours.Time
- Hours.Variant
executables:
process-hours:
main: Main.hs
dependencies:
- hours
# - diagrams
# - diagrams-cairo
# - diagrams-core
# - diagrams-lib
work-periods:
source-dirs: work
main: Main.hs
other-modules:
- Work
dependencies:
- hours
timelog-periods:
source-dirs: timelog
main: Main.hs
other-modules:
- Timelog
dependencies:
- hours