-
Notifications
You must be signed in to change notification settings - Fork 2
/
notmuch.cabal
129 lines (115 loc) · 2.89 KB
/
notmuch.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
-- Initial notmuch.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: notmuch
version: 0.3.1.1
synopsis: Haskell binding to Notmuch, the mail indexer
description:
Binding to the notmuch mail indexer, providing a hopefully
somewhat typesafe way to search your email.
license: GPL-3
license-file: gpl-3.0.txt
extra-source-files:
README.rst
author: Fraser Tweedale
maintainer: [email protected]
copyright: Copyright (C) 2014-2018 Fraser Tweedale
category: FFI
build-type: Simple
cabal-version: >=1.10
tested-with:
GHC ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.7 || ==9.6.3 || ==9.8.1
homepage: https://github.com/purebred-mua/hs-notmuch
bug-reports: https://github.com/purebred-mua/hs-notmuch/issues
source-repository head
type: git
location: https://github.com/purebred-mua/hs-notmuch.git
flag demos
description: Build demonstration programs
default: False
library
exposed-modules:
Notmuch
Notmuch.Util
other-modules:
Notmuch.Binding
Notmuch.Binding.Constants
Notmuch.Search
Notmuch.Tag
Notmuch.Talloc
build-depends:
base >= 4.9 && <5
, bytestring >= 0.10 && < 0.13
, deepseq >= 1.4
, filepath >= 1.0
, mtl >= 2 && < 3
, profunctors >= 5 && < 6
, tagged >= 0.8 && < 1
, time
, text
build-tools:
c2hs >= 0.19.1
extra-libraries:
notmuch
, talloc
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
executable hs-notmuch-files
if !flag(demos)
buildable: False
default-language: Haskell2010
hs-source-dirs: tools
ghc-options: -Wall
main-is: Files.hs
build-depends:
base >= 4.9
, mtl
, notmuch
executable hs-notmuch-tag-message
if !flag(demos)
buildable: False
default-language: Haskell2010
hs-source-dirs: tools
ghc-options: -Wall
main-is: TagMessage.hs
build-depends:
base >= 4.9
, bytestring
, mtl
, notmuch
executable hs-notmuch-tag-count
if !flag(demos)
buildable: False
default-language: Haskell2010
hs-source-dirs: tools
ghc-options: -Wall
main-is: TagCount.hs
build-depends:
base >= 4.9
, bytestring
, mtl
, containers
, notmuch
executable hs-notmuch-tag-set
if !flag(demos)
buildable: False
default-language: Haskell2010
hs-source-dirs: tools
ghc-options: -Wall
main-is: TagSet.hs
build-depends:
base >= 4.9
, bytestring
, mtl
, notmuch
executable hs-notmuch-index-file
if !flag(demos)
buildable: False
default-language: Haskell2010
hs-source-dirs: tools
ghc-options: -Wall
main-is: IndexFile.hs
build-depends:
base >= 4.9
, mtl
, notmuch