packages feed

game-of-life-0.1.0.5: 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.5 
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 && <5,
                       random,
                       hscurses,
                       array,
                       text
  -- hs-source-dirs:      
  default-language:    Haskell2010
  -- ghc-options:         -O2

test-suite spec
  type:
      exitcode-stdio-1.0
  ghc-options:
      -Wall
  hs-source-dirs:
      test,
      ./
  main-is:
      Spec.hs
  default-language:    Haskell2010
  other-modules:       Simulation
  build-depends:
      base >=4.7 && <5
    , hspec   == 2.*
    , array