This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtom.cabal
96 lines (91 loc) · 2.93 KB
/
tom.cabal
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: tom
version: 0.1.0.0
synopsis: A tool for reminders
description: A tool for reminders
homepage: https://github.com/aelve/tom
license: BSD3
license-file: LICENSE
author: Artyom
maintainer: [email protected]
-- copyright:
category: Application
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/aelve/tom.git
library
exposed-modules: Tom.Reminders
Tom.When
Tom.Utils
Tom.RPC
build-depends: acid-state == 0.14.*
, base
, base-prelude
, binary
, binary-conduit
, binary-orphans
, bytestring
, conduit
, conduit-extra
, containers
, directory
, filepath
, gtk3
, leapseconds-announced
, megaparsec == 5.2.*
, microlens-platform
, mtl
, safecopy == 0.9.*
, text
, time
, tz == 0.1.*
, uuid
hs-source-dirs: lib
default-language: Haskell2010
ghc-options: -Wall -fno-warn-unused-do-bind
executable tom
main-is: Main.hs
build-depends: base
, base-prelude
, containers
, gtk3
, microlens-platform
, text
, time
, tom
, transformers
ghc-options: -Wall -fno-warn-unused-do-bind
-threaded
hs-source-dirs: src
default-language: Haskell2010
executable tom-daemon
main-is: Daemon.hs
build-depends: acid-state
, base
, base-prelude
, containers
, gtk3
, microlens-platform
, random == 1.*
, text
, time
, tom
, transformers
, uuid
ghc-options: -Wall -fno-warn-unused-do-bind
-threaded
hs-source-dirs: src
default-language: Haskell2010
test-suite tests
main-is: Test.hs
type: exitcode-stdio-1.0
build-depends: base
, base-prelude
, hspec
, time
, tom
, tz
hs-source-dirs: tests
default-language: Haskell2010
ghc-options: -Wall -fno-warn-unused-do-bind