]> gitweb @ CieloNegro.org - hs-rrdtool.git/blob - rrdtool.cabal
wip
[hs-rrdtool.git] / rrdtool.cabal
1 Name:           rrdtool
2 Synopsis:       High level bindings to RRDtool
3 Description:
4     RRDtool is a high performance data logging and graphing system for
5     time series data.
6
7     This package provides high-level bindings to librrd, which
8     contains most of the functionality in RRDtool.
9 Version:        0.1
10 License:        PublicDomain
11 License-File:   COPYING
12 Author:         PHO <pho at cielonegro dot org>
13 Maintainer:     PHO <pho at cielonegro dot org>
14 Homepage:       http://cielonegro.org/Hs-rrdtool.html
15 Category:       Database, Statistics
16 Tested-With:    GHC == 6.12.1
17 Cabal-Version:  >= 1.6
18 Build-Type:     Simple
19
20 Source-Repository head
21     Type:       git
22     Location:   git://git.cielonegro.org/hs-rrdtool.git
23
24 Library
25     Build-Depends:
26         HList           == 0.2.*,
27         base            == 4.2.*,
28         bindings-librrd == 0.1.*,
29         time            == 1.1.*
30
31     Extensions:
32         EmptyDataDecls
33         ExistentialQuantification
34         FlexibleInstances
35         IncoherentInstances
36         TypeOperators
37         TypeSynonymInstances
38         UndecidableInstances
39
40     Exposed-Modules:
41         Database.RRDtool
42
43     GHC-Options:
44         -Wall