-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdtypes.cabal
61 lines (58 loc) · 1.32 KB
/
dtypes.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
name: dtypes
version: 0.1.0.0
synopsis: Functors, Applicatives, Traversables etc. of kind (k -> *) -> *
description: Please see README.md
homepage: https://github.com/timjb/dtypes#readme
license: MIT
license-file: LICENSE
author: Tim Baumann
maintainer: [email protected]
copyright: MIT License
category: Data, Generics
build-type: Simple
-- extra-source-files:
cabal-version: >= 1.10
tested-with:
GHC == 7.8.4,
GHC == 7.10.2,
GHC == 8.0.1
library
hs-source-dirs: src
exposed-modules:
DTypes,
DTypes.Classes,
DTypes.Classes.DApplicative,
DTypes.Classes.DChoice,
DTypes.Classes.DFunctor,
DTypes.Classes.DTraversable,
DTypes.Classes.HasDType,
DTypes.Combinators,
DTypes.Compose,
DTypes.Precompose,
DTypes.Postcompose,
DTypes.TH,
DTypes.Trafo,
DTypes.Internal.TH.Helpers
build-depends:
base >= 4.7 && < 5,
template-haskell,
transformers >= 0.3 && < 0.6,
safe
default-language: Haskell2010
ghc-options: -Wall
test-suite dtypes-th
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: templates.hs
build-depends:
base,
dtypes,
template-haskell,
HTF,
safe,
transformers
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/timjb/dtypes