-
Notifications
You must be signed in to change notification settings - Fork 1
/
haskell-intro-session.cabal
62 lines (57 loc) · 1.89 KB
/
haskell-intro-session.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
name: haskell-intro-session
version: 0.1.0.1
synopsis: Pittsburgh Haskell intro session
description: Pittsburgh Haskell intro session slides and tutorial code
homepage: https://github.com/pittsburgh-haskell/haskell-intro-session
license: BSD3
license-file: LICENSE
author: Franklin Chen
maintainer: franklinchen@franklinchen.com
copyright: Franklin Chen
category: Game
build-type: Simple
extra-source-files: README.md
, slides/Makefile
, slides/default.beamer
, slides/lightning.md
, slides/lightning.pdf
cabal-version: >=1.10
executable game
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
main-is: Main.hs
build-depends: base <= 5
, random
, haskell-intro-session
library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Tutorial
, FunnyMath
, Main
build-depends: base <= 5
, random
test-suite doctest
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -threaded -Wall
hs-source-dirs: test
main-is: doctests.hs
build-depends: base <= 5
, doctest
, random
, haskell-intro-session
test-suite spec
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: test
main-is: Spec.hs
build-depends: base <= 5
, hspec
, haskell-intro-session
source-repository head
type: git
location: https://github.com/pittsburgh-haskell/haskell-intro-session