packages feed

spanout-0.1: spanout.cabal

name: spanout
version: 0.1
category: Game
synopsis: A breakout clone written in netwire and gloss
homepage: https://github.com/vtan/spanout
author: Viktor Tanyi
maintainer: Viktor Tanyi <tanyi.viktor@gmail.com>
license: BSD3
license-file: LICENSE
description:
  A breakout clone written in netwire and gloss.
build-type: Simple
cabal-version: >=1.10

source-repository head
  type: git
  location: git://github.com/vtan/spanout.git

executable spanout
  hs-source-dirs: src
  main-is: Main.hs
  other-modules:
    Spanout.Common, Spanout.Gameplay, Spanout.Graphics, Spanout.Level,
    Spanout.Main, Spanout.Wire
  ghc-options:
    -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
  other-extensions:
    Arrows, MultiWayIf, RecordWildCards, TemplateHaskell, TypeOperators
  build-depends:
    base >=4.6 && <5,
    mtl >=2.2 && <2.3,
    containers >=0.5 && <0.6,
    lens >=4.9 && <4.10,
    linear >=1.18 && <1.19,
    MonadRandom >=0.4 && <0.5,
    netwire >=5.0 && <5.1,
    gloss >=1.8 && <1.9
  default-language: Haskell2010