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
|
cabal-version: 3.0
name: aratamete-ircbrowse
version: 0.1.0.0
author: Tom Smeding
maintainer: Tom Smeding
license: BSD-3-Clause
build-type: Simple
executable aratamete-ircbrowse
main-is: Main.hs
other-modules:
Cache
Config
Index
Mmap
Util
ZNC
build-depends:
base >= 4.21,
attoparsec,
bytestring,
clock,
containers,
directory,
filepath,
http-types,
mustache,
random,
text >= 2.1.2,
time,
unix,
vector,
wai,
warp >= 3.4.12
hs-source-dirs: src
c-sources: cbits/mmap.c
default-language: Haskell2010
default-extensions:
ImportQualifiedPost
LambdaCase
TypeApplications
TupleSections
ghc-options: -Wall -threaded
|