packages feed

sql-simple-sqlite-0.2.1: sql-simple-sqlite.cabal

name:                sql-simple-sqlite
version:             0.2.1
synopsis:            sqlite backend for sql-simple
-- description:         
license:             MIT
license-file:        LICENSE
author:              HirotomoMoriwaki<philopon.dependence@gmail.com>
maintainer:          HirotomoMoriwaki<philopon.dependence@gmail.com>
Homepage:            https://github.com/philopon/sql-simple
Bug-reports:         https://github.com/philopon/sql-simple/issues
copyright:           (c) 2014 Hirotomo Moriwaki
category:            Database
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules:     Database.Sql.Simple.SQLite
  build-depends:       base                 >=4.6 && <4.8
                     , sql-simple           >=0.2 && <0.3
                     , sqlite-simple        >=0.4 && <0.5

  if impl(ghc < 7.8)
    build-depends:     tagged               >=0.7 && <0.8

  ghc-options:         -Wall -O2
  default-language:    Haskell2010