-
Notifications
You must be signed in to change notification settings - Fork 1
/
hcron.cabal
45 lines (38 loc) · 1.31 KB
/
hcron.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
Name: hcron
Version: 0.0.0.3
License: BSD3
License-file: LICENSE
Author: Timo B. Kranz
Maintainer: Timo B. Kranz <[email protected]>
Build-Type: Simple
Cabal-Version: >=1.6
Stability: experimental
Category: Control, Scheduling
Homepage: http://github.com/tbh/hcron
Description:
A simple job scheduler for Haskell, which just runs some IO () action at a given time.
Currently almost all of this package is based on the excellent cron modules found in the
BuildBox package by Ben Lippmeier.
Synopsis:
A simple job scheduler, which just runs some IO action at a given time.
Tested-with:
GHC == 7.0.3
Library
Build-Depends:
base >= 4 && < 5,
containers >= 0.4 && < 0.5,
time >= 1.1 && <= 1.4,
directory >= 1.0 && <= 1.2,
mtl >= 2.0 && < 3.0,
old-locale >= 1.0 && < 1.1,
process >= 1.0 && < 1.2,
random >= 1.0 && < 1.1,
pretty >= 1.0 && < 1.2,
bytestring >= 0.9 && < 1.0,
stm >= 2.2 && < 2.3
ghc-options:
-Wall
Exposed-modules:
HCron
HCron.Schedule
Other-modules: