-
Notifications
You must be signed in to change notification settings - Fork 3
/
bugzilla.cabal
67 lines (62 loc) · 2.39 KB
/
bugzilla.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: bugzilla
version: 0.2.1.1
synopsis: A Haskell interface to the Bugzilla native REST API
description: This package is designed to provide an easy-to-use, typesafe
interface to querying Bugzilla from Haskell.
homepage: https://github.com/sethfowler/hsbugzilla
license: BSD3
license-file: LICENSE
author: Seth Fowler
maintainer: [email protected]
copyright: Copyright 2014 Seth Fowler
category: Web
build-type: Simple
extra-source-files: README.md
changelog
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/sethfowler/hsbugzilla.git
tag: 0.2.1.1
flag BuildDemo
description: Build the 'bugzilla' demo program
default: False
library
ghc-options: -Wall
exposed-modules: Web.Bugzilla,
Web.Bugzilla.Search
other-modules: Web.Bugzilla.Internal.Network,
Web.Bugzilla.Internal.Search,
Web.Bugzilla.Internal.Types
build-depends: base >=4.6 && <4.7,
aeson >=0.7 && <0.8,
blaze-builder >=0.3 && <0.4,
bytestring >=0.10 && <0.11,
connection >=0.2 && <0.3,
containers >=0.5 && <0.6,
data-default >=0.5.2 && <0.6,
http-conduit >=2.0 && <2.1,
http-types >=0.8 && <0.9,
iso8601-time >=0.1 && <0.2,
resourcet >=0.4 && <0.5,
text >=0.11 && <0.12,
time >=1.4 && <1.5,
transformers >=0.3 && <0.4,
unordered-containers >=0.2 && <0.3,
vector >= 0.10 && <0.11
hs-source-dirs: src
default-language: Haskell2010
executable bugzilla
if flag(BuildDemo)
buildable: True
else
buildable: False
ghc-options: -Wall
main-is: BugzillaDemo.hs
build-depends: base >=4.6 && <4.7,
bugzilla,
containers >=0.5 && <0.6,
text >=0.11 && <0.12,
time >=1.4 && <1.5
hs-source-dirs: demo
default-language: Haskell2010