-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtimezone-olson-th.cabal
45 lines (39 loc) · 1.58 KB
/
timezone-olson-th.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
-- Initial timezone-olson-th.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: timezone-olson-th
version: 0.1.0.11
synopsis: Load TimeZoneSeries from an Olson file at compile time.
description:
Template Haskell to load a TimeZoneSeries from an Olson file at compile time.
For Example:
-- > myTimeZoneSeries :: TimeZoneSeries
-- > myTimeZoneSeries = $(loadTZFile "/usr/share/zoneinfo/Europe/Stockholm")
homepage: http://github.com/jonpetterbergman/timezone-olson-th
bug-reports: http://github.com/jonpetterbergman/timezone-olson-th/issues
license: BSD3
license-file: LICENSE
author: Petter Bergman
maintainer: jon.petter.bergman@gmail.com
-- copyright:
category: Data
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: http://github.com/jonpetterbergman/timezone-olson-th
source-repository this
type: git
location: http://github.com/jonpetterbergman/timezone-olson-th
tag: v0.1.0.11
library
exposed-modules: Data.Time.LocalTime.TimeZone.Olson.TH
-- other-modules:
-- other-extensions:
build-depends: base >=3.0 && <5.0,
timezone-olson >=0.1 && <0.3,
timezone-series >=0.1 && <0.2,
time >=1.4 && <1.14,
template-haskell
hs-source-dirs: src
default-language: Haskell2010