forked from chrra/iCalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiCalendar.cabal
52 lines (46 loc) · 1.88 KB
/
iCalendar.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
name: iCalendar
version: 0.4.0.6
synopsis: iCalendar data types, parser, and printer.
description: Data definitions, parsing and printing of the iCalendar
format (RFC5545).
homepage: http://github.com/chrra/iCalendar
bug-reports: http://github.com/chrra/iCalendar/issues
license: BSD3
license-file: LICENSE
author: Christian Rødli Amble
maintainer: [email protected]
copyright: (c) Tingtun
stability: experimental
category: Text
build-type: Simple
tested-with: GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.2
cabal-version: >=1.8
source-repository head
type: git
location: git://github.com/chrra/iCalendar.git
flag network-uri
description: Get Network.URI from the network-uri package
default: True
library
exposed-modules: Text.ICalendar.Types
, Text.ICalendar.Parser
, Text.ICalendar.Printer
, Text.ICalendar
other-modules: Text.ICalendar.Parser.Common
, Text.ICalendar.Parser.Components
, Text.ICalendar.Parser.Content
, Text.ICalendar.Parser.Parameters
, Text.ICalendar.Parser.Properties
, Paths_iCalendar
if flag(network-uri)
build-depends: network-uri >= 2.6, network >= 2.6
else
build-depends: network >= 2.4
if !impl(ghc >= 8.0)
build-depends: semigroups >= 0.18
build-depends: base >=4.5 && <5, time >=1.5, data-default >=0.3
, case-insensitive >=0.4
, bytestring >=0.10, parsec >=3.1.0
, text, containers >= 0.5, mime >=0.4.0.2
, mtl >=2.1.0, old-locale, base64-bytestring >= 1
ghc-options: -Wall