-
Notifications
You must be signed in to change notification settings - Fork 0
/
mail-notifier.cabal
112 lines (91 loc) · 2.22 KB
/
mail-notifier.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
cabal-version: 3.0
name: mail-notifier
version: 0.1.0.0
synopsis:
A tool to immediately run mbsync and notify your MUA for new mails
-- description:
homepage: https://github.com/jian-lin/mail-notifier
license: AGPL-3.0-or-later
license-file: LICENSE
author: Lin Jian
maintainer: [email protected]
-- copyright:
category: Network
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
common thread
ghc-options: -threaded
common deps
build-depends:
, base ^>=4.18.2.1
, co-log ^>=0.6.1.0
, optparse-applicative ^>=0.18.1.0
, relude ^>=1.2.1.0
, unliftio ^>=0.2.25.0
default-extensions:
DerivingStrategies
NoImplicitPrelude
OverloadedStrings
default-language: GHC2021
library
import:
warnings
, thread
, deps
exposed-modules:
MailNotifier
MailNotifier.App
MailNotifier.DBus
MailNotifier.Exception
MailNotifier.Mail
MailNotifier.Types
MailNotifier.Types.Main
MailNotifier.Types.Timeout
MailNotifier.Types.Timeout.TH
MailNotifier.Utils
MailNotifier.Watchdog
-- other-modules: PackageInfo_mail_notifier
-- autogen-modules: PackageInfo_mail_notifier
-- other-extensions:
build-depends:
, dbus ^>=1.3.3
, HaskellNet ^>=0.6.1.2
, HaskellNet-SSL ^>=0.4.0.0
, safe-exceptions ^>=0.1.7.4
, systemd ^>=2.3.0
, template-haskell ^>=2.20.0.0
hs-source-dirs: src
executable mail-notifier
import:
warnings
, thread
, deps
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: mail-notifier
hs-source-dirs: app
executable mail-notifier-dbus-broker
import:
warnings
, thread
, deps
main-is: MainDBusBroker.hs
-- other-modules:
-- other-extensions:
build-depends: mail-notifier
hs-source-dirs: app
test-suite mail-notifier-test
import:
warnings
, thread
, deps
-- other-modules:
-- other-extensions:
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: mail-notifier