packages feed

sum-type-boilerplate-0.1.0: sum-type-boilerplate.cabal

-- This file has been generated from package.yaml by hpack version 0.17.0.
--
-- see: https://github.com/sol/hpack

name:           sum-type-boilerplate
version:        0.1.0
synopsis:       Library for reducing the boilerplate involved with sum types
description:    Library for reducing the boilerplate involved in creating and manipulating sum types
category:       Types,TH
stability:      experimental
homepage:       https://github.com/jdreaver/sum-type-boilerplate#readme
bug-reports:    https://github.com/jdreaver/sum-type-boilerplate/issues
author:         David Reaver
maintainer:     David Reaver
license:        MIT
license-file:   LICENSE.md
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    CHANGELOG.md
    README.md

source-repository head
  type: git
  location: https://github.com/jdreaver/sum-type-boilerplate

library
  hs-source-dirs:
      library
  ghc-options: -Wall
  build-depends:
      base >= 4.9 && < 5
    , template-haskell
  exposed-modules:
      SumTypes.TH
  default-language: Haskell2010

test-suite spec
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  hs-source-dirs:
      tests
      library
  ghc-options: -Wall
  build-depends:
      base >= 4.9 && < 5
    , template-haskell
    , hspec
    , HUnit
  other-modules:
      HLint
      SumTypes.THSpec
      SumTypes.TH
  default-language: Haskell2010

test-suite style
  type: exitcode-stdio-1.0
  main-is: HLint.hs
  hs-source-dirs:
      tests
  ghc-options: -Wall
  build-depends:
      base >= 4.9 && < 5
    , template-haskell
    , hlint
  other-modules:
      Spec
      SumTypes.THSpec
  default-language: Haskell2010