packages feed

aeson-gadt-th-0.1.2.1: aeson-gadt-th.cabal

cabal-version: >=2.0
name: aeson-gadt-th
version: 0.1.2.1
synopsis: Derivation of Aeson instances for GADTs
category: JSON
description: Template Haskell for generating ToJSON and FromJSON instances for GADTs. See <https://github.com/obsidiansystems/aeson-gadt-th/blob/master/README.md README.md> for examples.
license: BSD3
license-file: LICENSE
author: Obsidian Systems LLC
maintainer: maintainer@obsidian.systems
copyright: 2019 Obsidian Systems LLC
build-type: Simple
extra-source-files: README.md

library
  exposed-modules: Data.Aeson.GADT.TH
  build-depends: base >= 4.8 && < 4.13
               , aeson
               , dependent-sum
               , transformers
               , template-haskell
  hs-source-dirs: src
  default-language: Haskell2010

executable readme
  build-depends: base
               , aeson
               , dependent-sum
               , aeson-gadt-th
  default-language: Haskell2010
  main-is: README.lhs
  ghc-options: -pgmL markdown-unlit -Wall
  build-tool-depends: markdown-unlit:markdown-unlit

source-repository head
  type:     git
  location: git://github.com/obsidiansystems/aeson-gadt-th.git