packages feed

datetime-0.3.1: datetime.cabal

name:                datetime
version:             0.3.1
stability:           experimental
Description:
  Provides several utilities for easily converting among the
  various standard library Date and Time types, and for converting
  between these and standard external representations.
license:             GPL
license-file:        COPYING
author:              Eric Sessoms <nubgames@gmail.com>
maintainer:          hackage@stackbuilders.com
homepage:            http://github.com/stackbuilders/datetime
category:            Data
synopsis:            Utilities to make Data.Time.* easier to use
cabal-version:       >= 1.10
build-type:          Simple

source-repository head
  type:            git
  location:        https://github.com/stackbuilders/datetime.git

library
  build-depends:     base < 5,
                     old-locale >= 1.0.0.1,
                     old-time >= 1.0.0.1,
                     time >= 1.1.2.2
  default-extensions:       CPP
  exposed-modules:   Data.DateTime
  hs-source-dirs:    src
  ghc-options:         -Wall
  default-language:    Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Suite.hs
  other-modules: Data.DateTimeTest
  build-depends:
      datetime

      , old-locale >= 1.0.0.1
      , old-time >= 1.0.0.1
      , time >= 1.1.2.2

      , base >=4.2 && <4.9
      , test-framework
      , HUnit
      , QuickCheck
      , test-framework-hunit
      , test-framework-quickcheck2

  ghc-options:         -Wall
  default-language:    Haskell2010