packages feed

tateti-tateti-0.1.0.0: tateti-tateti.cabal

name: tateti-tateti
version: 0.1.0.0
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: 2015 Ezequiel A. Alvarez
maintainer: welcometothechango@mgail.com
homepage: http://github.com/alvare/tateti-tateti#readme
synopsis: Meta tic-tac-toe ncurses game.
description:
    Please see README.md
category: Game
author: Ezequiel A. Alvarez

executable tateti-tateti
    main-is: Main.hs
    build-depends:
        base >=4.7 && <5,
        ncurses >=0.2.14 && <0.3,
        mtl >=2.2.1 && <2.3,
        lens-simple >=0.1.0.8 && <0.2,
        array >=0.5.1.0 && <0.6,
        random ==1.1.*
    default-language: Haskell2010
    hs-source-dirs: src
    other-modules:
        Draw
        OtherScreens
        Types
        Util
    ghc-options: -Wall -O2