lambdabot-core: Lambdabot core functionality

[ development, library, web ] [ Propose Tags ]
Versions [RSS] 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.2, 5.3.1, 5.3.1.1, 5.3.1.2
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.2), random-fu (>=0.3.0.0), 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 Naïm Favier <n@monade.li>
Category Development, Web
Home page https://wiki.haskell.org/Lambdabot
Source repo head: git clone https://github.com/lambdabot/lambdabot.git
Uploaded by ncfavier at 2023-11-10T16:55:09Z
Distributions Debian:5.3.0.1, LTSHaskell:5.3.1.2, NixOS:5.3.1.2
Reverse Dependencies 8 direct, 0 indirect [details]
Downloads 7471 total (45 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2023-11-10 [all 1 reports]

Readme for lambdabot-core-5.3.1.2

[back to package description]

lambdabot Build Status

Lambdabot is an IRC bot written over several years by those on Libera's (formerly 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 >= 8.2. cabal-install is highly recommended.

External executable dependencies:

  • aspell for the "spell" spell-checking plugin. This is not a Haskell program, but is available in pretty much all Linux, BSD and Mac OS package managers.
  • bf for interpreting brainfuck programs. This is a provided by the "brainfuck" package on Hackage.
  • djinn for the "djinn" plugin, which tries to find Haskell functions matching arbitrary types. Available on Hackage.
  • ghc and mueval for the "eval" plugin, which evaluates Haskell expressions in chat (when prefixed with "> "; e.g. > 1 + 1). GHC is available from haskell.org (the Haskell Platform is recommended). Mueval is available on Hackage.
  • hoogle for the "hoogle" plugin, which provides a command for searching Haskell APIs. Available from Hackage.
  • GNU talk-filters (optional) for the "filters" plugin. Available via most package managers, I believe.
  • unlambda for executing unlambda programs. Available on Hackage.

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-8.10.5"

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.