-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDrawhub.cabal
56 lines (52 loc) · 1.99 KB
/
Drawhub.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
name: Drawhub
version: 0.1.0.0
synopsis: Haskell application to draw 8-bit images on Github contribution table
-- description:
license: MIT
license-file: LICENSE
homepage: https://github.com/TurpIF/Drawhub
author: Pierre Turpin
maintainer: pierre(dot)turpin54(at)gmail(dot)com
bug-reports: https://github.com/TurpIF/Drawhub/issues
category:
-- copyright:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable Drawhub
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >= 4.6 && < 5,
JuicyPixels == 3.2.8,
vector >= 0.11.0.0 && <= 0.12.0.0,
containers >= 0.5.0.0 && <= 0.5.10.1,
time >= 1.4 && <= 1.8,
text == 1.2.2.1,
bytestring == 0.10.8.1,
optparse-applicative,
-- waiting 3.1.2 https://github.com/jwiegley/gitlib/issues/50 fix windows compatibility.
-- For the moment, you had to do "cabal sandbox add-source /path/to/gitlib" manually.
-- Current commit used is e6330fb3aef312ca8958c9d0b0890505c1d89549
gitlib,
gitlib-libgit2
hs-source-dirs: src/main
default-language: Haskell2010
Ghc-options: -fwarn-missing-signatures
-O3
---rtsopts
--fprof-auto
--prof
--"-with-rtsopts=-p -h -s -i0.1"
if impl(ghc >= 6.8)
Ghc-options: -fwarn-tabs
Test-Suite test
type: exitcode-stdio-1.0
main-is: Test.hs
build-depends: base >= 4.6 && < 5,
QuickCheck
hs-source-dirs: src/main, src/test
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/TurpIF/Drawhub.git