packages feed

evoke-0.2022.8.26: evoke.cabal

cabal-version: >= 1.10

name: evoke
version: 0.2022.8.26
synopsis: A GHC plugin to derive instances.
description: Evoke is a GHC plugin to derive instances.

build-type: Simple
category: Plugin
extra-source-files: README.markdown
license-file: LICENSE.txt
license: MIT
maintainer: Taylor Fausak

source-repository head
  location: https://github.com/tfausak/evoke
  type: git

library
  build-depends:
    base >= 4.16 && < 4.17
    , ghc >= 9.2.1 && < 9.3
    , text >= 1.2 && < 1.3 || >= 2.0 && < 2.1
  default-language: Haskell2010
  exposed-modules:
    Evoke
    Evoke.Constant.Module
    Evoke.Generator.Arbitrary
    Evoke.Generator.Common
    Evoke.Generator.FromJSON
    Evoke.Generator.ToJSON
    Evoke.Generator.ToSchema
    Evoke.Hs
    Evoke.Hsc
    Evoke.Options
    Evoke.Type.Config
    Evoke.Type.Constructor
    Evoke.Type.Field
    Evoke.Type.Flag
    Evoke.Type.Type
  ghc-options:
    -Weverything
    -Wno-all-missed-specialisations
    -Wno-implicit-prelude
    -Wno-missing-deriving-strategies
    -Wno-missing-exported-signatures
    -Wno-missing-kind-signatures
    -Wno-missing-safe-haskell-mode
    -Wno-prepositive-qualified-module
    -Wno-safe
    -Wno-unsafe
  hs-source-dirs: source/library
  other-modules: Paths_evoke

test-suite evoke-test-suite
  build-depends:
    base
    , aeson >= 2.0.3 && < 2.1
    , evoke
    , HUnit >= 1.6.2 && < 1.7
    , insert-ordered-containers >= 0.2.5 && < 0.3
    , lens >= 5.1.1 && < 5.2
    , QuickCheck >= 2.14.2 && < 2.15
    , swagger2 >= 2.8.4 && < 2.9
    , text
  default-language: Haskell2010
  ghc-options: -rtsopts -threaded
  hs-source-dirs: source/test-suite
  main-is: Main.hs
  type: exitcode-stdio-1.0