packages feed

system-locale-0.1.0.0: system-locale.cabal

name:                system-locale
version:             0.1.0.0
synopsis:            Get system locales
description:         Please see README.md
homepage:            https://github.com/cocreature/system-locale
license:             BSD3
license-file:        LICENSE
author:              Moritz Kiefer
maintainer:          moritz.kiefer@purelyfunctional.org
copyright:           2016
category:            Unknown
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     System.Locale.Read
  build-depends:       base >= 4.7 && < 5
                     , megaparsec >= 5.0 && < 5.2
                     , process >= 1.2 && < 1.5
                     , time >= 1.5 && < 1.7
  ghc-options:         -Wall
  default-language:    Haskell2010

test-suite system-locale-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , hspec
                     , system-locale
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/cocreature/system-locale