-
Notifications
You must be signed in to change notification settings - Fork 0
/
automata.cabal
37 lines (31 loc) · 1012 Bytes
/
automata.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
name: automata
version: 0.0.0
synopsis: A game of life automata
description: A comonadic game of life simulator
homepage: https://github.com/fabianbergmark/Automata
category: Web
author: Fabian Bergmark
maintainer: [email protected]
license: BSD2
cabal-version: >= 1.10
build-type: Simple
source-repository head
type: git
location: https://github.com/fabianbergmark/Automata
executable automata
default-language: Haskell2010
main-is: Main.hs
other-modules: Conway
ListZipper
LoopZipper
Main
Plane
Torus
Universe
ghc-options: -fno-warn-orphans -fno-warn-unused-binds -fno-warn-unused-matches
build-depends: base,
comonad,
data-default,
containers,
time,
wx