forked from paul-rouse/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysql.cabal
64 lines (56 loc) · 1.74 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
name: mysql
version: 0.1.1.8
homepage: https://github.com/bos/mysql
bug-reports: https://github.com/bos/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: Bryan O'Sullivan <[email protected]>
copyright: Copyright 2011 MailRank, Inc.
Copyright 2013 Bryan O'Sullivan <[email protected]>
category: Database
build-type: Custom
cabal-version: >= 1.6
extra-source-files:
include/mysql_signals.h
README.markdown
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
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
source-repository head
type: git
location: http://github.com/bos/mysql
source-repository head
type: mercurial
location: http://bitbucket.org/bos/mysql