2015-07-06 17:16:49 +01:00
|
|
|
{ fetchurl, stdenv, gnutls, glib, pkgconfig, check, libotr, python }:
|
2008-02-17 15:33:04 +00:00
|
|
|
|
2014-09-07 02:47:44 +01:00
|
|
|
with stdenv.lib;
|
2008-02-17 15:33:04 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-07-06 17:16:49 +01:00
|
|
|
name = "bitlbee-3.4.1";
|
2009-02-11 08:48:46 +00:00
|
|
|
|
2008-02-17 15:33:04 +00:00
|
|
|
src = fetchurl {
|
2010-10-07 08:29:44 +01:00
|
|
|
url = "mirror://bitlbee/src/${name}.tar.gz";
|
2015-07-06 17:16:49 +01:00
|
|
|
sha256 = "1qf0ypa9ba5jvsnpg9slmaran16hcc5fnfzbb1sdch1hjhchn2jh";
|
2008-02-17 15:33:04 +00:00
|
|
|
};
|
|
|
|
|
2015-07-06 17:16:49 +01:00
|
|
|
buildInputs = [ gnutls glib pkgconfig libotr python ]
|
2014-09-07 02:47:44 +01:00
|
|
|
++ optional doCheck check;
|
2010-10-07 08:29:44 +01:00
|
|
|
|
2014-09-24 11:43:36 +01:00
|
|
|
configureFlags = [
|
2014-09-07 02:47:44 +01:00
|
|
|
"--gcov=1"
|
|
|
|
"--otr=1"
|
|
|
|
"--ssl=gnutls"
|
|
|
|
];
|
2011-01-05 10:48:21 +00:00
|
|
|
|
2010-10-07 08:29:44 +01:00
|
|
|
doCheck = true;
|
2008-02-17 15:33:04 +00:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "IRC instant messaging gateway";
|
2009-02-11 08:48:46 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
BitlBee brings IM (instant messaging) to IRC clients. It's a
|
|
|
|
great solution for people who have an IRC client running all the
|
|
|
|
time and don't want to run an additional MSN/AIM/whatever
|
|
|
|
client.
|
|
|
|
|
|
|
|
BitlBee currently supports the following IM networks/protocols:
|
|
|
|
XMPP/Jabber (including Google Talk), MSN Messenger, Yahoo!
|
|
|
|
Messenger, AIM and ICQ.
|
|
|
|
'';
|
|
|
|
|
2008-02-17 15:33:04 +00:00
|
|
|
homepage = http://www.bitlbee.org/;
|
2014-09-07 02:47:44 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2010-10-07 08:29:44 +01:00
|
|
|
|
2015-07-06 17:16:49 +01:00
|
|
|
maintainers = with maintainers; [ wkennington pSub ];
|
2014-09-07 02:47:44 +01:00
|
|
|
platforms = platforms.gnu; # arbitrary choice
|
2008-02-17 15:33:04 +00:00
|
|
|
};
|
|
|
|
}
|