-
Notifications
You must be signed in to change notification settings - Fork 6
/
type-fun.cabal
54 lines (50 loc) · 1.72 KB
/
type-fun.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
name: type-fun
version: 0.1.3
synopsis: Collection of widely reimplemented type families
license: BSD3
license-file: LICENSE
author: Aleksey Uimanov
maintainer: [email protected]
category: Dependent Types
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
homepage: https://github.com/s9gf4ult/type-fun
source-repository head
type: git
location: [email protected]:s9gf4ult/type-fun.git
library
default-language: Haskell2010
hs-source-dirs: src
default-extensions: ConstraintKinds
, DataKinds
, DeriveDataTypeable
, DeriveGeneric
, FlexibleInstances
, GADTs
, MultiParamTypeClasses
, PolyKinds
, RankNTypes
, ScopedTypeVariables
, TypeFamilies
, TypeOperators
, UndecidableInstances
exposed-modules: TypeFun.Constraint
, TypeFun.Data.Eq
, TypeFun.Data.List
, TypeFun.Data.Maybe
, TypeFun.Data.Peano
build-depends: base >= 4.7 && < 5
test-suite example
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: example
main-is: Main.hs
default-extensions: ConstraintKinds
, DataKinds
, GADTs
, TemplateHaskell
, TypeFamilies
, UndecidableInstances
build-depends: base
, type-fun