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
|
name: presence
version: 0.0.1
cabal-version: >=1.2
build-type: Simple
license: AllRightsReserved
license-file: ""
synopsis: XMPP Server which detects unix logins
description: When users login to your localhost, their presence is detected and announced
to connected xmpp clients. presence is a modern XMPP variant of the old Unix Talk
program. Eventually, this will be expanded to become a peer-to-peer service allowing
xmpp instant messaging between separate computers as well. And somewhere down the
road, extended again to make use of Jingle to facilitate VOIP.
author: Joe Crayne
data-dir: ""
executable presence
build-depends: base -any, stm -any, text (>=0.11.2.0), xml-types -any, containers -any,
network -any, time -any, transformers -any, resourcet -any, bytestring -any,
mtl -any, mmorph -any, conduit (>=1.0.4), xml-conduit -any, void -any, random -any,
data-default -any, blaze-builder-conduit -any, blaze-builder -any, unix -any,
binary -any, directory -any, cpu -any, template-haskell -any, deepseq -any,
filepath -any, hinotify -any, process -any
main-is: xmppServer.hs
buildable: True
cpp-options: -DRENDERFLUSH
c-sources: Presence/monitortty.c
hs-source-dirs: . Presence
ghc-prof-options: -DNOUTMP
ghc-options: -O2 -fwarn-unused-binds -threaded
|