packages feed

flags-applicative-0.0.3.0: flags-applicative.cabal

name:                flags-applicative
version:             0.0.3.0
synopsis:            Applicative flag parsing
description:         https://github.com/mtth/flags-applicative
homepage:            https://github.com/mtth/flags-applicative
license:             BSD3
license-file:        LICENSE
author:              Matthieu Monsch
maintainer:          matthieu.monsch@gmail.com
copyright:           2019 Matthieu Monsch
category:            Web
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  README.md

library
  hs-source-dirs:      src
  exposed-modules:     Flags.Applicative
  build-depends:       base >= 4.7 && < 5
                     , containers >= 0.6 && < 0.7
                     , mtl >= 2.2 && < 2.3
                     , text >= 1.2 && < 1.3
  default-language:    Haskell2010

test-suite flags-applicative-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , text >= 1.2 && < 1.3
    , hspec >=2.6 && <2.7
    , flags-applicative
  default-language: Haskell2010

executable simple-example
  hs-source-dirs:      app
  main-is:             SimpleExample.hs
  build-depends:
      base >=4.7 && <5
    , text >= 1.2 && < 1.3
    , flags-applicative
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/mtth/flags-applicative