-
Notifications
You must be signed in to change notification settings - Fork 1
/
leapseconds-announced.cabal
executable file
·41 lines (38 loc) · 1.4 KB
/
leapseconds-announced.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
name: leapseconds-announced
version: 2017.1.0.1
license: BSD3
license-file: LICENSE
copyright: Bjorn Buckwalter 2009-2016
author: Bjorn Buckwalter
maintainer: bjorn@buckwalter.se
stability: Stable
category: System
homepage: https://github.com/bjornbm/leapseconds-announced
bug-reports: https://github.com/bjornbm/leapseconds-announced/issues
synopsis: Leap seconds announced at library release time.
cabal-version: >= 1.10
description:
Provides an easy to use static 'Data.Time.Clock.TAI.LeapSecondTable'
with the leap seconds announced at library release time.
build-type: Simple
extra-source-files: README.md,
changelog.md
source-repository head
type: git
location: https://github.com/bjornbm/leapseconds-announced
library
build-depends: base < 10, time >= 1.7 && < 2
hs-source-dirs: src
default-language: Haskell98
ghc-options: -Wall
exposed-modules: Data.Time.Clock.AnnouncedLeapSeconds
test-suite tests
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: tests
default-language: Haskell98
ghc-options: -Wall
build-depends: leapseconds-announced,
QuickCheck,
base,
time