haskell-relational-record/examples/HDBC/MySQL/hrr-example-HDBC-MySQL.cabal
Kei Hibino d38ce2ecb7 examples/HDBC/MySQL: specify other-modules parameter.
(grafted from 9f876434e4a170e2fa6ece9ed4375f9f353351a6)
2018-04-13 17:46:03 +09:00

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