-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathblubber-server.cabal
More file actions
59 lines (56 loc) · 2.53 KB
/
blubber-server.cabal
File metadata and controls
59 lines (56 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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 blubbering 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.10,
cereal >=0.4 && <0.6,
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.10,
blubber-server,
Cabal >=1.18 && <1.25,
cereal >=0.4 && <0.6,
containers >=0.5 && <0.6,
data-default-class >=0.0.1 && <0.1,
network >=2.6 && <2.7,
pandoc >=1.14 && <1.18,
plailude >=0.5 && <0.7,
process >=1.2 && <1.5,
random >=1.1 && <1.2,
scotty >=0.7 && <0.12,
text >=1.2 && <1.3,
transformers >=0.4 && <0.6,
unix >=2.7 && <2.8
hs-source-dirs: src-exec
default-language: Haskell2010
ghc-options: -threaded -with-rtsopts=-N