Created
September 30, 2014 07:31
-
-
Save cocreature/fdd64b506b95dfc884e3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: iCalendar | |
version: 0.4.0.1 | |
synopsis: iCalendar data types, parser, and printer. | |
description: Data definitions, parsing and printing of the iCalendar | |
format (RFC5545). | |
homepage: http://github.com/tingtun/iCalendar | |
bug-reports: http://github.com/tingtun/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.6.1 | |
cabal-version: >=1.8 | |
flag network-uri | |
description: Get Network.URI from the network-uri package | |
default: True | |
source-repository head | |
type: git | |
location: git://github.com/tingtun/iCalendar.git | |
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 | |
build-depends: base >=4.5 && <5, time ==1.4.*, data-default >=0.3 | |
, case-insensitive >=0.4, network >= 2.4 && <2.7 | |
, bytestring >=0.10 && < 0.11, parsec ==3.1.* | |
, text, containers >= 0.5 && < 0.6, mime ==0.4.* | |
, mtl >= 2.2, old-locale, base64-bytestring ==1.0.* | |
if flag(network-uri) | |
build-depends: network-uri >= 2.6, network >= 2.6 | |
else | |
build-depends: network-uri < 2.6, network < 2.6 | |
ghc-options: -Wall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment