forked from paul-rouse/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysql.cabal
80 lines (70 loc) · 2.14 KB
/
mysql.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
68
69
70
71
72
73
74
75
76
77
78
79
80
name: mysql
version: 0.2.0.1
homepage: https://github.com/paul-rouse/mysql
bug-reports: https://github.com/paul-rouse/mysql/issues
synopsis: A low-level MySQL client library.
description:
A low-level client library for the MySQL database, implemented as
bindings to the C @mysqlclient@ API.
.
/Important licensing note/: This library is BSD-licensed under the
terms of the MySQL FOSS License Exception
<http://www.mysql.com/about/legal/licensing/foss-exception/>.
.
Since this library links against the GPL-licensed @mysqlclient@
library, a non-open-source application that uses it /may/ be
subject to the terms of the GPL.
license: BSD3
license-file: LICENSE
author: Bryan O'Sullivan <[email protected]>
maintainer: Paul Rouse <[email protected]>
copyright: Copyright 2011 MailRank, Inc.
Copyright 2013 Bryan O'Sullivan <[email protected]>
category: Database
build-type: Custom
cabal-version: >= 1.10
extra-source-files:
include/mysql_signals.h
ChangeLog.md
README.markdown
custom-setup
setup-depends: base, Cabal
flag developer
description: operate in developer mode
default: False
manual: True
library
c-sources: cbits/mysql_signals.c
include-dirs: include
exposed-modules:
Database.MySQL.Base
Database.MySQL.Base.C
Database.MySQL.Base.Types
build-depends:
base < 5,
bytestring >= 0.9 && < 1.0,
containers
if !impl(ghc >= 8.0)
build-depends:
semigroups >= 0.11 && < 0.19
ghc-options: -Wall
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs
if flag(developer)
ghc-prof-options: -auto-all
ghc-options: -Werror
cpp-options: -DASSERTS
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: main.hs
hs-source-dirs: test
ghc-options: -Wall
default-language: Haskell2010
build-depends: base >= 4 && < 5
, bytestring
, hspec
, mysql
source-repository head
type: git
location: http://github.com/paul-rouse/mysql