-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmchost.cabal
More file actions
31 lines (29 loc) · 781 Bytes
/
mchost.cabal
File metadata and controls
31 lines (29 loc) · 781 Bytes
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
name: mchost
version: 0.1
synopsis: A Minecraft server in Haskell.
author: Elliott Hird
maintainer: penguinofthegods@gmail.com
category: Game
license: BSD3
license-file: LICENSE
homepage: http://github.com/ehird/mchost
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/ehird/mchost.git
executable mchost
main-is: Main.hs
default-language: Haskell2010
build-depends:
base >= 4.3 && < 4.5,
transformers == 0.2.*,
template-haskell >= 2.5 && < 2.7,
bytestring == 0.9.*,
network == 2.3.*,
cereal == 0.3.*,
cereal-ieee754 == 0.1.*,
text == 0.11.*,
iterIO == 0.2.*,
zlib-bindings == 0.0.*
ghc-options: -Wall -funbox-strict-fields