mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-12-14 22:32:07 +03:00
8744e55171
--HG-- rename : th-names/GNUmakefile => names-th/GNUmakefile rename : th-names/LICENSE => names-th/LICENSE rename : th-names/Setup.hs => names-th/Setup.hs rename : th-names/debian/changelog => names-th/debian/changelog rename : th-names/debian/compat => names-th/debian/compat rename : th-names/debian/control => names-th/debian/control rename : th-names/debian/copyright => names-th/debian/copyright rename : th-names/debian/rules => names-th/debian/rules rename : th-names/debian/source/format => names-th/debian/source/format rename : th-names/debian/watch => names-th/debian/watch rename : th-names/th-names.cabal => names-th/names-th.cabal rename : th-names/src/Language/Haskell/TH/Name/CamelCase.hs => names-th/src/Language/Haskell/TH/Name/CamelCase.hs rename : th-names/src/Language/Haskell/TH/Name/Extra.hs => names-th/src/Language/Haskell/TH/Name/Extra.hs
57 lines
2.0 KiB
Plaintext
57 lines
2.0 KiB
Plaintext
|
|
name: HDBC-schema-th
|
|
version: 0.0.1.0
|
|
synopsis: Database access template for HDBC using database system catalogs
|
|
description: This package contains template haskell functions to generate codes
|
|
correspond to Database table definitions and functions which read
|
|
table and index definitions from Database system catalogs.
|
|
homepage: http://twitter.com/khibino
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Kei Hibino
|
|
maintainer: ex8k.hibino@gmail.com
|
|
copyright: Copyright (c) 2013 Kei Hibino
|
|
category: Database
|
|
build-type: Simple
|
|
cabal-version: >=1.10
|
|
|
|
library
|
|
default-language: Haskell2010
|
|
|
|
exposed-modules:
|
|
Database.HDBC.Record.Persistable
|
|
Database.HDBC.Record.TH
|
|
Database.HDBC.Record.Query
|
|
Database.HDBC.TH
|
|
Database.HDBC.SqlValueExtra
|
|
Database.HDBC.Schema.Driver
|
|
Database.HDBC.Schema.IBMDB2
|
|
Database.HDBC.Schema.PgCatalog.PgAttribute
|
|
Database.HDBC.Schema.PgCatalog.PgType
|
|
Database.HDBC.Schema.PostgreSQL
|
|
|
|
build-depends: base <5
|
|
, containers
|
|
, time
|
|
, convertible
|
|
, template-haskell
|
|
, names-th
|
|
, sql-words
|
|
, DB-record
|
|
, relational-join
|
|
, HDBC >=2
|
|
, HDBC-session
|
|
hs-source-dirs: src
|
|
|
|
Test-suite postgreSQL
|
|
Build-depends: HDBC-schema-th
|
|
, Cabal
|
|
, HDBC-postgresql
|
|
, bytestring
|
|
, text
|
|
|
|
Type: detailed-0.9
|
|
Test-module: PgTest
|
|
hs-source-dirs: pgTest
|
|
|