packages feed

blubber-server-0.0.1: blubber-server.cabal

name:                  blubber-server
version:               0.0.1
synopsis:              The blubber server, serves blubber clients.
description:           The blubber server. blubber is an arcade game in
                       which the player tries to build the biggest blob
                       by blubberping the other blobs before they
                       blubber the player's blob.
homepage:              https://secure.plaimi.net/games/blubber.html
license:               AGPL-3
license-file:          LICENSE
author:                plaimi
maintainer:            blubber@plaimi.net
copyright:             (c) plaimi 2015
category:              Game
build-type:            Custom
cabal-version:         >=1.10
data-files:            web/index.markdown
                       web/src.tar.gz

source-repository head
  type:                git
  location:            git://github.com/plaimi/blubber-server.git

library
  exposed-modules:     Blubber.Server.Entity
                       Blubber.Server.Message
                       Blubber.Server.Vector
                       Blubber.Server.World
                       Blubber.Server.ViewPort
  other-extensions:    DeriveGeneric
  build-depends:       base       >=4.7 && <4.8,
                       cereal     >=0.4 && <0.5,
                       containers >=0.5 && <0.6,
                       random     >=1.1 && <1.2
  hs-source-dirs:      src
  default-language:    Haskell2010

executable blubber-server
  main-is:             blubber-server.hs
  other-extensions:    OverloadedStrings
  other-modules:       Paths_blubber_server
  build-depends:       base               >=4.7  && <4.9,
                       blubber-server,
                       Cabal              >=1.18  && <1.23,
                       cereal             >=0.4   && <0.5,
                       containers         >=0.5   && <0.6,
                       data-default-class >=0.0.1 && <0.1,
                       network            >=2.6   && <2.7,
                       pandoc             >=1.14  && <1.15,
                       process            >=1.2   && <1.3,
                       random             >=1.1   && <1.2,
                       scotty             >=0.7   && <0.11,
                       text               >=1.2   && <1.3,
                       transformers       >=0.4   && <0.5,
                       unix               >=2.7   && <2.8
  hs-source-dirs:      src-exec
  default-language:    Haskell2010
  ghc-options:         -threaded -with-rtsopts=-N