packages feed

timezone-unix-1.0: timezone-unix.cabal

cabal-version: >=1.10
name: timezone-unix
version: 1.0
category: Time
description: UNIX-specific handling of time data.
author: Ashley Yakeley
license: BSD3
license-file: LICENSE
maintainer: ashley@semantic.org
copyright: 2016 Ashley Yakeley
build-type: Simple

source-repository head
    type: git
    location: https://github.com/AshleyYakeley/timezone-unix

library
    hs-source-dirs: src
    default-language: Haskell2010
    default-extensions:
    build-depends:
        base >= 4.8 && < 5,
        time >= 1.7,
        unix,
        filepath,
        directory,
        leapseconds,
        timezone-series,
        timezone-olson
    exposed-modules:
        Data.Time.LocalTime.TimeZone.Unix
    ghc-options: -Wall

test-suite test
    type: exitcode-stdio-1.0
    hs-source-dirs: test
    build-depends:
        base >= 4.8 && < 5,
        time >= 1.7,
        directory,
        leapseconds,
        timezone-series,
        tasty,
        tasty-hunit,
        tasty-golden,
        timezone-unix
    default-language: Haskell2010
    default-extensions:
        RecordWildCards
    ghc-options: -Wall
    main-is: Test.hs
    other-modules: