-
Notifications
You must be signed in to change notification settings - Fork 23
/
libpq.cabal
32 lines (28 loc) · 1023 Bytes
/
libpq.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
Name: libpq
Version: 0.4.1
Synopsis: libpq binding for Haskell
Description: This is a binding to libpq: the C application
programmer's interface to PostgreSQL. libpq is a
set of library functions that allow client
programs to pass queries to the PostgreSQL
backend server and to receive the results of
these queries.
Homepage: http://github.com/tnarg/haskell-libpq
License: BSD3
License-file: LICENSE
Author: Grant Monroe
Maintainer: [email protected]
-- Copyright:
Category: Database
Build-type: Custom
-- Extra-source-files:
Cabal-version: >=1.8
Library
Exposed-modules: Database.PQ
Build-depends: base >= 4 && < 5
, bytestring
, unix
GHC-Options: -Wall
Extra-Libraries: pq
-- Other-modules:
Build-tools: hsc2hs