-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsummer-2015-haskell-class.cabal
36 lines (33 loc) · 1.2 KB
/
summer-2015-haskell-class.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
-- Initial summer-2015-haskell-class.cabal generated by cabal init. For
-- further documentation, see http://haskell.org/cabal/users-guide/
name: summer-haskell-class
version: 0.1.0.0
synopsis: Companion code for the Summer 2015 Haskell Course at Avant HQ in Chicago, IL
-- description:
homepage: https://github.com/michaelochurch/summer-2015-haskell-class
license: MIT
license-file: LICENSE
author: Michael O. Church
maintainer: michael.o.church@gmail.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable Lab1
main-is: Lab1.hs
-- other-modules:
-- other-extensions:
ghc-options: -Wall -O2
build-depends: base >=4.7 && <5, random >=1.0
-- hs-source-dirs:
default-language: Haskell2010
executable Lisp
main-is: Lisp.hs
-- other-modules:
-- other-extensions:
ghc-options: -Wall -O2
build-depends: base >=4.7 && <5, containers >= 0.5, lens >= 4.11, mtl >2.1, parsec >= 3.1,
safe >= 0.3, transformers >= 0.4
-- hs-source-dirs:
default-language: Haskell2010