-
Notifications
You must be signed in to change notification settings - Fork 0
/
haskell-basic.cabal
77 lines (72 loc) · 2.78 KB
/
haskell-basic.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
67
68
69
70
71
72
73
74
75
76
77
cabal-version: >=1.10
-- Initial package description 'haskell-basic.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: haskell-basic
version: 0.1.0.0
synopsis: Haskell basic example for self learning haskell
-- description:
-- bug-reports:
-- license:
license-file: LICENSE
author: Parker Liu
maintainer: liuchangsheng30@gmail.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
Source-Repository head
type: git
location: https://github.com/flyfish30/haskell-basic.git
executable hsbasic
main-is: src/Main.hs
build-depends: base >=4.12 && <4.22,
finite-typelits >=0.1 && <0.2,
vector >=0.12,
comonad >=5.0 && <5.1,
ghc-typelits-natnormalise,
JuicyPixels,
haskell-basic
default-language: Haskell2010
library
exposed-modules: FunctorAlg, ExprSimple, CofreeX,
ApplicativeParser, FreeX,
OpenUnion, FixedVector,
FirstClassFamilies, MonadST,
ComonadImg, SlideWindow,
DiagramsGraph,
StagedProgram
-- other-modules:
other-extensions: ExistentialQuantification,
TypeOperators, TypeSynonymInstances,
UndecidableInstances,
FlexibleInstances,
RankNTypes, DeriveFunctor, TypeInType,
GADTs, TypeApplications, DataKinds,
KindSignatures, TypeFamilies,
ScopedTypeVariables, InstanceSigs,
NoStarIsType, MultiParamTypeClasses,
FunctionalDependencies, PolyKinds
build-depends: base >=4.12 && <4.22,
finite-typelits >=0.1 && <0.2,
data-default,
vector >=0.12 && <0.14,
vector-algorithms >=0.8 && <0.11,
comonad >=5.0 && <5.1,
mtl,
type-errors,
groups, containers,
diagrams-lib, diagrams-svg,
SVGFonts,
ghc-typelits-natnormalise,
JuicyPixels,
deepseq
hs-source-dirs: src
ghc-options: -O2
default-language: Haskell2010
-- test description
Test-Suite haskell-basic-test
type: exitcode-stdio-1.0
main-is: test/run-test.hs
build-depends: base, haskell-basic
default-language: Haskell2010