-
Notifications
You must be signed in to change notification settings - Fork 0
/
lens-th-rewrite.cabal
50 lines (46 loc) · 1.27 KB
/
lens-th-rewrite.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
cabal-version: >=1.10
name: lens-th-rewrite
version: 0.3.0.0
synopsis: Rewrites Template Haskell splices using the GHC 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