mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-11-29 14:45:51 +03:00
d38ce2ecb7
(grafted from 9f876434e4a170e2fa6ece9ed4375f9f353351a6)
46 lines
986 B
Plaintext
46 lines
986 B
Plaintext
name: hrr-example-HDBC-MySQL
|
|
version: 0.1.0.0
|
|
synopsis: mysql driver example
|
|
-- description:
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: krdlab
|
|
maintainer: krdlab@gmail.com
|
|
-- copyright:
|
|
-- category:
|
|
build-type: Simple
|
|
-- extra-source-files:
|
|
cabal-version: >=1.10
|
|
|
|
executable example
|
|
hs-source-dirs:
|
|
src
|
|
main-is:
|
|
Main.hs
|
|
other-modules:
|
|
Example.DataSource
|
|
Example.User
|
|
other-extensions:
|
|
TemplateHaskell
|
|
, FlexibleInstances
|
|
, MultiParamTypeClasses
|
|
, MonadComprehensions
|
|
build-depends:
|
|
base >=4.5 && <5
|
|
, template-haskell >=2.7
|
|
, HDBC >=2.3
|
|
, HDBC-mysql >=0.6 && <0.8
|
|
, HDBC-session
|
|
, names-th
|
|
, relational-query >= 0.7
|
|
, relational-schemas
|
|
, relational-query-HDBC >= 0.4
|
|
, time
|
|
if impl(ghc == 7.4.*)
|
|
build-depends: ghc-prim == 0.2.*
|
|
|
|
default-language:
|
|
Haskell2010
|
|
ghc-options:
|
|
-Wall
|