-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathghc-typelits-appendsymbol.cabal
66 lines (62 loc) · 2.25 KB
/
ghc-typelits-appendsymbol.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: ghc-typelits-appendsymbol
version: 0.1
synopsis: Injectivity of GHC.TypeLits.AppendSymbol
description:
A GHC constraint-solver plugin that witnesses the injectivity of
@GHC.TypeLits.AppendSymbol@. To use the plugin, add the
.
@
OPTIONS_GHC -fplugin GHC.TypeLits.AppendSymbol
@
.
pragma to the header of your file.
homepage: http://www.clash-lang.org/
bug-reports: http://github.com/clash-lang/ghc-typelits-appendsymbol/issues
license: BSD2
license-file: LICENSE
author: Christiaan Baaij
maintainer: [email protected]
copyright: Copyright © 2019, QBayLogic B.V.
category: Type System
build-type: Simple
extra-source-files: README.md
CHANGELOG.md
cabal-version: >=1.10
tested-with: GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5
source-repository head
type: git
location: https://github.com/clash-lang/ghc-typelits-appendsymbol.git
flag deverror
description:
Enables `-Werror` for development mode and TravisCI
default: False
manual: True
library
exposed-modules: GHC.TypeLits.AppendSymbol
build-depends: base >= 4.10 && <5,
ghc >= 8.2 && <8.10,
ghc-tcplugins-extra >= 0.2,
transformers >= 0.4.2.0 && <0.6
hs-source-dirs: src
default-language: Haskell2010
other-extensions: CPP
TupleSections
if flag(deverror)
ghc-options: -Wall -Werror
else
ghc-options: -Wall
test-suite test-ghc-typelits-extra
type: exitcode-stdio-1.0
main-is: Main.hs
Other-Modules: ErrorTests
build-depends: base >= 4.10 && <5,
ghc-typelits-appendsymbol,
inspection-testing >= 0.4.2.1,
tasty >= 0.10,
tasty-hunit >= 0.9
hs-source-dirs: tests
default-language: Haskell2010
other-extensions: DataKinds
TypeOperators
if flag(deverror)
ghc-options: -O0 -dcore-lint