packages feed

game-of-life-0.1.0.3: game-of-life.cabal

-- Initial game-of-life.cabal generated by cabal init.  For further
--  documentation, see http://haskell.org/cabal/users-guide/

name:                game-of-life
version:             0.1.0.3
synopsis:            Conway's Game of Life
-- description:         
license:             MIT
-- license-file:        LICENSE
author:              Marcus Buffett
maintainer:          marcusbuffett@me.com
-- copyright:           
-- category:            
build-type:          Simple
-- extra-source-files:  
homepage:            http://github.com/marcusbuffett/game-of-life
cabal-version:       >=1.10

executable game-of-life
  main-is:             Main.hs
  other-modules:       Simulation
  -- other-extensions:    
  build-depends:       base >=4.7 && <4.8,
                       random,
                       hscurses,
                       array,
                       text
  -- hs-source-dirs:      
  default-language:    Haskell2010
  -- ghc-options:         -O2