-
Notifications
You must be signed in to change notification settings - Fork 0
/
google-search.cabal
43 lines (39 loc) · 1.13 KB
/
google-search.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
name: google-search
version: 0.2.0.0
synopsis: EDSL for Google and GMail search expressions
description:
Construct well-typed search expressions for use in various Google services.
homepage: https://github.com/liyang/google-search
license: BSD3
license-file: LICENSE
author: Liyang HU
maintainer: [email protected]
copyright: © 2013 Liyang HU
category: Language, Text, Web
build-type: Simple
cabal-version: >= 1.8
stability: experimental
tested-with:
GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4,
GHC == 7.10.2, GHC == 7.10.3
source-repository head
type: git
location: http://github.com/liyang/google-search
flag old-time
description: time < 1.5
default: False
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules:
Language.Google.Search.Simple
Language.Google.Search.Mail
build-depends:
base >= 4.5 && <= 9000,
free >= 2.1,
nats >= 0.1,
text >= 0.11
if flag(old-time)
build-depends: old-locale >= 1.0, time >= 1.4 && < 1.5
else
build-depends: time >= 1.5