This repository has been archived by the owner on Nov 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathhulk.cabal
78 lines (74 loc) · 2.27 KB
/
hulk.cabal
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: hulk
version: 0.2.0
synopsis: IRC server written in Haskell.
description: An IRC server with (mandatory) server authentication, log recall, bumping.
Intended for private business use or hobby work. See examples/ directory for a demo.
bug-reports: https://github.com/chrisdone/hulk/issues
license: BSD3
stability: Stable
license-file: LICENSE
author: Chris Done
maintainer: chrisdone@gmail.com
copyright: 2010-2013 Chris Done
category: Network
build-type: Simple
cabal-version: >=1.8
extra-source-files:
README.md
example/log/events.log
example/auth/passwd
example/auth/passwd-key
example/txt/PREFACE
example/txt/MOTD
example/hulk.conf
example/users/hulk2
example/users/hulk
library
exposed-modules: Hulk.Server
Hulk.Options
Hulk.Client
Hulk.Config
Hulk.Types
Hulk.Auth
ghc-options: -O2 -Wall
hs-source-dirs: src
build-depends: utf8-string,
Crypto,
ConfigFile,
mtl,
split,
containers,
cmdargs,
aeson,
bytestring,
case-insensitive,
text,
time,
network,
fastirc,
directory,
filepath,
ghc-prim,
base
executable hulk
main-is: Server.hs
ghc-options: -threaded -O2 -Wall
hs-source-dirs: src/main
build-depends: cmdargs,
network,
cmdargs,
unix,
hulk,
base
executable hulk-generate-pass
main-is: GeneratePass.hs
hs-source-dirs: src/main
build-depends: utf8-string,
Crypto,
cmdargs,
hulk,
base
ghc-options: -threaded -O2 -Wall
source-repository head
type: git
location: https://github.com/chrisdone/hulk.git