packages feed

hasql-migration-0.3.1: hasql-migration.cabal

name:                       hasql-migration
version:                    0.3.1
synopsis:                   PostgreSQL Schema Migrations
homepage:                   https://github.com/tvh/hasql-migration
Bug-reports:                https://github.com/tvh/hasql-migration/issues
license:                    BSD3
license-file:               License
author:                     Timo von Holtz <tvh@tvholtz.net>
maintainer:                 Timo von Holtz <tvh@tvholtz.net>
copyright:                  Timo von Holtz, Andreas Meingast, Sumit Raja
category:                   Database
build-type:                 Simple
cabal-version:              >= 1.10
description:                A hasql schema migration utility
extra-source-files:         License
                            Readme.markdown

                            test/*.hs
                            test/Hasql/*.hs

                            share/test/*.sql
                            share/test/scripts/*.sql

source-repository head
    type:                   git
    location:               git://github.com/tvh/hasql-migration

library
    exposed-modules:        Hasql.Migration
                            Hasql.Migration.Util
    hs-source-dirs:         src
    ghc-options:            -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns
    default-language:       Haskell2010
    build-depends:          base                        >= 4.7 && < 5,
                            bytestring                  >= 0.10,
                            contravariant               >= 1.3,
                            crypton                     >= 0.32,
                            directory                   >= 1.2,
                            hasql                       >= 1.4,
                            hasql-transaction           >= 0.7,
                            memory,
                            text                        >= 1.2,
                            time                        >= 1.4

test-suite hasql-migration-test
    main-is:                Main.hs
    hs-source-dirs:         test
    ghc-options:            -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns
    other-modules:          Hasql.MigrationTest
    default-language:       Haskell2010
    type:                   exitcode-stdio-1.0
    build-depends:          base                        >= 4.7 && < 5,
                            bytestring                  >= 0.10,
                            hasql                       >= 0.19,
                            hasql-migration,
                            hasql-transaction           >= 0.5,
                            hspec                       >= 2.2,
                            transformers                >= 0.3