packages feed

lens-th-rewrite-0.3.0.0: lens-th-rewrite.cabal

cabal-version:       >=1.10
name:                lens-th-rewrite
version:             0.3.0.0
synopsis:            Rewrites Template Haskell splices using the API
description:         A GHC plugin to perform source-to-source transformation on parsed Haskell, used to manually inline Template Haskell calls for lens.
bug-reports:         https://github.com/dmjio/lens-th-rewrite/issues
license:             BSD3
license-file:        LICENSE
author:              David Johnson
maintainer:          djohnson.m@gmail.com
copyright:           David Johnson (c) 2020
category:            Data
build-type:          Simple
extra-source-files:  CHANGELOG.md

executable test
  main-is:
    Main.hs
  hs-source-dirs:
    exe
  ghc-options:
    -fplugin=GHC.Plugin.LensThRewrite
  build-depends:
    base < 5, lens-th-rewrite, lens
  default-language:
    Haskell2010

executable lens-th-rewrite-pp
  main-is:
    Main.hs
  hs-source-dirs:
    pp
  build-depends:
    base < 5, lens-th-rewrite, ghc, ghc-exactprint
  default-language:
    Haskell2010

library
  exposed-modules:
    GHC.Plugin.LensThRewrite
  build-depends:
    base < 5, ghc, lens
  hs-source-dirs:
    src
  default-language:
    Haskell2010

source-repository head
  type: git
  location: https://github.com/dmjio/lens-th-rewrite.git