packages feed

gore-and-ash-sdl-2.0.0.0: gore-and-ash-sdl.cabal

name:                gore-and-ash-sdl
version:             2.0.0.0
synopsis:            Gore&Ash core module for integration with SDL library
description:         Please see README.md
homepage:            git@github.com:Teaspot-Studio/gore-and-ash-sdl.git
license:             BSD3
license-file:        LICENSE
author:              Anton Gushcha
maintainer:          ncrashed@gmail.com
copyright:           2016 Anton Gushcha
category:            Game
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Game.GoreAndAsh.SDL
                       Game.GoreAndAsh.SDL.API
                       Game.GoreAndAsh.SDL.Module
                       Game.GoreAndAsh.SDL.State

  default-language:    Haskell2010
  build-depends:       base >= 4.7 && < 5
                     , containers >= 0.5.6.2
                     , deepseq >= 1.4.1.1
                     , exceptions >= 0.8.0.2
                     , gore-and-ash >= 1.1.0.0
                     , lens >= 4.13
                     , linear >= 1.20.3
                     , mtl >= 2.2.1
                     , sdl2 >= 2.1.1
                     , text >= 1.2.2.0
                     , transformers >= 0.4.2.0
                     , unordered-containers >= 0.2.5.1
                     
  default-extensions:    
                       BangPatterns
                       DeriveGeneric
                       FlexibleInstances
                       GeneralizedNewtypeDeriving
                       MultiParamTypeClasses
                       OverloadedStrings
                       RecordWildCards
                       ScopedTypeVariables
                       TypeFamilies
                       UndecidableInstances