lambdabot-core: Lambdabot core functionality

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

Lambdabot is an IRC bot written over several years by those on the #haskell IRC channel.

Manage plugins, network connections, configurations and much more.


[Skip to Readme]

Properties

Versions 5.0, 5.0.1, 5.0.3, 5.1, 5.1.0.1, 5.1.0.2, 5.1.0.4, 5.2, 5.3, 5.3.0.1, 5.3.0.1, 5.3.0.2, 5.3.1, 5.3.1.1, 5.3.1.2
Change log None available
Dependencies base (>=4.4 && <5), binary (>=0.5), bytestring (>=0.9), containers (>=0.4), dependent-map (>=0.2 && <0.5), dependent-sum (>=0.7 && <0.8), dependent-sum-template (>=0.1.0.2 && <0.2), directory (>=1.1), edit-distance (>=0.2), exceptions (>=0.10 && <0.11), filepath (>=1.3), haskeline (>=0.7 && <0.9), hslogger (>=1.2.1), HTTP (>=4000), lifted-base (>=0.2), monad-control (>=1.0), mtl (>=2), network (>=2.7 && <3.2), network-bsd (>=2.7 && <2.9), parsec (>=3), prim-uniq (>=0.2 && <0.4), random (>=1), random-fu (>=0.2.6.2), random-source (>=0.3), regex-tdfa (>=1.1 && <1.4), SafeSemaphore (>=0.9), split (>=0.2), syb (>=0.3), template-haskell (>=2.7), time (>=1.4), transformers (>=0.2), transformers-base (>=0.4), unix (>=2.5), utf8-string (>=0.3), zlib (>=0.5) [details]
License LicenseRef-GPL
Author Don Stewart
Maintainer James Cook <mokus@deepbondi.net>
Category Development, Web
Home page https://wiki.haskell.org/Lambdabot
Source repo head: git clone https://github.com/lambdabot/lambdabot.git
Uploaded by BertramFelgenhauer at 2020-07-20T18:48:42Z

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for lambdabot-core-5.3.0.1

[back to package description]

lambdabot Build Status

Lambdabot is an IRC bot written over several years by those on freenode's #haskell IRC channel. It also operates in an offline mode as a Haskell development tool, and embedded as an extension to ghci.

PREREQUISITES

You'll need GHC >= 7.4. cabal-install is highly recommended.

External executable dependencies:

Some of these dependencies (those with corresponding hackage libraries) will be installed by cabal, but not all of them will. In all cases, cabal does not actually track the executables so if they have previously been installed and deleted on your system (without unregistering the matching library), you will have to manually reinstall them.

RUNNING

Lambdabot can be installed system-wide or per user, but currently the lambdabot binary makes certain assumptions about what directory it is being run in & where files it needs can be found. (This is the subject of future work.)

Your best bet is currently to read the code and see what it does, and decide for yourself whether that's what you want.

OFFLINE MODE

lambdabot

CONNECTING

lambdabot -e 'rc online.rc'

SSL MODE (with stunnel)

append the following to your stunnel.conf:

client = yes
[irc]
accept = 6667
connect = ssl-irc-server.org:6667

and edit online.rc to use localhost as server, then restart the stunnel server and restart lambdabot with:

./lambdabot -e 'rc online.rc'

SCRIPTS

The scripts directory contains some shell scripts for Vim editor support
They are self-explanatory

CONFIGURING

Lambdabot uses an extensible configuration system which allows plugins to define their own configuration variables. The lambdabot core system defines several, listed in the module Lambdabot.Config.Core. The default lambdabot executable provides a command-line interface to set some of the most common ones, but currently the only way to set others is to define your own executable (which you must currently do anyway to change the default set of modules).

When doing so, configuration is passed in to the lambdabotMain function as a list of bindings. Configuration variables are bound using the :=> operator (actually the data constructor of the DSum type), for example:

ghcBinary :=> "ghc-7.4.2"

So a typical custom lambdabot executable might look something like:

module MyBot where

import Lambdabot.Main
{- import your plugins here -}

main = lambdabotMain myPlugins 
    [ configKey  :=> value
    , anotherKey :=> anotherValue
    ]

BUGS

Bug reports, patches, new modules etc., open issues on GitHub or contact:

    James Cook <mokus@deepbondi.net>
    aka mokus on #haskell

REPOSITORY

git clone https://github.com/lambdabot/lambdabot

CONTRIBUTING

Send pull requests to mokus0 on github. Add yourself to the AUTHORS file if you haven't already.