packages feed

explain-0.1.0.1: explain.cabal

-- Initial explain.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                explain
version:             0.1.0.1
synopsis:            Show how expressions are parsed
description:
  @explain expr@ parenthesizes @expr@ to show you how it's parsed.
  .
  @explain@ has a large number of extensions enabled by default: multi-parameter typeclasses, Template Haskell, arrow
  syntax, and so on. This is mainly for convenience. If necessary, flags to turn certain extension on and off will be
  added in future versions.
homepage:            https://github.com/joelteon/explain
license:             MIT
license-file:        LICENSE
author:              Joel Taylor
maintainer:          me@joelt.io
category:            Language
build-type:          Simple
cabal-version:       >=1.10

executable explain
  main-is:             Main.hs
  build-depends:       base >=4.6 && <4.7, ansi-wl-pprint, haskell-src-exts
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall